diff --git a/cli/src/index.ts b/cli/src/index.ts index f358b6fe5..9ac2ae59a 100644 --- a/cli/src/index.ts +++ b/cli/src/index.ts @@ -1,4 +1,5 @@ import { Option, program } from 'commander'; +import { resolve } from 'path'; import c from './colors'; import { checkExternalConfig, loadConfig } from './config'; @@ -10,6 +11,10 @@ import { telemetryAction } from './telemetry'; import { wrapAction } from './util/cli'; import { emoji as _e } from './util/emoji'; +type Writable = T extends object + ? { -readonly [K in keyof T]: Writable } + : T; + process.on('unhandledRejection', error => { console.error(c.failure('[fatal]'), error); }); @@ -263,12 +268,27 @@ export function runProgram(config: Config): void { program .command('add [platform]') .description('add a native platform project') + .option( + '--packagemanager ', + 'The package manager to use for dependency installs (SPM, Cocoapods)', + ) .action( wrapAction( - telemetryAction(config, async platform => { + telemetryAction(config, async (platform, { packagemanager }) => { checkExternalConfig(config.app); const { addCommand } = await import('./tasks/add'); - await addCommand(config, platform); + + const configWritable: Writable = config as Writable; + if (packagemanager === 'SPM') { + configWritable.cli.assets.ios.platformTemplateArchive = + 'ios-spm-template.tar.gz'; + configWritable.cli.assets.ios.platformTemplateArchiveAbs = resolve( + configWritable.cli.assetsDirAbs, + configWritable.cli.assets.ios.platformTemplateArchive, + ); + } + + await addCommand(configWritable as Config, platform); }), ), ); diff --git a/cli/src/ios/open.ts b/cli/src/ios/open.ts index fe36ded94..ea115ca0f 100644 --- a/cli/src/ios/open.ts +++ b/cli/src/ios/open.ts @@ -2,8 +2,14 @@ import open from 'open'; import { wait } from '../common'; import type { Config } from '../definitions'; +import { checkPackageManager } from '../util/spm'; export async function openIOS(config: Config): Promise { - await open(await config.ios.nativeXcodeWorkspaceDirAbs, { wait: false }); + if ((await checkPackageManager(config)) == 'SPM') { + await open(config.ios.nativeXcodeProjDirAbs, { wait: false }); + } else { + await open(await config.ios.nativeXcodeWorkspaceDirAbs, { wait: false }); + } + await wait(3000); } diff --git a/cli/src/ios/update.ts b/cli/src/ios/update.ts index a41c5a661..dd9686141 100644 --- a/cli/src/ios/update.ts +++ b/cli/src/ios/update.ts @@ -32,6 +32,7 @@ import type { Plugin } from '../plugin'; import { copy as copyTask } from '../tasks/copy'; import { convertToUnixPath } from '../util/fs'; import { resolveNode } from '../util/node'; +import { checkPackageManager, generatePackageFile } from '../util/spm'; import { runCommand, isInstalled } from '../util/subprocess'; import { extractTemplate } from '../util/template'; @@ -49,8 +50,20 @@ export async function updateIOS( p => getPluginType(p, platform) === PluginType.Core, ); + if ((await checkPackageManager(config)) === 'SPM') { + await generatePackageFile(config, capacitorPlugins); + } else { + await updateIOSCocoaPods(config, plugins, deployment); + } + printPlugins(capacitorPlugins, 'ios'); +} +async function updateIOSCocoaPods( + config: Config, + plugins: Plugin[], + deployment: boolean, +) { await removePluginsNativeFiles(config); const cordovaPlugins = plugins.filter( p => getPluginType(p, platform) === PluginType.Cordova, diff --git a/cli/src/util/spm.ts b/cli/src/util/spm.ts new file mode 100644 index 000000000..14dbc4a83 --- /dev/null +++ b/cli/src/util/spm.ts @@ -0,0 +1,113 @@ +import { existsSync, readFileSync, writeFileSync } from '@ionic/utils-fs'; +import { relative, resolve } from 'path'; + +import type { Config } from '../definitions'; +import { logger } from '../log'; +import type { Plugin } from '../plugin'; + +export interface SwiftPlugin { + name: string; + path: string; +} + +export async function findPackageSwiftFile(config: Config): Promise { + const packageDirectory = resolve( + config.ios.nativeProjectDirAbs, + 'CapApp-SPM', + ); + return resolve(packageDirectory, 'Package.swift'); +} + +function readSwiftPackage(packageLine: string): string | null { + const packageRegex = RegExp(/.package\(\s*name:\s*"([A-Za-z0-9_-]+)"/); + const lineMatch = packageLine.match(packageRegex); + if (lineMatch === null) { + return null; + } + + return lineMatch[1]; +} + +export async function generatePackageFile( + config: Config, + plugins: Plugin[], +): Promise { + const swiftPluginList: string[] = []; + + for (const plugin of plugins) { + const relPath = relative(config.ios.nativeXcodeProjDirAbs, plugin.rootPath); + const pluginStatement = `.package(name: "${plugin.ios?.name}", path: "${relPath}"),`; + swiftPluginList.push(pluginStatement); + } + + const packageSwiftFile = await findPackageSwiftFile(config); + + try { + if (!existsSync(packageSwiftFile)) { + logger.error( + `Unable to find ${packageSwiftFile}. Try updating it manually`, + ); + } + const packageSwiftText = readFileSync(packageSwiftFile, 'utf-8'); + const packageSwiftTextLines = packageSwiftText.split('\n'); + + let textToWrite = ''; + const packages: string[] = []; + for (const lineIndex in packageSwiftTextLines) { + const line = packageSwiftTextLines; + const index = parseInt(lineIndex); + + if ( + line[index].includes('dependencies: [') && + line[index + 1].includes( + '.package(url: "https://github.com/ionic-team/capacitor6-spm-test.git", branch: "main")', + ) + ) { + let tempIndex = index + 1; + while (!line[tempIndex].includes('],')) { + const swiftPack = readSwiftPackage(line[tempIndex]); + if (swiftPack !== null) { + packages.push(swiftPack); + } + tempIndex++; + } + } + + if ( + line[index].includes( + '.package(url: "https://github.com/ionic-team/capacitor6-spm-test.git", branch: "main")', + ) + ) { + if (line[index].endsWith(',')) { + textToWrite += line[index] + '\n'; + } else { + textToWrite += line[index] + ',\n'; + } + + for (const swiftPlugin of swiftPluginList) { + const name = readSwiftPackage(swiftPlugin) ?? ''; + if (!packages.includes(name)) { + textToWrite += ' ' + swiftPlugin + '\n'; + } + } + } else { + textToWrite += line[index] + '\n'; + } + } + + writeFileSync(packageSwiftFile, textToWrite); + } catch (err) { + logger.error( + `Unable to read ${packageSwiftFile}. Verify it is not already open. ${err}`, + ); + } +} + +export async function checkPackageManager(config: Config): Promise { + const iosDirectory = config.ios.nativeProjectDirAbs; + if (existsSync(resolve(iosDirectory, 'CapApp-SPM'))) { + return 'SPM'; + } + + return 'Cocoapods'; +} diff --git a/ios-spm-template/App/App.xcodeproj/project.pbxproj b/ios-spm-template/App/App.xcodeproj/project.pbxproj index 0d99fce52..f31168b88 100644 --- a/ios-spm-template/App/App.xcodeproj/project.pbxproj +++ b/ios-spm-template/App/App.xcodeproj/project.pbxproj @@ -8,6 +8,7 @@ /* Begin PBXBuildFile section */ 2FAD9763203C412B000D30F8 /* config.xml in Resources */ = {isa = PBXBuildFile; fileRef = 2FAD9762203C412B000D30F8 /* config.xml */; }; + 4D22ABE92AF431CB00220026 /* CapApp-SPM in Frameworks */ = {isa = PBXBuildFile; productRef = 4D22ABE82AF431CB00220026 /* CapApp-SPM */; }; 50379B232058CBB4000EE86E /* capacitor.config.json in Resources */ = {isa = PBXBuildFile; fileRef = 50379B222058CBB4000EE86E /* capacitor.config.json */; }; 504EC3081FED79650016851F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504EC3071FED79650016851F /* AppDelegate.swift */; }; 504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; }; @@ -36,6 +37,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 4D22ABE92AF431CB00220026 /* CapApp-SPM in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -108,6 +110,9 @@ dependencies = ( ); name = App; + packageProductDependencies = ( + 4D22ABE82AF431CB00220026 /* CapApp-SPM */, + ); productName = App; productReference = 504EC3041FED79650016851F /* App.app */; productType = "com.apple.product-type.application"; @@ -306,7 +311,6 @@ }; 504EC3171FED79650016851F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; @@ -329,7 +333,6 @@ }; 504EC3181FED79650016851F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_STYLE = Automatic; @@ -378,6 +381,14 @@ relativePath = "CapApp-SPM"; }; /* End XCLocalSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 4D22ABE82AF431CB00220026 /* CapApp-SPM */ = { + isa = XCSwiftPackageProductDependency; + package = D4C12C0A2AAA248700AAC8A2 /* XCLocalSwiftPackageReference "CapApp-SPM" */; + productName = "CapApp-SPM"; + }; +/* End XCSwiftPackageProductDependency section */ }; rootObject = 504EC2FC1FED79650016851F /* Project object */; } diff --git a/ios-spm-template/App/CapApp-SPM/Package.swift b/ios-spm-template/App/CapApp-SPM/Package.swift index ccf31e3ae..15c7c7b1c 100644 --- a/ios-spm-template/App/CapApp-SPM/Package.swift +++ b/ios-spm-template/App/CapApp-SPM/Package.swift @@ -11,14 +11,14 @@ let package = Package( targets: ["CapApp-SPM"]) ], dependencies: [ - .package(name: "Capacitor", path: "../../../node_modules/@capacitor/ios") + .package(url: "https://github.com/ionic-team/capacitor6-spm-test.git", branch: "main") ], targets: [ .target( name: "CapApp-SPM", dependencies: [ - .product(name: "Capacitor", package: "Capacitor"), - .product(name: "Cordova", package: "Capacitor") + .product(name: "Capacitor", package: "capacitor6-spm-test"), + .product(name: "Cordova", package: "capacitor6-spm-test") ] ) ] diff --git a/ios/Frameworks/Capacitor.xcframework/Info.plist b/ios/Frameworks/Capacitor.xcframework/Info.plist deleted file mode 100644 index 8ad423f0b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - Capacitor.framework/Capacitor - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64_x86_64-simulator - LibraryPath - Capacitor.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - simulator - - - BinaryPath - Capacitor.framework/Capacitor - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64 - LibraryPath - Capacitor.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Capacitor b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Capacitor deleted file mode 100755 index 4532d07b8..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Capacitor and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPBridgedPlugin.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPBridgedPlugin.h deleted file mode 100644 index 5a9a3b4e2..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPBridgedPlugin.h +++ /dev/null @@ -1,43 +0,0 @@ -#import "CAPPluginMethod.h" - -#if defined(__cplusplus) -#define CAP_EXTERN extern "C" __attribute__((visibility("default"))) -#else -#define CAP_EXTERN extern __attribute__((visibility("default"))) -#endif - -#define CAPPluginReturnNone @"none" -#define CAPPluginReturnCallback @"callback" -#define CAPPluginReturnPromise @"promise" -#define CAPPluginReturnWatch @"watch" -#define CAPPluginReturnSync @"sync" // not used - -@class CAPPluginCall; -@class CAPPlugin; - -@protocol CAPBridgedPlugin -@property (nonnull, readonly) NSString *identifier; -@property (nonnull, readonly) NSString *jsName; -@property (nonnull, readonly) NSArray *pluginMethods; -@end - -#define CAP_PLUGIN_CONFIG(plugin_id, js_name) \ -- (NSString *)identifier { return @#plugin_id; } \ -- (NSString *)jsName { return @js_name; } -#define CAP_PLUGIN_METHOD(method_name, method_return_type) \ -[methods addObject:[[CAPPluginMethod alloc] initWithName:@#method_name returnType:method_return_type]] - -#define CAP_PLUGIN(objc_name, js_name, methods_body) \ -@interface objc_name : NSObject \ -@end \ -@interface objc_name (CAPPluginCategory) \ -@end \ -@implementation objc_name (CAPPluginCategory) \ -- (NSArray *)pluginMethods { \ - NSMutableArray *methods = [NSMutableArray new]; \ - methods_body \ - return methods; \ -} \ -CAP_PLUGIN_CONFIG(objc_name, js_name) \ -@end - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPInstanceConfiguration.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPInstanceConfiguration.h deleted file mode 100644 index 81ebe3d1b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPInstanceConfiguration.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef CAPInstanceConfiguration_h -#define CAPInstanceConfiguration_h - -@import UIKit; - -@class CAPInstanceDescriptor; - -NS_SWIFT_NAME(InstanceConfiguration) -@interface CAPInstanceConfiguration: NSObject -@property (nonatomic, readonly, nullable) NSString *appendedUserAgentString; -@property (nonatomic, readonly, nullable) NSString *overridenUserAgentString; -@property (nonatomic, readonly, nullable) UIColor *backgroundColor; -@property (nonatomic, readonly, nonnull) NSArray *allowedNavigationHostnames; -@property (nonatomic, readonly, nonnull) NSURL *localURL; -@property (nonatomic, readonly, nonnull) NSURL *serverURL; -@property (nonatomic, readonly, nullable) NSString *errorPath; -@property (nonatomic, readonly, nonnull) NSDictionary *pluginConfigurations; -@property (nonatomic, readonly) BOOL loggingEnabled; -@property (nonatomic, readonly) BOOL scrollingEnabled; -@property (nonatomic, readonly) BOOL zoomingEnabled; -@property (nonatomic, readonly) BOOL allowLinkPreviews; -@property (nonatomic, readonly) BOOL handleApplicationNotifications; -@property (nonatomic, readonly) BOOL isWebDebuggable; -@property (nonatomic, readonly) BOOL cordovaDeployDisabled; -@property (nonatomic, readonly) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior; -@property (nonatomic, readonly, nonnull) NSURL *appLocation; -@property (nonatomic, readonly, nullable) NSString *appStartPath; -@property (nonatomic, readonly) BOOL limitsNavigationsToAppBoundDomains; -@property (nonatomic, readonly, nullable) NSString *preferredContentMode; - -@property (nonatomic, readonly, nonnull) NSDictionary *legacyConfig DEPRECATED_MSG_ATTRIBUTE("Use direct properties instead"); - -- (instancetype _Nonnull)initWithDescriptor:(CAPInstanceDescriptor* _Nonnull)descriptor isDebug:(BOOL)debug NS_SWIFT_NAME(init(with:isDebug:)); -- (instancetype _Nonnull)updatingAppLocation:(NSURL* _Nonnull)location NS_SWIFT_NAME(updatingAppLocation(_:)); -@end - -#endif /* CAPInstanceConfiguration_h */ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPInstanceDescriptor.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPInstanceDescriptor.h deleted file mode 100644 index 228b3a41d..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPInstanceDescriptor.h +++ /dev/null @@ -1,161 +0,0 @@ -#ifndef CAPInstanceDescriptor_h -#define CAPInstanceDescriptor_h - -@import UIKit; -@import Cordova; - -typedef NS_ENUM(NSInteger, CAPInstanceType) { - CAPInstanceTypeFixed NS_SWIFT_NAME(fixed), - CAPInstanceTypeVariable NS_SWIFT_NAME(variable) -} NS_SWIFT_NAME(InstanceType); - -typedef NS_OPTIONS(NSUInteger, CAPInstanceWarning) { - CAPInstanceWarningMissingAppDir NS_SWIFT_NAME(missingAppDir) = 1 << 0, - CAPInstanceWarningMissingFile NS_SWIFT_NAME(missingFile) = 1 << 1, - CAPInstanceWarningInvalidFile NS_SWIFT_NAME(invalidFile) = 1 << 2, - CAPInstanceWarningMissingCordovaFile NS_SWIFT_NAME(missingCordovaFile) = 1 << 3, - CAPInstanceWarningInvalidCordovaFile NS_SWIFT_NAME(invalidCordovaFile) = 1 << 4 -} NS_SWIFT_NAME(InstanceWarning); - -typedef NS_OPTIONS(NSUInteger, CAPInstanceLoggingBehavior) { - CAPInstanceLoggingBehaviorNone NS_SWIFT_NAME(none) = 1 << 0, - CAPInstanceLoggingBehaviorDebug NS_SWIFT_NAME(debug) = 1 << 1, - CAPInstanceLoggingBehaviorProduction NS_SWIFT_NAME(production) = 1 << 2, -} NS_SWIFT_NAME(InstanceLoggingBehavior); - -extern NSString * _Nonnull const CAPInstanceDescriptorDefaultScheme NS_SWIFT_UNAVAILABLE("Use InstanceDescriptorDefaults"); -extern NSString * _Nonnull const CAPInstanceDescriptorDefaultHostname NS_SWIFT_UNAVAILABLE("Use InstanceDescriptorDefaults"); - -NS_SWIFT_NAME(InstanceDescriptor) -@interface CAPInstanceDescriptor : NSObject -/** - @brief A value to append to the @c User-Agent string. Ignored if @c overridenUserAgentString is set. - @discussion Set by @c appendUserAgent in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *appendedUserAgentString; -/** - @brief A value that will completely replace the @c User-Agent string. Overrides @c appendedUserAgentString. - @discussion Set by @c overrideUserAgent in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *overridenUserAgentString; -/** - @brief The background color to set on the web view where content is not visible. - @discussion Set by @c backgroundColor in the configuration file. - */ -@property (nonatomic, retain, nullable) UIColor *backgroundColor; -/** - @brief Hostnames to which the web view is allowed to navigate without opening an external browser. - @discussion Set by @c allowNavigation in the configuration file. - */ -@property (nonatomic, copy, nonnull) NSArray *allowedNavigationHostnames; -/** - @brief The scheme that will be used for the server URL. - @discussion Defaults to @c capacitor. Set by @c server.iosScheme in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *urlScheme; -/** - @brief The path to a local html page to display in case of errors. - @discussion Defaults to nil. - */ -@property (nonatomic, copy, nullable) NSString *errorPath; -/** - @brief The hostname that will be used for the server URL. - @discussion Defaults to @c localhost. Set by @c server.hostname in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *urlHostname; -/** - @brief The fully formed URL that will be used as the server URL. - @discussion Defaults to nil, in which case the server URL will be constructed from @c urlScheme and @c urlHostname. If set, it will override the other properties. Set by @c server.url in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *serverURL; -/** - @brief The JSON dictionary that contains the plugin-specific configuration information. - @discussion Set by @c plugins in the configuration file. - */ -@property (nonatomic, retain, nonnull) NSDictionary *pluginConfigurations; -/** - @brief The build configurations under which logging should be enabled. - @discussion Defaults to @c debug. Set by @c loggingBehavior in the configuration file. - */ -@property (nonatomic, assign) CAPInstanceLoggingBehavior loggingBehavior; -/** - @brief Whether or not the web view can scroll. - @discussion Set by @c ios.scrollEnabled in the configuration file. Corresponds to @c isScrollEnabled on WKWebView. - */ -@property (nonatomic, assign) BOOL scrollingEnabled; -/** - @brief Whether or not the web view can zoom. - @discussion Set by @c zoomEnabled in the configuration file. - */ -@property (nonatomic, assign) BOOL zoomingEnabled; -/** - @brief Whether or not the web view will preview links. - @discussion Set by @c ios.allowsLinkPreview in the configuration file. Corresponds to @c allowsLinkPreview on WKWebView. - */ -@property (nonatomic, assign) BOOL allowLinkPreviews; -/** - @brief Whether or not the Capacitor runtime will set itself as the @c UNUserNotificationCenter delegate. - @discussion Defaults to @c true. Required to be @c true for notification plugins to work correctly. Set to @c false if your application will handle notifications independently. - */ -@property (nonatomic, assign) BOOL handleApplicationNotifications; -/** - @brief Enables web debugging by setting isInspectable of @c WKWebView to @c true on iOS 16.4 and greater - @discussion Defaults to true in debug mode and false in production - */ -@property (nonatomic, assign) BOOL isWebDebuggable; -/** - @brief How the web view will inset its content - @discussion Set by @c ios.contentInset in the configuration file. Corresponds to @c contentInsetAdjustmentBehavior on WKWebView. - */ -@property (nonatomic, assign) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior; -/** - @brief The base file URL from which Capacitor will load resources - @discussion Defaults to @c public/ located at the root of the application bundle. - */ -@property (nonatomic, copy, nonnull) NSURL *appLocation; -/** - @brief The path (relative to @c appLocation) which Capacitor will use for the inital URL at launch. - @discussion Defaults to nil, in which case Capacitor will attempt to load @c index.html. - */ -@property (nonatomic, copy, nullable) NSString *appStartPath; -/** - @brief Whether or not the Capacitor WebView will limit the navigation to @c WKAppBoundDomains listed in the Info.plist. - @discussion Defaults to @c false. Set by @c ios.limitsNavigationsToAppBoundDomains in the configuration file. Required to be @c true for plugins to work if the app includes @c WKAppBoundDomains in the Info.plist. - */ -@property (nonatomic, assign) BOOL limitsNavigationsToAppBoundDomains; -/** - @brief The content mode for the web view to use when it loads and renders web content. - @discussion Defaults to @c recommended. Set by @c ios.preferredContentMode in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *preferredContentMode; -/** - @brief The parser used to load the cofiguration for Cordova plugins. - */ -@property (nonatomic, copy, nonnull) CDVConfigParser *cordovaConfiguration; -/** - @brief Warnings generated during initialization. - */ -@property (nonatomic, assign) CAPInstanceWarning warnings; -/** - @brief The type of instance. - */ -@property (nonatomic, readonly) CAPInstanceType instanceType; -/** - @brief The JSON dictionary representing the contents of the configuration file. - @warning Deprecated. Do not use. - */ -@property (nonatomic, retain, nonnull) NSDictionary *legacyConfig; -/** - @brief Initialize the descriptor with the default environment. This assumes that the application was built with the help of the Capacitor CLI and that that the web app is located inside the application bundle at @c public/. - */ -- (instancetype _Nonnull)initAsDefault NS_SWIFT_NAME(init()); -/** - @brief Initialize the descriptor for use in other contexts. The app location is the one required parameter. - @param appURL The location of the folder containing the web app. - @param configURL The location of the Capacitor configuration file. - @param cordovaURL The location of the Cordova configuration file. - */ -- (instancetype _Nonnull)initAtLocation:(NSURL* _Nonnull)appURL configuration:(NSURL* _Nullable)configURL cordovaConfiguration:(NSURL* _Nullable)cordovaURL NS_SWIFT_NAME(init(at:configuration:cordovaConfiguration:)); -@end - -#endif /* CAPInstanceDescriptor_h */ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPlugin.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPlugin.h deleted file mode 100644 index 11bb9bda2..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPlugin.h +++ /dev/null @@ -1,55 +0,0 @@ -#import -#import - -@protocol CAPBridgeProtocol; -@class CAPPluginCall; - -@class PluginConfig; - -@interface CAPPlugin : NSObject - -@property (nonatomic, weak, nullable) WKWebView *webView; -@property (nonatomic, weak, nullable) id bridge; -@property (nonatomic, strong, nonnull) NSString *pluginId; -@property (nonatomic, strong, nonnull) NSString *pluginName; -@property (nonatomic, strong, nullable) NSMutableDictionary*> *eventListeners; -@property (nonatomic, strong, nullable) NSMutableDictionary *> *retainedEventArguments; -@property (nonatomic, assign) BOOL shouldStringifyDatesInCalls; - -- (instancetype _Nonnull) initWithBridge:(id _Nonnull) bridge pluginId:(NSString* _Nonnull) pluginId pluginName:(NSString* _Nonnull) pluginName DEPRECATED_MSG_ATTRIBUTE("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (void)addEventListener:(NSString* _Nonnull)eventName listener:(CAPPluginCall* _Nonnull)listener; -- (void)removeEventListener:(NSString* _Nonnull)eventName listener:(CAPPluginCall* _Nonnull)listener; -- (void)notifyListeners:(NSString* _Nonnull)eventName data:(NSDictionary* _Nullable)data; -- (void)notifyListeners:(NSString* _Nonnull)eventName data:(NSDictionary* _Nullable)data retainUntilConsumed:(BOOL)retain; -- (NSArray* _Nullable)getListeners:(NSString* _Nonnull)eventName; -- (BOOL)hasListeners:(NSString* _Nonnull)eventName; -- (void)addListener:(CAPPluginCall* _Nonnull)call; -- (void)removeListener:(CAPPluginCall* _Nonnull)call; -- (void)removeAllListeners:(CAPPluginCall* _Nonnull)call; -/** - * Default implementation of the capacitor 3.0 permission pattern - */ -- (void)checkPermissions:(CAPPluginCall* _Nonnull)call; -- (void)requestPermissions:(CAPPluginCall* _Nonnull)call; -/** - * Give the plugins a chance to take control when a URL is about to be loaded in the WebView. - * Returning true causes the WebView to abort loading the URL. - * Returning false causes the WebView to continue loading the URL. - * Returning nil will defer to the default Capacitor policy - */ -- (NSNumber* _Nullable)shouldOverrideLoad:(WKNavigationAction* _Nonnull)navigationAction; - -// Called after init if the plugin wants to do -// some loading so the plugin author doesn't -// need to override init() --(void)load; --(NSString* _Nonnull)getId; --(BOOL)getBool:(CAPPluginCall* _Nonnull) call field:(NSString* _Nonnull)field defaultValue:(BOOL)defaultValue DEPRECATED_MSG_ATTRIBUTE("Use accessors on CAPPluginCall instead. See CAPBridgedJSTypes.h for Obj-C implementations."); --(NSString* _Nullable)getString:(CAPPluginCall* _Nonnull)call field:(NSString* _Nonnull)field defaultValue:(NSString* _Nonnull)defaultValue DEPRECATED_MSG_ATTRIBUTE("Use accessors on CAPPluginCall instead. See CAPBridgedJSTypes.h for Obj-C implementations."); --(id _Nullable)getConfigValue:(NSString* _Nonnull)key __deprecated_msg("use getConfig() and access config values using the methods available depending on the type."); --(PluginConfig* _Nonnull)getConfig; --(void)setCenteredPopover:(UIViewController* _Nonnull) vc; --(void)setCenteredPopover:(UIViewController* _Nonnull) vc size:(CGSize) size; --(BOOL)supportsPopover DEPRECATED_MSG_ATTRIBUTE("All iOS 13+ devices support popover"); - -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPluginCall.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPluginCall.h deleted file mode 100644 index 46b3e67bc..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPluginCall.h +++ /dev/null @@ -1,22 +0,0 @@ -#import - -@class CAPPluginCall; -@class CAPPluginCallResult; -@class CAPPluginCallError; - -typedef void(^CAPPluginCallSuccessHandler)(CAPPluginCallResult *result, CAPPluginCall* call); -typedef void(^CAPPluginCallErrorHandler)(CAPPluginCallError *error); - -@interface CAPPluginCall : NSObject - -@property (nonatomic, assign) BOOL isSaved DEPRECATED_MSG_ATTRIBUTE("Use 'keepAlive' instead."); -@property (nonatomic, assign) BOOL keepAlive; -@property (nonatomic, strong) NSString *callbackId; -@property (nonatomic, strong) NSDictionary *options; -@property (nonatomic, copy) CAPPluginCallSuccessHandler successHandler; -@property (nonatomic, copy) CAPPluginCallErrorHandler errorHandler; - -- (instancetype)initWithCallbackId:(NSString *)callbackId options:(NSDictionary *)options success:(CAPPluginCallSuccessHandler)success error:(CAPPluginCallErrorHandler)error; - -- (void)save DEPRECATED_MSG_ATTRIBUTE("Use the 'keepAlive' property instead."); -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPluginMethod.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPluginMethod.h deleted file mode 100644 index a0a950d90..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/CAPPluginMethod.h +++ /dev/null @@ -1,36 +0,0 @@ -#import "CAPPluginCall.h" -#import "CAPPlugin.h" - -typedef enum { - CAPPluginMethodArgumentNotNullable, - CAPPluginMethodArgumentNullable -} CAPPluginMethodArgumentNullability; - -typedef NSString CAPPluginReturnType; - -/** - * Represents a single argument to a plugin method. - */ -@interface CAPPluginMethodArgument : NSObject - -@property (nonatomic, copy) NSString *name; -@property (nonatomic, assign) CAPPluginMethodArgumentNullability nullability; - -- (instancetype)initWithName:(NSString *)name nullability:(CAPPluginMethodArgumentNullability)nullability type:(NSString *)type; - -@end - -/** - * Represents a method that a plugin supports, with the ability - * to compute selectors and invoke the method. - */ -@interface CAPPluginMethod : NSObject - -@property (nonatomic, assign) SEL selector; -@property (nonatomic, strong) NSString *name; // Raw method name -@property (nonatomic, strong) CAPPluginReturnType *returnType; // Return type of method (i.e. callback/promise/sync) - -- (instancetype)initWithName:(NSString *)name returnType:(CAPPluginReturnType *)returnType; - - -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/Capacitor-Swift.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/Capacitor-Swift.h deleted file mode 100644 index a46a6c7ad..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/Capacitor-Swift.h +++ /dev/null @@ -1,716 +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 CAPACITOR_SWIFT_H -#define CAPACITOR_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; -@import UIKit; -@import UserNotifications; -@import WebKit; -#endif - -#import - -#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="Capacitor",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class UIApplication; -@class NSURL; -@class NSUserActivity; -@protocol UIUserActivityRestoring; - -SWIFT_CLASS_NAMED("ApplicationDelegateProxy") -@interface CAPApplicationDelegateProxy : NSObject -- (BOOL)application:(UIApplication * _Nonnull)app openURL:(NSURL * _Nonnull)url options:(NSDictionary * _Nonnull)options SWIFT_WARN_UNUSED_RESULT; -- (BOOL)application:(UIApplication * _Nonnull)application continueUserActivity:(NSUserActivity * _Nonnull)userActivity restorationHandler:(void (^ _Nonnull)(NSArray> * _Nullable))restorationHandler SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class NSNotification; - -SWIFT_CLASS("_TtC9Capacitor9CAPBridge") SWIFT_DEPRECATED_MSG("'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@interface CAPBridge : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSNotification * _Nonnull statusBarTappedNotification;) -+ (NSNotification * _Nonnull)statusBarTappedNotification SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class UIViewController; -@class CAPInstanceConfiguration; -@class WKWebView; -@class CAPNotificationRouter; -@class NSString; -@class CAPPluginCall; -@class CAPPlugin; - -SWIFT_PROTOCOL("_TtP9Capacitor17CAPBridgeProtocol_") -@protocol CAPBridgeProtocol -@property (nonatomic, readonly, strong) UIViewController * _Nullable viewController; -@property (nonatomic, readonly, strong) CAPInstanceConfiguration * _Nonnull config; -@property (nonatomic, readonly, strong) WKWebView * _Nullable webView; -@property (nonatomic, readonly, strong) CAPNotificationRouter * _Nonnull notificationRouter; -@property (nonatomic, readonly) BOOL isSimEnvironment; -@property (nonatomic, readonly) BOOL isDevEnvironment; -@property (nonatomic, readonly) UIUserInterfaceStyle userInterfaceStyle; -@property (nonatomic, readonly) BOOL autoRegisterPlugins; -@property (nonatomic) BOOL statusBarVisible; -@property (nonatomic) UIStatusBarStyle statusBarStyle; -@property (nonatomic) UIStatusBarAnimation statusBarAnimation; -- (WKWebView * _Nullable)getWebView SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "webView"); -- (BOOL)isSimulator SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "isSimEnvironment"); -- (BOOL)isDevMode SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "isDevEnvironment"); -- (BOOL)getStatusBarVisible SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "statusBarVisible"); -- (UIStatusBarStyle)getStatusBarStyle SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "statusBarStyle"); -- (UIUserInterfaceStyle)getUserInterfaceStyle SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "userInterfaceStyle"); -- (NSString * _Nonnull)getLocalUrl SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Moved - equivalent is found on config.localURL"); -- (CAPPluginCall * _Nullable)getSavedCall:(NSString * _Nonnull)callbackId SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "savedCallWithID:"); -- (void)releaseCallWithCallbackId:(NSString * _Nonnull)callbackId SWIFT_DEPRECATED_MSG("", "releaseCallWithID:"); -- (CAPPlugin * _Nullable)pluginWithName:(NSString * _Nonnull)withName SWIFT_WARN_UNUSED_RESULT; -- (void)saveCall:(CAPPluginCall * _Nonnull)call; -- (CAPPluginCall * _Nullable)savedCallWithID:(NSString * _Nonnull)withID SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCall:(CAPPluginCall * _Nonnull)call; -- (void)releaseCallWithID:(NSString * _Nonnull)withID; -- (void)evalWithPlugin:(CAPPlugin * _Nonnull)plugin js:(NSString * _Nonnull)js; -- (void)evalWithJs:(NSString * _Nonnull)js; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target data:(NSString * _Nonnull)data; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (NSURL * _Nullable)localURLFromWebURL:(NSURL * _Nullable)webURL SWIFT_WARN_UNUSED_RESULT; -- (NSURL * _Nullable)portablePathFromLocalURL:(NSURL * _Nullable)localURL SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePath:(NSString * _Nonnull)path; -- (void)registerPluginType:(SWIFT_METATYPE(CAPPlugin) _Nonnull)pluginType; -- (void)registerPluginInstance:(CAPPlugin * _Nonnull)pluginInstance; -- (void)showAlertWithTitle:(NSString * _Nonnull)title message:(NSString * _Nonnull)message buttonTitle:(NSString * _Nonnull)buttonTitle; -- (void)presentVC:(UIViewController * _Nonnull)viewControllerToPresent animated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (void)dismissVCWithAnimated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -@end - -@class NSBundle; -@class NSCoder; - -SWIFT_CLASS("_TtC9Capacitor23CAPBridgeViewController") -@interface CAPBridgeViewController : UIViewController -@property (nonatomic, copy) NSArray * _Nonnull supportedOrientations; -- (void)loadView; -- (void)viewDidLoad; -- (BOOL)canPerformUnwindSegueAction:(SEL _Nonnull)action fromViewController:(UIViewController * _Nonnull)fromViewController withSender:(id _Nonnull)sender SWIFT_WARN_UNUSED_RESULT; -@property (nonatomic, readonly) BOOL prefersStatusBarHidden; -@property (nonatomic, readonly) UIStatusBarStyle preferredStatusBarStyle; -@property (nonatomic, readonly) UIStatusBarAnimation preferredStatusBarUpdateAnimation; -@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; -- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface CAPBridgeViewController (SWIFT_EXTENSION(Capacitor)) -- (NSString * _Nonnull)getServerBasePath SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePathWithPath:(NSString * _Nonnull)path; -@end - - - - -SWIFT_CLASS_NAMED("CAPConsolePlugin") -@interface CAPConsolePlugin : CAPPlugin -- (void)log:(CAPPluginCall * _Nonnull)call; -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS_NAMED("CAPCookiesPlugin") -@interface CAPCookiesPlugin : CAPPlugin -- (void)load; -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// CAPFileManager helps map file schemes to physical files, whether they are on -/// disk, in a bundle, or in another location. -SWIFT_CLASS("_TtC9Capacitor14CAPFileManager") -@interface CAPFileManager : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS_NAMED("CAPHttpPlugin") -@interface CAPHttpPlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// A CAPPlugin subclass meant to be explicitly initialized by the caller and not the bridge. -SWIFT_CLASS("_TtC9Capacitor17CAPInstancePlugin") -@interface CAPInstancePlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -/// Deprecated, will be removed -typedef SWIFT_ENUM(NSInteger, CAPNotifications, open) { - CAPNotificationsURLOpen = 0, - CAPNotificationsUniversalLinkOpen = 1, - CAPNotificationsContinueActivity = 2, - CAPNotificationsDidRegisterForRemoteNotificationsWithDeviceToken = 3, - CAPNotificationsDidFailToRegisterForRemoteNotificationsWithError = 4, - CAPNotificationsDecidePolicyForNavigationAction = 5, -}; - - -@class NSISO8601DateFormatter; - -@interface CAPPluginCall (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly, strong) NSDictionary * _Nonnull dictionaryRepresentation; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) NSISO8601DateFormatter * _Nonnull jsDateFormatter;) -+ (NSISO8601DateFormatter * _Nonnull)jsDateFormatter SWIFT_WARN_UNUSED_RESULT; -+ (void)setJsDateFormatter:(NSISO8601DateFormatter * _Nonnull)value; -@end - - -@interface CAPPluginCall (SWIFT_EXTENSION(Capacitor)) -- (BOOL)hasOption:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Presence of a key should not be considered significant. Use typed accessors to check the value instead."); -- (void)success SWIFT_DEPRECATED_MSG("", "resolve"); -- (void)success:(NSDictionary * _Nonnull)data SWIFT_DEPRECATED_MSG("", "resolve:"); -- (void)resolve; -- (void)resolve:(NSDictionary * _Nonnull)data; -- (void)error:(NSString * _Nonnull)message :(NSError * _Nullable)error :(NSDictionary * _Nonnull)data SWIFT_DEPRECATED_MSG("", "reject::::"); -- (void)reject:(NSString * _Nonnull)message :(NSString * _Nullable)code :(NSError * _Nullable)error :(NSDictionary * _Nullable)data; -- (void)unimplemented; -- (void)unimplemented:(NSString * _Nonnull)message; -- (void)unavailable; -- (void)unavailable:(NSString * _Nonnull)message; -@end - - -SWIFT_CLASS("_TtC9Capacitor18CAPPluginCallError") -@interface CAPPluginCallError : NSObject -@property (nonatomic, readonly, copy) NSString * _Nonnull message; -@property (nonatomic, readonly, copy) NSString * _Nullable code; -@property (nonatomic, readonly) NSError * _Nullable error; -@property (nonatomic, readonly, copy) NSDictionary * _Nullable data; -- (nonnull instancetype)init:(NSString * _Nonnull)message code:(NSString * _Nullable)code error:(NSError * _Nullable)error data:(NSDictionary * _Nullable)data OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS("_TtC9Capacitor19CAPPluginCallResult") -@interface CAPPluginCallResult : NSObject -@property (nonatomic, readonly, copy) NSDictionary * _Nullable data; -- (nonnull instancetype)init:(NSDictionary * _Nullable)data OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS_NAMED("CAPWebViewPlugin") -@interface CAPWebViewPlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC9Capacitor15CapacitorBridge") -@interface CapacitorBridge : NSObject -@property (nonatomic, readonly, strong) WKWebView * _Nullable webView; -@property (nonatomic, readonly) BOOL autoRegisterPlugins; -@property (nonatomic, strong) CAPNotificationRouter * _Nonnull notificationRouter; -@property (nonatomic, readonly) BOOL isSimEnvironment; -@property (nonatomic, readonly) BOOL isDevEnvironment; -@property (nonatomic, readonly) UIUserInterfaceStyle userInterfaceStyle; -@property (nonatomic) BOOL statusBarVisible; -@property (nonatomic) UIStatusBarStyle statusBarStyle; -@property (nonatomic) UIStatusBarAnimation statusBarAnimation; -@property (nonatomic, readonly, strong) UIViewController * _Nullable viewController; -@property (nonatomic, strong) CAPInstanceConfiguration * _Nonnull config; -- (WKWebView * _Nullable)getWebView SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isSimulator SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isDevMode SWIFT_WARN_UNUSED_RESULT; -- (BOOL)getStatusBarVisible SWIFT_WARN_UNUSED_RESULT; -- (UIStatusBarStyle)getStatusBarStyle SWIFT_WARN_UNUSED_RESULT; -- (UIUserInterfaceStyle)getUserInterfaceStyle SWIFT_WARN_UNUSED_RESULT; -- (NSString * _Nonnull)getLocalUrl SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePath:(NSString * _Nonnull)path; -- (void)registerPluginType:(SWIFT_METATYPE(CAPPlugin) _Nonnull)pluginType; -- (void)registerPluginInstance:(CAPPlugin * _Nonnull)pluginInstance; -- (CAPPlugin * _Nullable)pluginWithName:(NSString * _Nonnull)withName SWIFT_WARN_UNUSED_RESULT; -- (void)saveCall:(CAPPluginCall * _Nonnull)call; -- (CAPPluginCall * _Nullable)savedCallWithID:(NSString * _Nonnull)withID SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCall:(CAPPluginCall * _Nonnull)call; -- (void)releaseCallWithID:(NSString * _Nonnull)withID; -- (CAPPluginCall * _Nullable)getSavedCall:(NSString * _Nonnull)callbackId SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCallWithCallbackId:(NSString * _Nonnull)callbackId; -- (void)evalWithPlugin:(CAPPlugin * _Nonnull)plugin js:(NSString * _Nonnull)js; -- (void)evalWithJs:(NSString * _Nonnull)js; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target data:(NSString * _Nonnull)data; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -/// Translate a URL from the web view into a file URL for native iOS. -/// The web view may be handling several different types of URLs: -///
    -///
  • -/// res:// (shortcut scheme to web assets) -///
  • -///
  • -/// file:// (fully qualified URL to file on the local device) -///
  • -///
  • -/// base64:// (to be implemented) -///
  • -///
  • -///
  • -///
-- (NSURL * _Nullable)localURLFromWebURL:(NSURL * _Nullable)webURL SWIFT_WARN_UNUSED_RESULT; -/// Translate a file URL for native iOS into a URL to load in the web view. -- (NSURL * _Nullable)portablePathFromLocalURL:(NSURL * _Nullable)localURL SWIFT_WARN_UNUSED_RESULT; -- (void)showAlertWithTitle:(NSString * _Nonnull)title message:(NSString * _Nonnull)message buttonTitle:(NSString * _Nonnull)buttonTitle; -- (void)presentVC:(UIViewController * _Nonnull)viewControllerToPresent animated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (void)dismissVCWithAnimated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class NSURLSession; -@class NSURLSessionTask; -@class NSHTTPURLResponse; -@class NSURLRequest; - -SWIFT_CLASS("_TtC9Capacitor19CapacitorUrlRequest") -@interface CapacitorUrlRequest : NSObject -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class WKHTTPCookieStore; - -SWIFT_CLASS("_TtC9Capacitor25CapacitorWKCookieObserver") -@interface CapacitorWKCookieObserver : NSObject -- (void)cookiesDidChangeInCookieStore:(WKHTTPCookieStore * _Nonnull)cookieStore; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class PluginConfig; - -@interface CAPInstanceConfiguration (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly, copy) NSURL * _Nonnull appStartFileURL; -@property (nonatomic, readonly, copy) NSURL * _Nonnull appStartServerURL; -@property (nonatomic, readonly, copy) NSURL * _Nullable errorPathURL; -- (id _Nullable)getPluginConfigValue:(NSString * _Nonnull)pluginId :(NSString * _Nonnull)configKey SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use getPluginConfig"); -- (PluginConfig * _Nonnull)getPluginConfig:(NSString * _Nonnull)pluginId SWIFT_WARN_UNUSED_RESULT; -- (BOOL)shouldAllowNavigationTo:(NSString * _Nonnull)host SWIFT_WARN_UNUSED_RESULT; -- (id _Nullable)getValue:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use direct property accessors"); -- (NSString * _Nullable)getString:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use direct property accessors"); -@end - - - -@interface CAPInstanceDescriptor (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly) BOOL cordovaDeployDisabled; -- (void)normalize; -@end - - -@interface NSNotification (SWIFT_EXTENSION(Capacitor)) -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorOpenURL;) -+ (NSNotificationName _Nonnull)capacitorOpenURL SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorOpenUniversalLink;) -+ (NSNotificationName _Nonnull)capacitorOpenUniversalLink SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorContinueActivity;) -+ (NSNotificationName _Nonnull)capacitorContinueActivity SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDidRegisterForRemoteNotifications;) -+ (NSNotificationName _Nonnull)capacitorDidRegisterForRemoteNotifications SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDidFailToRegisterForRemoteNotifications;) -+ (NSNotificationName _Nonnull)capacitorDidFailToRegisterForRemoteNotifications SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDecidePolicyForNavigationAction;) -+ (NSNotificationName _Nonnull)capacitorDecidePolicyForNavigationAction SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorStatusBarTapped;) -+ (NSNotificationName _Nonnull)capacitorStatusBarTapped SWIFT_WARN_UNUSED_RESULT; -@end - - - -@class UNNotification; -@class UNNotificationResponse; - -SWIFT_PROTOCOL_NAMED("NotificationHandlerProtocol") -@protocol CAPNotificationHandlerProtocol -- (UNNotificationPresentationOptions)willPresentWithNotification:(UNNotification * _Nonnull)notification SWIFT_WARN_UNUSED_RESULT; -- (void)didReceiveWithResponse:(UNNotificationResponse * _Nonnull)response; -@end - -@class UNUserNotificationCenter; - -SWIFT_CLASS_NAMED("NotificationRouter") -@interface CAPNotificationRouter : NSObject -- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler; -- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC9Capacitor12PluginConfig") -@interface PluginConfig : NSObject -- (NSString * _Nullable)getString:(NSString * _Nonnull)configKey :(NSString * _Nullable)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (BOOL)getBoolean:(NSString * _Nonnull)configKey :(BOOL)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (NSInteger)getInt:(NSString * _Nonnull)configKey :(NSInteger)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isEmpty SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - - -@protocol WKURLSchemeTask; - -SWIFT_CLASS_NAMED("WebViewAssetHandler") -@interface CAPWebViewAssetHandler : NSObject -- (void)webView:(WKWebView * _Nonnull)webView startURLSchemeTask:(id _Nonnull)urlSchemeTask; -- (void)webView:(WKWebView * _Nonnull)webView stopURLSchemeTask:(id _Nonnull)urlSchemeTask; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class WKNavigation; -@class WKSecurityOrigin; -@class WKFrameInfo; -@class WKNavigationAction; -@class WKUserContentController; -@class WKScriptMessage; -@class WKWebViewConfiguration; -@class WKWindowFeatures; -@class UIScrollView; -@class UIView; - -SWIFT_CLASS_NAMED("WebViewDelegationHandler") -@interface CAPWebViewDelegationHandler : NSObject -- (void)webView:(WKWebView * _Nonnull)webView didStartProvisionalNavigation:(WKNavigation * _Null_unspecified)navigation; -- (void)webView:(WKWebView * _Nonnull)webView requestMediaCapturePermissionForOrigin:(WKSecurityOrigin * _Nonnull)origin initiatedByFrame:(WKFrameInfo * _Nonnull)frame type:(WKMediaCaptureType)type decisionHandler:(void (^ _Nonnull)(WKPermissionDecision))decisionHandler SWIFT_AVAILABILITY(ios,introduced=15); -- (void)webView:(WKWebView * _Nonnull)webView requestDeviceOrientationAndMotionPermissionForOrigin:(WKSecurityOrigin * _Nonnull)origin initiatedByFrame:(WKFrameInfo * _Nonnull)frame decisionHandler:(void (^ _Nonnull)(WKPermissionDecision))decisionHandler SWIFT_AVAILABILITY(ios,introduced=15); -- (void)webView:(WKWebView * _Nonnull)webView decidePolicyForNavigationAction:(WKNavigationAction * _Nonnull)navigationAction decisionHandler:(void (^ _Nonnull)(WKNavigationActionPolicy))decisionHandler; -- (void)webView:(WKWebView * _Nonnull)webView didFinishNavigation:(WKNavigation * _Null_unspecified)navigation; -- (void)webView:(WKWebView * _Nonnull)webView didFailNavigation:(WKNavigation * _Null_unspecified)navigation withError:(NSError * _Nonnull)error; -- (void)webView:(WKWebView * _Nonnull)webView didFailProvisionalNavigation:(WKNavigation * _Null_unspecified)navigation withError:(NSError * _Nonnull)error; -- (void)webViewWebContentProcessDidTerminate:(WKWebView * _Nonnull)webView; -- (void)userContentController:(WKUserContentController * _Nonnull)userContentController didReceiveScriptMessage:(WKScriptMessage * _Nonnull)message; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptAlertPanelWithMessage:(NSString * _Nonnull)message initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(void))completionHandler; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptConfirmPanelWithMessage:(NSString * _Nonnull)message initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(BOOL))completionHandler; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptTextInputPanelWithPrompt:(NSString * _Nonnull)prompt defaultText:(NSString * _Nullable)defaultText initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(NSString * _Nullable))completionHandler; -- (WKWebView * _Nullable)webView:(WKWebView * _Nonnull)webView createWebViewWithConfiguration:(WKWebViewConfiguration * _Nonnull)configuration forNavigationAction:(WKNavigationAction * _Nonnull)navigationAction windowFeatures:(WKWindowFeatures * _Nonnull)windowFeatures SWIFT_WARN_UNUSED_RESULT; -- (void)scrollViewWillBeginZooming:(UIScrollView * _Nonnull)scrollView withView:(UIView * _Nullable)view; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@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/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/Capacitor.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/Capacitor.h deleted file mode 100644 index 717098298..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Headers/Capacitor.h +++ /dev/null @@ -1,15 +0,0 @@ -#import - -//! Project version number for bridge. -FOUNDATION_EXPORT double CapacitorVersionNumber; - -//! Project version string for bridge. -FOUNDATION_EXPORT const unsigned char CapacitorVersionString[]; - -#import -#import -#import -#import -#import -#import - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Info.plist b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Info.plist deleted file mode 100644 index 2840fde19..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Info.plist and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.abi.json b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 23c166d34..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,29764 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPCookiesPlugin", - "printedName": "CAPCookiesPlugin", - "children": [ - { - "kind": "Function", - "name": "load", - "printedName": "load()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)load", - "mangledName": "$s9Capacitor16CAPCookiesPluginC4loadyyF", - "moduleName": "Capacitor", - "overriding": true, - "objc_name": "load", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPCookiesPlugin", - "printedName": "Capacitor.CAPCookiesPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPCookiesPlugin", - "printedName": "Capacitor.CAPCookiesPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)init", - "mangledName": "$s9Capacitor16CAPCookiesPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin", - "mangledName": "$s9Capacitor16CAPCookiesPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPCookiesPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Router", - "printedName": "Router", - "children": [ - { - "kind": "Function", - "name": "route", - "printedName": "route(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor6RouterP5route3forS2S_tF", - "mangledName": "$s9Capacitor6RouterP5route3forS2S_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "basePath", - "printedName": "basePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor6RouterP8basePathSSvp", - "mangledName": "$s9Capacitor6RouterP8basePathSSvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvg", - "mangledName": "$s9Capacitor6RouterP8basePathSSvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvs", - "mangledName": "$s9Capacitor6RouterP8basePathSSvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvM", - "mangledName": "$s9Capacitor6RouterP8basePathSSvM", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor6RouterP", - "mangledName": "$s9Capacitor6RouterP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorRouter", - "printedName": "CapacitorRouter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorRouter", - "printedName": "Capacitor.CapacitorRouter", - "usr": "s:9Capacitor0A6RouterV" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A6RouterVACycfc", - "mangledName": "$s9Capacitor0A6RouterVACycfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "basePath", - "printedName": "basePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6RouterV8basePathSSvp", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvg", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvs", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvM", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "route", - "printedName": "route(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6RouterV5route3forS2S_tF", - "mangledName": "$s9Capacitor0A6RouterV5route3forS2S_tF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor0A6RouterV", - "mangledName": "$s9Capacitor0A6RouterV", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Router", - "printedName": "Router", - "usr": "s:9Capacitor6RouterP", - "mangledName": "$s9Capacitor6RouterP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorUrlRequest", - "printedName": "CapacitorUrlRequest", - "children": [ - { - "kind": "Var", - "name": "request", - "printedName": "request", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvp", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "headers", - "printedName": "headers", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvp", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvg", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvs", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvM", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorUrlRequestError", - "printedName": "CapacitorUrlRequestError", - "children": [ - { - "kind": "Var", - "name": "serializationError", - "printedName": "serializationError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError.Type) -> (Swift.String?) -> Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequestError", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequestError", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO013serializationD0yAESSSgcAEmF", - "mangledName": "$s9Capacitor0A10UrlRequestC0abC5ErrorO013serializationD0yAESSSgcAEmF", - "moduleName": "Capacitor" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO", - "mangledName": "$s9Capacitor0A10UrlRequestC0abC5ErrorO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:method:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc", - "mangledName": "$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getRequestDataAsJson", - "printedName": "getRequestDataAsJson(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsFormUrlEncoded", - "printedName": "getRequestDataAsFormUrlEncoded(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsMultipartFormData", - "printedName": "getRequestDataAsMultipartFormData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsString", - "printedName": "getRequestDataAsString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestHeader", - "printedName": "getRequestHeader(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestData", - "printedName": "getRequestData(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestHeaders", - "printedName": "setRequestHeaders(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestHeaders", - "printedName": "setRequestHeaders(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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": "s:9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestBody", - "printedName": "setRequestBody(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setContentType", - "printedName": "setContentType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC14setContentTypeyySSSgF", - "mangledName": "$s9Capacitor0A10UrlRequestC14setContentTypeyySSSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setTimeout", - "printedName": "setTimeout(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC10setTimeoutyySdF", - "mangledName": "$s9Capacitor0A10UrlRequestC10setTimeoutyySdF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUrlRequest", - "printedName": "getUrlRequest()", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "mangledName": "$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUrlSession", - "printedName": "getUrlSession(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest(im)init", - "mangledName": "$s9Capacitor0A10UrlRequestCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest", - "mangledName": "$s9Capacitor0A10UrlRequestC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "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": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Cordova", - "printedName": "Cordova", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeViewController", - "printedName": "CAPBridgeViewController", - "children": [ - { - "kind": "Var", - "name": "bridge", - "printedName": "bridge", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isStatusBarVisible", - "printedName": "isStatusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "supportedOrientations", - "printedName": "supportedOrientations", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)supportedOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "Custom", - "HasStorage", - "AccessControl", - "ObjC" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)supportedOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)setSupportedOrientations:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "isNewBinary", - "printedName": "isNewBinary", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "Lazy", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "loadView", - "printedName": "loadView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)loadView", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC04loadC0yyF", - "moduleName": "Capacitor", - "overriding": true, - "objc_name": "loadView", - "declAttributes": [ - "ObjC", - "Custom", - "Final", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "viewDidLoad", - "printedName": "viewDidLoad()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)viewDidLoad", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11viewDidLoadyyF", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "viewDidLoad", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canPerformUnwindSegueAction", - "printedName": "canPerformUnwindSegueAction(_:from:withSender:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Selector", - "printedName": "ObjectiveC.Selector", - "usr": "s:10ObjectiveC8SelectorV" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)canPerformUnwindSegueAction:fromViewController:withSender:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC27canPerformUnwindSegueAction_4from10withSenderSb10ObjectiveC8SelectorV_So06UIViewD0CyptF", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "canPerformUnwindSegueAction:fromViewController:withSender:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "instanceDescriptor", - "printedName": "instanceDescriptor()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceDescriptor", - "printedName": "Capacitor.InstanceDescriptor", - "usr": "c:objc(cs)CAPInstanceDescriptor" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "router", - "printedName": "router()", - "children": [ - { - "kind": "TypeNominal", - "name": "Router", - "printedName": "Capacitor.Router", - "usr": "s:9Capacitor6RouterP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webViewConfiguration", - "printedName": "webViewConfiguration(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(with:configuration:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "CGRect", - "printedName": "CoreFoundation.CGRect", - "usr": "c:@S@CGRect" - }, - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "capacitorDidLoad", - "printedName": "capacitorDidLoad()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadWebView", - "printedName": "loadWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarDefaults", - "printedName": "setStatusBarDefaults()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setScreenOrientationDefaults", - "printedName": "setScreenOrientationDefaults()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "prefersStatusBarHidden", - "printedName": "prefersStatusBarHidden", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)prefersStatusBarHidden", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "prefersStatusBarHidden", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)prefersStatusBarHidden", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "prefersStatusBarHidden", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)preferredStatusBarStyle", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)preferredStatusBarStyle", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "preferredStatusBarUpdateAnimation", - "printedName": "preferredStatusBarUpdateAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)preferredStatusBarUpdateAnimation", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC33preferredStatusBarUpdateAnimationSo08UIStatusgI0Vvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarUpdateAnimation", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)preferredStatusBarUpdateAnimation", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC33preferredStatusBarUpdateAnimationSo08UIStatusgI0Vvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarUpdateAnimation", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "supportedInterfaceOrientations", - "printedName": "supportedInterfaceOrientations", - "children": [ - { - "kind": "TypeNominal", - "name": "UIInterfaceOrientationMask", - "printedName": "UIKit.UIInterfaceOrientationMask", - "usr": "c:@E@UIInterfaceOrientationMask" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)supportedInterfaceOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "supportedInterfaceOrientations", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIInterfaceOrientationMask", - "printedName": "UIKit.UIInterfaceOrientationMask", - "usr": "c:@E@UIInterfaceOrientationMask" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)supportedInterfaceOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "supportedInterfaceOrientations", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nibName:bundle:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeViewController", - "printedName": "Capacitor.CAPBridgeViewController", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Bundle?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bundle", - "printedName": "Foundation.Bundle", - "usr": "c:objc(cs)NSBundle" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)initWithNibName:bundle:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "initWithNibName:bundle:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeViewController", - "printedName": "Capacitor.CAPBridgeViewController", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)initWithCoder:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "initWithCoder:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getServerBasePath", - "printedName": "getServerBasePath()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@objc(cs)CAPBridgeViewController(im)getServerBasePath", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "Custom", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(path:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@objc(cs)CAPBridgeViewController(im)setServerBasePathWithPath:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tF", - "moduleName": "Capacitor", - "objc_name": "setServerBasePathWithPath:", - "declAttributes": [ - "Dynamic", - "Custom", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "bridgedWebView", - "printedName": "bridgedWebView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgedViewController", - "printedName": "bridgedViewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)UIViewController", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIViewController", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CAPBridgeDelegate", - "printedName": "CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP" - }, - { - "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": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeProtocol", - "printedName": "CAPBridgeProtocol", - "children": [ - { - "kind": "Var", - "name": "viewController", - "printedName": "viewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)viewController", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14viewControllerSo06UIViewE0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)viewController", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14viewControllerSo06UIViewE0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "config", - "printedName": "config", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)config", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6configSo24CAPInstanceConfigurationCvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)config", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6configSo24CAPInstanceConfigurationCvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)webView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP7webViewSo05WKWebE0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)webView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP7webViewSo05WKWebE0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "notificationRouter", - "printedName": "notificationRouter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)notificationRouter", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18notificationRouterAA012NotificationE0Cvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)notificationRouter", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18notificationRouterAA012NotificationE0Cvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isSimEnvironment", - "printedName": "isSimEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)isSimEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isSimEnvironmentSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isSimEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isSimEnvironmentSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)isDevEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isDevEnvironmentSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isDevEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isDevEnvironmentSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "userInterfaceStyle", - "printedName": "userInterfaceStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)userInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18userInterfaceStyleSo06UIUsereF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)userInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18userInterfaceStyleSo06UIUsereF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "autoRegisterPlugins", - "printedName": "autoRegisterPlugins", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)autoRegisterPlugins", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19autoRegisterPluginsSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)autoRegisterPlugins", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19autoRegisterPluginsSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "statusBarVisible", - "printedName": "statusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarVisible:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarStyle:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarAnimation", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarAnimation", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarAnimation:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Function", - "name": "getWebView", - "printedName": "getWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getWebView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP10getWebViewSo05WKWebF0CSgyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isSimulator", - "printedName": "isSimulator()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isSimulator", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11isSimulatorSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isDevMode", - "printedName": "isDevMode()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isDevMode", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9isDevModeSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarVisible", - "printedName": "getStatusBarVisible()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getStatusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19getStatusBarVisibleSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarStyle", - "printedName": "getStatusBarStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getStatusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP17getStatusBarStyleSo08UIStatusfG0VyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUserInterfaceStyle", - "printedName": "getUserInterfaceStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getUserInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP21getUserInterfaceStyleSo06UIUserfG0VyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLocalUrl", - "printedName": "getLocalUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getLocalUrl", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11getLocalUrlSSyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSavedCall", - "printedName": "getSavedCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getSavedCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP12getSavedCallySo09CAPPluginF0CSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(callbackId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCallWithCallbackId:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCall10callbackIdySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "plugin", - "printedName": "plugin(withName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPlugin?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)pluginWithName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6plugin8withNameSo9CAPPluginCSgSS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "saveCall", - "printedName": "saveCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)saveCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP8saveCallyySo09CAPPluginE0CF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "savedCall", - "printedName": "savedCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)savedCallWithID:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9savedCall6withIDSo09CAPPluginE0CSgSS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCallyySo09CAPPluginE0CF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCallWithID:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCall6withIDySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "evalWithPlugin", - "printedName": "evalWithPlugin(_:js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)evalWithPlugin:js:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14evalWithPlugin_2jsySo9CAPPluginC_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "eval", - "printedName": "eval(js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)evalWithJs:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP4eval2jsySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerJSEventWithEventName:target:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14triggerJSEvent9eventName6targetySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:data:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerJSEventWithEventName:target:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14triggerJSEvent9eventName6target4dataySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerWindowJSEventWithEventName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP20triggerWindowJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerWindowJSEventWithEventName:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP20triggerWindowJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerDocumentJSEventWithEventName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22triggerDocumentJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerDocumentJSEventWithEventName:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22triggerDocumentJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "localURL", - "printedName": "localURL(fromWebURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)localURLFromWebURL:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP8localURL07fromWebE010Foundation0E0VSgAI_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "portablePath", - "printedName": "portablePath(fromLocalURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)portablePathFromLocalURL:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP12portablePath12fromLocalURL10Foundation0H0VSgAI_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setServerBasePath:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP17setServerBasePathyySSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginType", - "printedName": "registerPluginType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPPlugin.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)registerPluginType:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18registerPluginTypeyySo9CAPPluginCmF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginInstance", - "printedName": "registerPluginInstance(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)registerPluginInstance:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22registerPluginInstanceyySo9CAPPluginCF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showAlertWith", - "printedName": "showAlertWith(title:message:buttonTitle:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)showAlertWithTitle:message:buttonTitle:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP13showAlertWith5title7message11buttonTitleySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentVC", - "printedName": "presentVC(_:animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)presentVC:animated:completion:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissVC", - "printedName": "dismissVC(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)dismissVCWithAnimated:completion:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9dismissVC8animated10completionySb_yycSgtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "modulePrint", - "printedName": "modulePrint(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "alert", - "printedName": "alert(_:_:_:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorBridgeError", - "printedName": "CapacitorBridgeError", - "children": [ - { - "kind": "Var", - "name": "errorExportingCoreJS", - "printedName": "errorExportingCoreJS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CapacitorBridgeError.Type) -> Capacitor.CapacitorBridgeError", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorBridgeError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor0A11BridgeErrorO20errorExportingCoreJSyA2CmF", - "mangledName": "$s9Capacitor0A11BridgeErrorO20errorExportingCoreJSyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - }, - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO9hashValueSivp", - "mangledName": "$s9Capacitor0A11BridgeErrorO9hashValueSivp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO9hashValueSivg", - "mangledName": "$s9Capacitor0A11BridgeErrorO9hashValueSivg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF", - "moduleName": "Capacitor", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDomain", - "printedName": "errorDomain", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO11errorDomainSSvpZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO11errorDomainSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO11errorDomainSSvgZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZ", - "moduleName": "Capacitor", - "static": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorCode", - "printedName": "errorCode", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO9errorCodeSivp", - "mangledName": "$s9Capacitor0A11BridgeErrorO9errorCodeSivp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO9errorCodeSivg", - "mangledName": "$s9Capacitor0A11BridgeErrorO9errorCodeSivg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorUserInfo", - "printedName": "errorUserInfo", - "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": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvp", - "mangledName": "$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "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": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg", - "mangledName": "$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor0A11BridgeErrorO", - "mangledName": "$s9Capacitor0A11BridgeErrorO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "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": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomNSError", - "printedName": "CustomNSError", - "usr": "s:10Foundation13CustomNSErrorP", - "mangledName": "$s10Foundation13CustomNSErrorP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "WebViewDelegationHandler", - "printedName": "WebViewDelegationHandler", - "children": [ - { - "kind": "Var", - "name": "contentController", - "printedName": "contentController", - "children": [ - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvp", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorBridge?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "cleanUp", - "printedName": "cleanUp()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor24WebViewDelegationHandlerC7cleanUpyyF", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC7cleanUpyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "willLoadWebview", - "printedName": "willLoadWebview(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didStartProvisionalNavigation:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didStartProvisionalNavigation:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtF", - "moduleName": "Capacitor", - "objc_name": "webView:didStartProvisionalNavigation:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:requestMediaCapturePermissionFor:initiatedByFrame:type:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKSecurityOrigin", - "printedName": "WebKit.WKSecurityOrigin", - "usr": "c:objc(cs)WKSecurityOrigin" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeNominal", - "name": "WKMediaCaptureType", - "printedName": "WebKit.WKMediaCaptureType", - "usr": "c:@E@WKMediaCaptureType" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKPermissionDecision) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKPermissionDecision", - "printedName": "WebKit.WKPermissionDecision", - "usr": "c:@E@WKPermissionDecision" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctF", - "moduleName": "Capacitor", - "intro_iOS": "15", - "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:requestDeviceOrientationAndMotionPermissionFor:initiatedByFrame:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKSecurityOrigin", - "printedName": "WebKit.WKSecurityOrigin", - "usr": "c:objc(cs)WKSecurityOrigin" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKPermissionDecision) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKPermissionDecision", - "printedName": "WebKit.WKPermissionDecision", - "usr": "c:@E@WKPermissionDecision" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctF", - "moduleName": "Capacitor", - "intro_iOS": "15", - "objc_name": "webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:decidePolicyFor:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationAction", - "printedName": "WebKit.WKNavigationAction", - "usr": "c:objc(cs)WKNavigationAction" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKNavigationActionPolicy) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationActionPolicy", - "printedName": "WebKit.WKNavigationActionPolicy", - "usr": "c:@E@WKNavigationActionPolicy" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:decidePolicyForNavigationAction:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF", - "moduleName": "Capacitor", - "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFinish:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFinishNavigation:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtF", - "moduleName": "Capacitor", - "objc_name": "webView:didFinishNavigation:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFail:withError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFailNavigation:withError:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:didFailNavigation:withError:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFailProvisionalNavigation:withError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFailProvisionalNavigation:withError:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:didFailProvisionalNavigation:withError:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webViewWebContentProcessDidTerminate", - "printedName": "webViewWebContentProcessDidTerminate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webViewWebContentProcessDidTerminate:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CF", - "moduleName": "Capacitor", - "objc_name": "webViewWebContentProcessDidTerminate:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "userContentController", - "printedName": "userContentController(_:didReceive:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - }, - { - "kind": "TypeNominal", - "name": "WKScriptMessage", - "printedName": "WebKit.WKScriptMessage", - "usr": "c:objc(cs)WKScriptMessage" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)userContentController:didReceiveScriptMessage:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtF", - "moduleName": "Capacitor", - "objc_name": "userContentController:didReceiveScriptMessage:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:createWebViewWith:for:windowFeatures:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationAction", - "printedName": "WebKit.WKNavigationAction", - "usr": "c:objc(cs)WKNavigationAction" - }, - { - "kind": "TypeNominal", - "name": "WKWindowFeatures", - "printedName": "WebKit.WKWindowFeatures", - "usr": "c:objc(cs)WKWindowFeatures" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtF", - "moduleName": "Capacitor", - "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scrollViewWillBeginZooming", - "printedName": "scrollViewWillBeginZooming(_:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIScrollView", - "printedName": "UIKit.UIScrollView", - "usr": "c:objc(cs)UIScrollView" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIView?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)scrollViewWillBeginZooming:withView:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtF", - "moduleName": "Capacitor", - "objc_name": "scrollViewWillBeginZooming:withView:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)init", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewDelegationHandler", - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "JSValue", - "printedName": "JSValue", - "declKind": "Protocol", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "children": [ - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerP9getStringyS2S_SStF", - "mangledName": "$s9Capacitor17JSStringContainerP9getStringyS2S_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerP9getStringySSSgSSF", - "mangledName": "$s9Capacitor17JSStringContainerP9getStringySSSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF", - "mangledName": "$s9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "children": [ - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF", - "mangledName": "$s9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerP7getBoolySbSgSSF", - "mangledName": "$s9Capacitor15JSBoolContainerP7getBoolySbSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF", - "mangledName": "$s9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "children": [ - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerP6getIntySiSS_SitF", - "mangledName": "$s9Capacitor14JSIntContainerP6getIntySiSS_SitF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerP6getIntySiSgSSF", - "mangledName": "$s9Capacitor14JSIntContainerP6getIntySiSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF", - "mangledName": "$s9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "children": [ - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerP8getFloatySfSS_SftF", - "mangledName": "$s9Capacitor16JSFloatContainerP8getFloatySfSS_SftF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerP8getFloatySfSgSSF", - "mangledName": "$s9Capacitor16JSFloatContainerP8getFloatySfSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF", - "mangledName": "$s9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "children": [ - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF", - "mangledName": "$s9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerP9getDoubleySdSgSSF", - "mangledName": "$s9Capacitor17JSDoubleContainerP9getDoubleySdSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF", - "mangledName": "$s9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "children": [ - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF", - "mangledName": "$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSgSSF", - "mangledName": "$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF", - "mangledName": "$s9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "children": [ - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_1_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_1_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_1_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_1_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_1_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_1_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF", - "mangledName": "$s9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "children": [ - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSValueContainer", - "printedName": "JSValueContainer", - "children": [ - { - "kind": "Var", - "name": "jsDateFormatter", - "printedName": "jsDateFormatter", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvpZ", - "mangledName": "$s9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvpZ", - "moduleName": "Capacitor", - "static": true, - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvgZ", - "mangledName": "$s9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "jsObjectRepresentation", - "printedName": "jsObjectRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvp", - "mangledName": "$s9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvg", - "mangledName": "$s9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getValue", - "printedName": "getValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAny", - "printedName": "getAny(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getStringySSSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE6getIntySiSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE6getIntySiSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getArrayySayAA0B0_pGSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getArrayySayAA0B0_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSValueContainerP", - "mangledName": "$s9Capacitor16JSValueContainerP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : Capacitor.JSArrayContainer, τ_0_0 : Capacitor.JSBoolContainer, τ_0_0 : Capacitor.JSDateContainer, τ_0_0 : Capacitor.JSDoubleContainer, τ_0_0 : Capacitor.JSFloatContainer, τ_0_0 : Capacitor.JSIntContainer, τ_0_0 : Capacitor.JSObjectContainer, τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP" - }, - { - "kind": "Conformance", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP" - }, - { - "kind": "Conformance", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP" - }, - { - "kind": "Conformance", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP" - }, - { - "kind": "Conformance", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP" - }, - { - "kind": "Conformance", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP" - }, - { - "kind": "Conformance", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP" - }, - { - "kind": "Conformance", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "JSTypes", - "printedName": "JSTypes", - "children": [ - { - "kind": "Function", - "name": "coerceDictionaryToJSObject", - "printedName": "coerceDictionaryToJSObject(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "coerceDictionaryToJSObject", - "printedName": "coerceDictionaryToJSObject(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "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": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "coerceArrayToJSArray", - "printedName": "coerceArrayToJSArray(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor7JSTypesO", - "mangledName": "$s9Capacitor7JSTypesO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Cordova", - "printedName": "Cordova", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorBridge", - "printedName": "CapacitorBridge", - "children": [ - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC16isDevEnvironmentSbvpZ", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)webView", - "mangledName": "$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvp", - "moduleName": "Capacitor", - "objc_name": "webView", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)webView", - "mangledName": "$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvg", - "moduleName": "Capacitor", - "objc_name": "webView", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "autoRegisterPlugins", - "printedName": "autoRegisterPlugins", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)autoRegisterPlugins", - "mangledName": "$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvp", - "moduleName": "Capacitor", - "objc_name": "autoRegisterPlugins", - "declAttributes": [ - "Final", - "ObjC", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "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@Capacitor@objc(cs)CapacitorBridge(im)autoRegisterPlugins", - "mangledName": "$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "autoRegisterPlugins", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "notificationRouter", - "printedName": "notificationRouter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)notificationRouter", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvp", - "moduleName": "Capacitor", - "objc_name": "notificationRouter", - "declAttributes": [ - "ObjC", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)notificationRouter", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "notificationRouter", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setNotificationRouter:", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "isSimEnvironment", - "printedName": "isSimEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)isSimEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isSimEnvironmentSbvp", - "moduleName": "Capacitor", - "objc_name": "isSimEnvironment", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isSimEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isSimEnvironmentSbvg", - "moduleName": "Capacitor", - "objc_name": "isSimEnvironment", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)isDevEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvp", - "moduleName": "Capacitor", - "objc_name": "isDevEnvironment", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isDevEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvg", - "moduleName": "Capacitor", - "objc_name": "isDevEnvironment", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "userInterfaceStyle", - "printedName": "userInterfaceStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)userInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "userInterfaceStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)userInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "userInterfaceStyle", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "statusBarVisible", - "printedName": "statusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvp", - "moduleName": "Capacitor", - "objc_name": "statusBarVisible", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvg", - "moduleName": "Capacitor", - "objc_name": "statusBarVisible", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarVisible:", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarVisible:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC16statusBarVisibleSbvM", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "statusBarStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "statusBarStyle", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarStyle:", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarStyle:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarAnimation", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "statusBarAnimation", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarAnimation", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "statusBarAnimation", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarAnimation:", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarAnimation:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "capacitorSite", - "printedName": "capacitorSite", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC13capacitorSiteSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC13capacitorSiteSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC13capacitorSiteSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC13capacitorSiteSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fileStartIdentifier", - "printedName": "fileStartIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC19fileStartIdentifierSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC19fileStartIdentifierSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultScheme", - "printedName": "defaultScheme", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC13defaultSchemeSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC13defaultSchemeSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC13defaultSchemeSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC13defaultSchemeSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webViewAssetHandler", - "printedName": "webViewAssetHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvp", - "mangledName": "$s9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvg", - "mangledName": "$s9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webViewDelegationHandler", - "printedName": "webViewDelegationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvp", - "mangledName": "$s9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvg", - "mangledName": "$s9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgeDelegate", - "printedName": "bridgeDelegate", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.CAPBridgeDelegate?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvp", - "mangledName": "$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "SetterAccess", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeDelegate?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeDelegate", - "printedName": "Capacitor.CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg", - "mangledName": "$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "viewController", - "printedName": "viewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)viewController", - "mangledName": "$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvp", - "moduleName": "Capacitor", - "objc_name": "viewController", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)viewController", - "mangledName": "$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvg", - "moduleName": "Capacitor", - "objc_name": "viewController", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "config", - "printedName": "config", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)config", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvp", - "moduleName": "Capacitor", - "objc_name": "config", - "declAttributes": [ - "ObjC", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)config", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "config", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setConfig:", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "getWebView", - "printedName": "getWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getWebView", - "mangledName": "$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyF", - "moduleName": "Capacitor", - "objc_name": "getWebView", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isSimulator", - "printedName": "isSimulator()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isSimulator", - "mangledName": "$s9Capacitor0A6BridgeC11isSimulatorSbyF", - "moduleName": "Capacitor", - "objc_name": "isSimulator", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isDevMode", - "printedName": "isDevMode()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isDevMode", - "mangledName": "$s9Capacitor0A6BridgeC9isDevModeSbyF", - "moduleName": "Capacitor", - "objc_name": "isDevMode", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarVisible", - "printedName": "getStatusBarVisible()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getStatusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyF", - "moduleName": "Capacitor", - "objc_name": "getStatusBarVisible", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor0A6BridgeC19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarStyle", - "printedName": "getStatusBarStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getStatusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyF", - "moduleName": "Capacitor", - "objc_name": "getStatusBarStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF", - "mangledName": "$s9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUserInterfaceStyle", - "printedName": "getUserInterfaceStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getUserInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyF", - "moduleName": "Capacitor", - "objc_name": "getUserInterfaceStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLocalUrl", - "printedName": "getLocalUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getLocalUrl", - "mangledName": "$s9Capacitor0A6BridgeC11getLocalUrlSSyF", - "moduleName": "Capacitor", - "objc_name": "getLocalUrl", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF", - "mangledName": "$s9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setServerBasePath:", - "mangledName": "$s9Capacitor0A6BridgeC17setServerBasePathyySSF", - "moduleName": "Capacitor", - "objc_name": "setServerBasePath:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(with:delegate:cordovaConfiguration:assetHandler:delegationHandler:autoRegisterPlugins:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeDelegate", - "printedName": "Capacitor.CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP" - }, - { - "kind": "TypeNominal", - "name": "CDVConfigParser", - "printedName": "Cordova.CDVConfigParser", - "usr": "c:objc(cs)CDVConfigParser" - }, - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - }, - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc", - "mangledName": "$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "registerPluginType", - "printedName": "registerPluginType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPPlugin.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)registerPluginType:", - "mangledName": "$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmF", - "moduleName": "Capacitor", - "objc_name": "registerPluginType:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginInstance", - "printedName": "registerPluginInstance(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)registerPluginInstance:", - "mangledName": "$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCF", - "moduleName": "Capacitor", - "objc_name": "registerPluginInstance:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "plugin", - "printedName": "plugin(withName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPlugin?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)pluginWithName:", - "mangledName": "$s9Capacitor0A6BridgeC6plugin8withNameSo9CAPPluginCSgSS_tF", - "moduleName": "Capacitor", - "objc_name": "pluginWithName:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "saveCall", - "printedName": "saveCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)saveCall:", - "mangledName": "$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CF", - "moduleName": "Capacitor", - "objc_name": "saveCall:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "savedCall", - "printedName": "savedCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)savedCallWithID:", - "mangledName": "$s9Capacitor0A6BridgeC9savedCall6withIDSo09CAPPluginD0CSgSS_tF", - "moduleName": "Capacitor", - "objc_name": "savedCallWithID:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCall:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CF", - "moduleName": "Capacitor", - "objc_name": "releaseCall:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCallWithID:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCall6withIDySS_tF", - "moduleName": "Capacitor", - "objc_name": "releaseCallWithID:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSavedCall", - "printedName": "getSavedCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getSavedCall:", - "mangledName": "$s9Capacitor0A6BridgeC12getSavedCallySo09CAPPluginE0CSgSSF", - "moduleName": "Capacitor", - "objc_name": "getSavedCall:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(callbackId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCallWithCallbackId:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCall10callbackIdySS_tF", - "moduleName": "Capacitor", - "objc_name": "releaseCallWithCallbackId:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "evalWithPlugin", - "printedName": "evalWithPlugin(_:js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)evalWithPlugin:js:", - "mangledName": "$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStF", - "moduleName": "Capacitor", - "objc_name": "evalWithPlugin:js:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "eval", - "printedName": "eval(js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)evalWithJs:", - "mangledName": "$s9Capacitor0A6BridgeC4eval2jsySS_tF", - "moduleName": "Capacitor", - "objc_name": "evalWithJs:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerJSEventWithEventName:target:", - "mangledName": "$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerJSEventWithEventName:target:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:data:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerJSEventWithEventName:target:data:", - "mangledName": "$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6target4dataySS_S2StF", - "moduleName": "Capacitor", - "objc_name": "triggerJSEventWithEventName:target:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerWindowJSEventWithEventName:", - "mangledName": "$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "objc_name": "triggerWindowJSEventWithEventName:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerWindowJSEventWithEventName:data:", - "mangledName": "$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerWindowJSEventWithEventName:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerDocumentJSEventWithEventName:", - "mangledName": "$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "objc_name": "triggerDocumentJSEventWithEventName:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerDocumentJSEventWithEventName:data:", - "mangledName": "$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerDocumentJSEventWithEventName:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logToJs", - "printedName": "logToJs(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC7logToJsyySS_SStF", - "mangledName": "$s9Capacitor0A6BridgeC7logToJsyySS_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "localURL", - "printedName": "localURL(fromWebURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)localURLFromWebURL:", - "mangledName": "$s9Capacitor0A6BridgeC8localURL07fromWebD010Foundation0D0VSgAI_tF", - "moduleName": "Capacitor", - "objc_name": "localURLFromWebURL:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "portablePath", - "printedName": "portablePath(fromLocalURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)portablePathFromLocalURL:", - "mangledName": "$s9Capacitor0A6BridgeC12portablePath12fromLocalURL10Foundation0G0VSgAI_tF", - "moduleName": "Capacitor", - "objc_name": "portablePathFromLocalURL:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showAlertWith", - "printedName": "showAlertWith(title:message:buttonTitle:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)showAlertWithTitle:message:buttonTitle:", - "mangledName": "$s9Capacitor0A6BridgeC13showAlertWith5title7message11buttonTitleySS_S2StF", - "moduleName": "Capacitor", - "objc_name": "showAlertWithTitle:message:buttonTitle:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentVC", - "printedName": "presentVC(_:animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)presentVC:animated:completion:", - "mangledName": "$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF", - "moduleName": "Capacitor", - "objc_name": "presentVC:animated:completion:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissVC", - "printedName": "dismissVC(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)dismissVCWithAnimated:completion:", - "mangledName": "$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtF", - "moduleName": "Capacitor", - "objc_name": "dismissVCWithAnimated:completion:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)init", - "mangledName": "$s9Capacitor0A6BridgeCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge", - "mangledName": "$s9Capacitor0A6BridgeC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CAPBridgeProtocol", - "printedName": "CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP" - }, - { - "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": "TypeDecl", - "name": "CAPInstancePlugin", - "printedName": "CAPInstancePlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPInstancePlugin", - "printedName": "Capacitor.CAPInstancePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPInstancePlugin", - "printedName": "Capacitor.CAPInstancePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin(im)init", - "mangledName": "$s9Capacitor17CAPInstancePluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin", - "mangledName": "$s9Capacitor17CAPInstancePluginC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorWKCookieObserver", - "printedName": "CapacitorWKCookieObserver", - "children": [ - { - "kind": "Function", - "name": "cookiesDidChange", - "printedName": "cookiesDidChange(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKHTTPCookieStore", - "printedName": "WebKit.WKHTTPCookieStore", - "usr": "c:objc(cs)WKHTTPCookieStore" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver(im)cookiesDidChangeInCookieStore:", - "mangledName": "$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tF", - "moduleName": "Capacitor", - "objc_name": "cookiesDidChangeInCookieStore:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorWKCookieObserver", - "printedName": "Capacitor.CapacitorWKCookieObserver", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver(im)init", - "mangledName": "$s9Capacitor0A16WKCookieObserverCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver", - "mangledName": "$s9Capacitor0A16WKCookieObserverC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "TypeDecl", - "name": "CapacitorCookieManager", - "printedName": "CapacitorCookieManager", - "children": [ - { - "kind": "Function", - "name": "getServerUrl", - "printedName": "getServerUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF", - "mangledName": "$s9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getServerUrl", - "printedName": "getServerUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF", - "mangledName": "$s9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC6encodeyS2SF", - "mangledName": "$s9Capacitor0A13CookieManagerC6encodeyS2SF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decode", - "printedName": "decode(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC6decodeyS2SF", - "mangledName": "$s9Capacitor0A13CookieManagerC6decodeyS2SF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setCookie", - "printedName": "setCookie(_:_:)", - "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" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC03setB0yySS_SStF", - "mangledName": "$s9Capacitor0A13CookieManagerC03setB0yySS_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setCookie", - "printedName": "setCookie(_:_:_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF", - "mangledName": "$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getCookiesAsMap", - "printedName": "getCookiesAsMap(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF", - "mangledName": "$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getCookies", - "printedName": "getCookies()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC10getCookiesSSyF", - "mangledName": "$s9Capacitor0A13CookieManagerC10getCookiesSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteCookie", - "printedName": "deleteCookie(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF", - "mangledName": "$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearCookies", - "printedName": "clearCookies(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF", - "mangledName": "$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearAllCookies", - "printedName": "clearAllCookies()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC15clearAllCookiesyyF", - "mangledName": "$s9Capacitor0A13CookieManagerC15clearAllCookiesyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "syncCookiesToWebView", - "printedName": "syncCookiesToWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF", - "mangledName": "$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor0A13CookieManagerC", - "mangledName": "$s9Capacitor0A13CookieManagerC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "CAPFileManager", - "printedName": "CAPFileManager", - "children": [ - { - "kind": "Function", - "name": "getPortablePath", - "printedName": "getPortablePath(host:uri:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ", - "mangledName": "$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ", - "moduleName": "Capacitor", - "static": true, - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPFileManager", - "printedName": "Capacitor.CAPFileManager", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager(im)init", - "mangledName": "$s9Capacitor14CAPFileManagerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager", - "mangledName": "$s9Capacitor14CAPFileManagerC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridge", - "printedName": "CAPBridge", - "children": [ - { - "kind": "Var", - "name": "statusBarTappedNotification", - "printedName": "statusBarTappedNotification", - "children": [ - { - "kind": "TypeNominal", - "name": "Notification", - "printedName": "Foundation.Notification", - "usr": "s:10Foundation12NotificationV" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(cpy)statusBarTappedNotification", - "mangledName": "$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Notification", - "printedName": "Foundation.Notification", - "usr": "s:10Foundation12NotificationV" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(cm)statusBarTappedNotification", - "mangledName": "$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getLastUrl", - "printedName": "getLastUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ", - "mangledName": "$s9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleOpenUrl", - "printedName": "handleOpenUrl(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenURLOptionsKey", - "usr": "c:@T@UIApplicationOpenURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ", - "mangledName": "$s9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleContinueActivity", - "printedName": "handleContinueActivity(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "NSUserActivity", - "printedName": "Foundation.NSUserActivity", - "usr": "c:objc(cs)NSUserActivity" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([UIKit.UIUserActivityRestoring]?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[UIKit.UIUserActivityRestoring]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[UIKit.UIUserActivityRestoring]", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserActivityRestoring", - "printedName": "UIKit.UIUserActivityRestoring", - "usr": "c:objc(pl)UIUserActivityRestoring" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ", - "mangledName": "$s9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleAppBecameActive", - "printedName": "handleAppBecameActive(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ", - "mangledName": "$s9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridge", - "printedName": "Capacitor.CAPBridge", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(im)init", - "mangledName": "$s9Capacitor9CAPBridgeCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge", - "mangledName": "$s9Capacitor9CAPBridgeC", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "PluginCallResult", - "printedName": "PluginCallResult", - "children": [ - { - "kind": "Var", - "name": "dictionary", - "printedName": "dictionary", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.PluginCallResult.Type) -> ([Swift.String : Any]) -> Capacitor.PluginCallResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.String : Any]) -> Capacitor.PluginCallResult", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - }, - { - "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" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.PluginCallResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor16PluginCallResultO10dictionaryyACSDySSypGcACmF", - "mangledName": "$s9Capacitor16PluginCallResultO10dictionaryyACSDySSypGcACmF", - "moduleName": "Capacitor" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor16PluginCallResultO", - "mangledName": "$s9Capacitor16PluginCallResultO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CAPPluginCallResult", - "printedName": "CAPPluginCallResult", - "children": [ - { - "kind": "Var", - "name": "resultData", - "printedName": "resultData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvp", - "mangledName": "$s9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvg", - "mangledName": "$s9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "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@Capacitor@objc(cs)CAPPluginCallResult(py)data", - "mangledName": "$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "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@Capacitor@objc(cs)CAPPluginCallResult(im)data", - "mangledName": "$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallResult", - "printedName": "Capacitor.CAPPluginCallResult", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult" - }, - { - "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": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult(im)init:", - "mangledName": "$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfc", - "moduleName": "Capacitor", - "objc_name": "init:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallResult", - "printedName": "Capacitor.CAPPluginCallResult", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult(im)init", - "mangledName": "$s9Capacitor19CAPPluginCallResultCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult", - "mangledName": "$s9Capacitor19CAPPluginCallResultC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "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": "TypeDecl", - "name": "CAPPluginCallError", - "printedName": "CAPPluginCallError", - "children": [ - { - "kind": "Var", - "name": "message", - "printedName": "message", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)message", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7messageSSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "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": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)message", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7messageSSvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "code", - "printedName": "code", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)code", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4codeSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)code", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4codeSSSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)error", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)error", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "resultData", - "printedName": "resultData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvp", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvg", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "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@Capacitor@objc(cs)CAPPluginCallError(py)data", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "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@Capacitor@objc(cs)CAPPluginCallError(im)data", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(message:code:error:data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallError", - "printedName": "Capacitor.CAPPluginCallError", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "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": "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": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)init:code:error:data:", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfc", - "moduleName": "Capacitor", - "objc_name": "init:code:error:data:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallError", - "printedName": "Capacitor.CAPPluginCallError", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)init", - "mangledName": "$s9Capacitor18CAPPluginCallErrorCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "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": "TypeDecl", - "name": "CAPNotifications", - "printedName": "CAPNotifications", - "children": [ - { - "kind": "Var", - "name": "URLOpen", - "printedName": "URLOpen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsURLOpen", - "mangledName": "$s9Capacitor16CAPNotificationsO7URLOpenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "UniversalLinkOpen", - "printedName": "UniversalLinkOpen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsUniversalLinkOpen", - "mangledName": "$s9Capacitor16CAPNotificationsO17UniversalLinkOpenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "ContinueActivity", - "printedName": "ContinueActivity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsContinueActivity", - "mangledName": "$s9Capacitor16CAPNotificationsO16ContinueActivityyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "DidRegisterForRemoteNotificationsWithDeviceToken", - "printedName": "DidRegisterForRemoteNotificationsWithDeviceToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDidRegisterForRemoteNotificationsWithDeviceToken", - "mangledName": "$s9Capacitor16CAPNotificationsO48DidRegisterForRemoteNotificationsWithDeviceTokenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "DidFailToRegisterForRemoteNotificationsWithError", - "printedName": "DidFailToRegisterForRemoteNotificationsWithError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDidFailToRegisterForRemoteNotificationsWithError", - "mangledName": "$s9Capacitor16CAPNotificationsO48DidFailToRegisterForRemoteNotificationsWithErroryA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "DecidePolicyForNavigationAction", - "printedName": "DecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDecidePolicyForNavigationAction", - "mangledName": "$s9Capacitor16CAPNotificationsO31DecidePolicyForNavigationActionyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Function", - "name": "name", - "printedName": "name()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16CAPNotificationsO4nameSSyF", - "mangledName": "$s9Capacitor16CAPNotificationsO4nameSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPNotifications?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfc", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfc", - "moduleName": "Capacitor", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueSivp", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueSivp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueSivg", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueSivg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@Capacitor@E@CAPNotifications", - "mangledName": "$s9Capacitor16CAPNotificationsO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "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": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "JSDate", - "printedName": "JSDate", - "declKind": "Class", - "usr": "s:9Capacitor6JSDateC", - "mangledName": "$s9Capacitor6JSDateC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "NotificationRouter", - "printedName": "NotificationRouter", - "children": [ - { - "kind": "Var", - "name": "pushNotificationHandler", - "printedName": "pushNotificationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.NotificationHandlerProtocol?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvp", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvg", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvs", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "localNotificationHandler", - "printedName": "localNotificationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.NotificationHandlerProtocol?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvp", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvg", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvs", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "userNotificationCenter", - "printedName": "userNotificationCenter(_:willPresent:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNUserNotificationCenter", - "printedName": "UserNotifications.UNUserNotificationCenter", - "usr": "c:objc(cs)UNUserNotificationCenter" - }, - { - "kind": "TypeNominal", - "name": "UNNotification", - "printedName": "UserNotifications.UNNotification", - "usr": "c:objc(cs)UNNotification" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationPresentationOptions", - "printedName": "UserNotifications.UNNotificationPresentationOptions", - "usr": "c:@E@UNNotificationPresentationOptions" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)userNotificationCenter:willPresentNotification:withCompletionHandler:", - "mangledName": "$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF", - "moduleName": "Capacitor", - "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "userNotificationCenter", - "printedName": "userNotificationCenter(_:didReceive:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNUserNotificationCenter", - "printedName": "UserNotifications.UNUserNotificationCenter", - "usr": "c:objc(cs)UNUserNotificationCenter" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "mangledName": "$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF", - "moduleName": "Capacitor", - "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)init", - "mangledName": "$s9Capacitor18NotificationRouterCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter", - "mangledName": "$s9Capacitor18NotificationRouterC", - "moduleName": "Capacitor", - "objc_name": "CAPNotificationRouter", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "AssociatedType", - "name": "CapacitorType", - "printedName": "CapacitorType", - "declKind": "AssociatedType", - "usr": "s:9Capacitor0A9ExtensionP0A4TypeQa", - "mangledName": "$s9Capacitor0A9ExtensionP0A4TypeQa", - "moduleName": "Capacitor", - "protocolReq": true - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzvp", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzvg", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.CapacitorType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ] - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvpZ", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvpZ", - "moduleName": "Capacitor", - "static": true, - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.CapacitorType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvgZ", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvp", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvp", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvpZ", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvpZ", - "moduleName": "Capacitor", - "static": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "Var", - "name": "keyboardShouldRequireUserInteraction", - "printedName": "keyboardShouldRequireUserInteraction", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvp", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvp", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == WebKit.WKWebView>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setKeyboardShouldRequireUserInteraction", - "printedName": "setKeyboardShouldRequireUserInteraction(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == WebKit.WKWebView>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "data", - "printedName": "data(base64EncodedOrDataUrl:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == Foundation.Data>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(r:g:b:a:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(argb:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(fromHex:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIColor?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingNullValues", - "printedName": "replacingNullValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue?]", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingOptionalValues", - "printedName": "replacingOptionalValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingNullValues", - "printedName": "replacingNullValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue?]", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE19replacingNullValuesAFyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE19replacingNullValuesAFyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue?]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingOptionalValues", - "printedName": "replacingOptionalValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue?]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperV", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "ResponseType", - "printedName": "ResponseType", - "children": [ - { - "kind": "Var", - "name": "arrayBuffer", - "printedName": "arrayBuffer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO11arrayBufferyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO11arrayBufferyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "blob", - "printedName": "blob", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4blobyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4blobyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "document", - "printedName": "document", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO8documentyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO8documentyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "json", - "printedName": "json", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4jsonyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4jsonyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "text", - "printedName": "text", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4textyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4textyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor12ResponseTypeO7defaultACvpZ", - "mangledName": "$s9Capacitor12ResponseTypeO7defaultACvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor12ResponseTypeO7defaultACvgZ", - "mangledName": "$s9Capacitor12ResponseTypeO7defaultACvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor12ResponseTypeO6stringACSSSg_tcfc", - "mangledName": "$s9Capacitor12ResponseTypeO6stringACSSSg_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.ResponseType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor12ResponseTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueACSgSS_tcfc", - "moduleName": "Capacitor", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor12ResponseTypeO8rawValueSSvp", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueSSvp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor12ResponseTypeO8rawValueSSvg", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueSSvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor12ResponseTypeO", - "mangledName": "$s9Capacitor12ResponseTypeO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "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": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "HttpRequestHandler", - "printedName": "HttpRequestHandler", - "children": [ - { - "kind": "TypeDecl", - "name": "CapacitorHttpRequestBuilder", - "printedName": "CapacitorHttpRequestBuilder", - "children": [ - { - "kind": "Var", - "name": "url", - "printedName": "url", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "method", - "printedName": "method", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "params", - "printedName": "params", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "request", - "printedName": "request", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvp", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setUrl", - "printedName": "setUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setMethod", - "printedName": "setMethod(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setUrlParams", - "printedName": "setUrlParams(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "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": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openConnection", - "printedName": "openConnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "build", - "printedName": "build()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Function", - "name": "setCookiesFromResponse", - "printedName": "setCookiesFromResponse(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.InstanceConfiguration?", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "buildResponse", - "printedName": "buildResponse(_:_:responseType:)", - "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" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "hasDefaultArg": true, - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "request", - "printedName": "request(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.InstanceConfiguration?", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor18HttpRequestHandlerC", - "mangledName": "$s9Capacitor18HttpRequestHandlerC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "NotificationHandlerProtocol", - "printedName": "NotificationHandlerProtocol", - "children": [ - { - "kind": "Function", - "name": "willPresent", - "printedName": "willPresent(notification:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UNNotificationPresentationOptions", - "printedName": "UserNotifications.UNNotificationPresentationOptions", - "usr": "c:@E@UNNotificationPresentationOptions" - }, - { - "kind": "TypeNominal", - "name": "UNNotification", - "printedName": "UserNotifications.UNNotification", - "usr": "c:objc(cs)UNNotification" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol(im)willPresentWithNotification:", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP11willPresent12notificationSo33UNNotificationPresentationOptionsVSo0H0C_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.NotificationHandlerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceive", - "printedName": "didReceive(response:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol(im)didReceiveWithResponse:", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP10didReceive8responseySo22UNNotificationResponseC_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.NotificationHandlerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "objc_name": "CAPNotificationHandlerProtocol", - "declAttributes": [ - "AccessControl", - "ObjC" - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "AppUUID", - "printedName": "AppUUID", - "children": [ - { - "kind": "Function", - "name": "getAppUUID", - "printedName": "getAppUUID()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7AppUUIDC03getbC0SSyFZ", - "mangledName": "$s9Capacitor7AppUUIDC03getbC0SSyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "regenerateAppUUID", - "printedName": "regenerateAppUUID()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7AppUUIDC010regeneratebC0yyFZ", - "mangledName": "$s9Capacitor7AppUUIDC010regeneratebC0yyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor7AppUUIDC", - "mangledName": "$s9Capacitor7AppUUIDC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "WebViewAssetHandler", - "printedName": "WebViewAssetHandler", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(router:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - }, - { - "kind": "TypeNominal", - "name": "Router", - "printedName": "Capacitor.Router", - "usr": "s:9Capacitor6RouterP" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setAssetPath", - "printedName": "setAssetPath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor19WebViewAssetHandlerC03setD4PathyySSF", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03setD4PathyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerUrl", - "printedName": "setServerUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:start:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKURLSchemeTask", - "printedName": "WebKit.WKURLSchemeTask", - "usr": "c:objc(pl)WKURLSchemeTask" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)webView:startURLSchemeTask:", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:startURLSchemeTask:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:stop:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKURLSchemeTask", - "printedName": "WebKit.WKURLSchemeTask", - "usr": "c:objc(pl)WKURLSchemeTask" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)webView:stopURLSchemeTask:", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:stopURLSchemeTask:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)init", - "mangledName": "$s9Capacitor19WebViewAssetHandlerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewAssetHandler", - "declAttributes": [ - "AccessControl", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPHttpPlugin", - "printedName": "CAPHttpPlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPHttpPlugin", - "printedName": "Capacitor.CAPHttpPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPHttpPlugin", - "printedName": "Capacitor.CAPHttpPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin(im)init", - "mangledName": "$s9Capacitor13CAPHttpPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin", - "mangledName": "$s9Capacitor13CAPHttpPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPHttpPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "PluginConfig", - "printedName": "PluginConfig", - "children": [ - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getString::", - "mangledName": "$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBoolean", - "printedName": "getBoolean(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getBoolean::", - "mangledName": "$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getInt::", - "mangledName": "$s9Capacitor12PluginConfigC6getIntySiSS_SitF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF", - "mangledName": "$s9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isEmpty", - "printedName": "isEmpty()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)isEmpty", - "mangledName": "$s9Capacitor12PluginConfigC7isEmptySbyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getConfigJSON", - "printedName": "getConfigJSON()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF", - "mangledName": "$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginConfig", - "printedName": "Capacitor.PluginConfig", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)init", - "mangledName": "$s9Capacitor12PluginConfigCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig", - "mangledName": "$s9Capacitor12PluginConfigC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": 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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeDelegate", - "printedName": "CAPBridgeDelegate", - "children": [ - { - "kind": "Var", - "name": "bridgedWebView", - "printedName": "bridgedWebView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvp", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvg", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgedViewController", - "printedName": "bridgedViewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvp", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvg", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17CAPBridgeDelegateP", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "KeyPath", - "printedName": "KeyPath", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(stringLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV13stringLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV13stringLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(unicodeScalarLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV20unicodeScalarLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV20unicodeScalarLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(extendedGraphemeClusterLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV30extendedGraphemeClusterLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV30extendedGraphemeClusterLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor7KeyPathV", - "mangledName": "$s9Capacitor7KeyPathV", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPConsolePlugin", - "printedName": "CAPConsolePlugin", - "children": [ - { - "kind": "Function", - "name": "log", - "printedName": "log(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)log:", - "mangledName": "$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPConsolePlugin", - "printedName": "Capacitor.CAPConsolePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPConsolePlugin", - "printedName": "Capacitor.CAPConsolePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)init", - "mangledName": "$s9Capacitor16CAPConsolePluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin", - "mangledName": "$s9Capacitor16CAPConsolePluginC", - "moduleName": "Capacitor", - "objc_name": "CAPConsolePlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "TypeDecl", - "name": "CAPLog", - "printedName": "CAPLog", - "children": [ - { - "kind": "Var", - "name": "enableLogging", - "printedName": "enableLogging", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvpZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvgZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvsZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvsZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvMZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvMZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "print", - "printedName": "print(_:separator:terminator:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ", - "mangledName": "$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor6CAPLogC", - "mangledName": "$s9Capacitor6CAPLogC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "InstanceDescriptorDefaults", - "printedName": "InstanceDescriptorDefaults", - "children": [ - { - "kind": "Var", - "name": "scheme", - "printedName": "scheme", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ", - "moduleName": "Capacitor", - "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:9Capacitor26InstanceDescriptorDefaultsO6schemeSSvgZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hostname", - "printedName": "hostname", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ", - "moduleName": "Capacitor", - "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:9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvgZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "ApplicationDelegateProxy", - "printedName": "ApplicationDelegateProxy", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24ApplicationDelegateProxyC6sharedACvpZ", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC6sharedACvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "Custom", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24ApplicationDelegateProxyC6sharedACvgZ", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC6sharedACvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastURL", - "printedName": "lastURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvp", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "application", - "printedName": "application(_:open:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenURLOptionsKey", - "usr": "c:@T@UIApplicationOpenURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)application:openURL:options:", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", - "moduleName": "Capacitor", - "objc_name": "application:openURL:options:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "application", - "printedName": "application(_:continue:restorationHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - }, - { - "kind": "TypeNominal", - "name": "NSUserActivity", - "printedName": "Foundation.NSUserActivity", - "usr": "c:objc(cs)NSUserActivity" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([UIKit.UIUserActivityRestoring]?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[UIKit.UIUserActivityRestoring]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[UIKit.UIUserActivityRestoring]", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserActivityRestoring", - "printedName": "UIKit.UIUserActivityRestoring", - "usr": "c:objc(pl)UIUserActivityRestoring" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)application:continueUserActivity:restorationHandler:", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctF", - "moduleName": "Capacitor", - "objc_name": "application:continueUserActivity:restorationHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)init", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC", - "moduleName": "Capacitor", - "objc_name": "CAPApplicationDelegateProxy", - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPWebViewPlugin", - "printedName": "CAPWebViewPlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPWebViewPlugin", - "printedName": "Capacitor.CAPWebViewPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPWebViewPlugin", - "printedName": "Capacitor.CAPWebViewPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin(im)init", - "mangledName": "$s9Capacitor16CAPWebViewPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin", - "mangledName": "$s9Capacitor16CAPWebViewPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "TypeDecl", - "name": "WKWebView", - "printedName": "WKWebView", - "declKind": "Class", - "usr": "c:objc(cs)WKWebView", - "moduleName": "WebKit", - "isOpen": true, - "intro_iOS": "8.0", - "objc_name": "WKWebView", - "declAttributes": [ - "Custom", - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIView", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIView", - "UIKit.UIResponder", - "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": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Data", - "printedName": "Data", - "children": [ - { - "kind": "Var", - "name": "sha256", - "printedName": "sha256", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10Foundation4DataV9CapacitorE6sha256SSvp", - "mangledName": "$s10Foundation4DataV9CapacitorE6sha256SSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10Foundation4DataV9CapacitorE6sha256SSvg", - "mangledName": "$s10Foundation4DataV9CapacitorE6sha256SSvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DataV", - "mangledName": "$s10Foundation4DataV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Frozen", - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "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": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, - { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bool", - "printedName": "Bool", - "declKind": "Struct", - "usr": "s:Sb", - "mangledName": "$sSb", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinBooleanLiteral", - "printedName": "_ExpressibleByBuiltinBooleanLiteral", - "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "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": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Int", - "printedName": "Int", - "declKind": "Struct", - "usr": "s:Si", - "mangledName": "$sSi", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ - { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", - "children": [ - { - "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int.Words", - "usr": "s:Si5WordsV" - } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int.SIMD2Storage", - "usr": "s:Si12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int.SIMD4Storage", - "usr": "s:Si12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int.SIMD8Storage", - "usr": "s:Si12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int.SIMD16Storage", - "usr": "s:Si13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int.SIMD32Storage", - "usr": "s:Si13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int.SIMD64Storage", - "usr": "s:Si13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNumber", - "printedName": "NSNumber", - "declKind": "Class", - "usr": "c:objc(cs)NSNumber", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNumber", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSValue", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Foundation.NSValue", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNull", - "printedName": "NSNull", - "declKind": "Class", - "usr": "c:objc(cs)NSNull", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNull", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" - }, - { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, - { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", - "children": [ - { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" - } - ] - } - ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", - "children": [ - { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" - } - ] - } - ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Date", - "printedName": "Date", - "declKind": "Struct", - "usr": "s:10Foundation4DateV", - "mangledName": "$s10Foundation4DateV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(keyPath:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - } - ], - "declKind": "Subscript", - "usr": "s:SD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcip", - "mangledName": "$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcip", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 == Swift.String, τ_0_1 == Capacitor.JSValue>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - } - ], - "declKind": "Accessor", - "usr": "s:SD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig", - "mangledName": "$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 == Swift.String, τ_0_1 == Capacitor.JSValue>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:s5SliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIColor", - "printedName": "UIColor", - "declKind": "Class", - "usr": "c:objc(cs)UIColor", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIColor", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByColorLiteral", - "printedName": "_ExpressibleByColorLiteral", - "usr": "s:s26_ExpressibleByColorLiteralP", - "mangledName": "$ss26_ExpressibleByColorLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "capacitorOpenURL", - "printedName": "capacitorOpenURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE16capacitorOpenURLABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorOpenUniversalLink", - "printedName": "capacitorOpenUniversalLink", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorContinueActivity", - "printedName": "capacitorContinueActivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidRegisterForRemoteNotifications", - "printedName": "capacitorDidRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidFailToRegisterForRemoteNotifications", - "printedName": "capacitorDidFailToRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDecidePolicyForNavigationAction", - "printedName": "capacitorDecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorStatusBarTapped", - "printedName": "capacitorStatusBarTapped", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNotification", - "printedName": "NSNotification", - "children": [ - { - "kind": "Var", - "name": "capacitorOpenURL", - "printedName": "capacitorOpenURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorOpenURL", - "mangledName": "$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorOpenURL", - "mangledName": "$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorOpenUniversalLink", - "printedName": "capacitorOpenUniversalLink", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorOpenUniversalLink", - "mangledName": "$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorOpenUniversalLink", - "mangledName": "$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorContinueActivity", - "printedName": "capacitorContinueActivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorContinueActivity", - "mangledName": "$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorContinueActivity", - "mangledName": "$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidRegisterForRemoteNotifications", - "printedName": "capacitorDidRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDidRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDidRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidFailToRegisterForRemoteNotifications", - "printedName": "capacitorDidFailToRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDidFailToRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDidFailToRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDecidePolicyForNavigationAction", - "printedName": "capacitorDecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDecidePolicyForNavigationAction", - "mangledName": "$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDecidePolicyForNavigationAction", - "mangledName": "$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorStatusBarTapped", - "printedName": "capacitorStatusBarTapped", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorStatusBarTapped", - "mangledName": "$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorStatusBarTapped", - "mangledName": "$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSNotification", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNotification", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CAPPluginCall", - "printedName": "CAPPluginCall", - "children": [ - { - "kind": "Var", - "name": "jsObjectRepresentation", - "printedName": "jsObjectRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:So13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvp", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:So13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dictionaryRepresentation", - "printedName": "dictionaryRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(py)dictionaryRepresentation", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvp", - "moduleName": "Capacitor", - "objc_name": "dictionaryRepresentation", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)dictionaryRepresentation", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvg", - "moduleName": "Capacitor", - "objc_name": "dictionaryRepresentation", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "jsDateFormatter", - "printedName": "jsDateFormatter", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cpy)jsDateFormatter", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvpZ", - "moduleName": "Capacitor", - "static": true, - "objc_name": "jsDateFormatter", - "declAttributes": [ - "HasInitialValue", - "Final", - "ObjC", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cm)jsDateFormatter", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "objc_name": "jsDateFormatter", - "declAttributes": [ - "Final", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cm)setJsDateFormatter:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "hasOption", - "printedName": "hasOption(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)hasOption:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "success", - "printedName": "success()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)success", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7successyyF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "success", - "printedName": "success(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)success:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7successyySDySSypGF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resolve", - "printedName": "resolve()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)resolve", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7resolveyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resolve", - "printedName": "resolve(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)resolve:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7resolveyySDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "error", - "printedName": "error(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)error:::", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "reject", - "printedName": "reject(_:_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)reject::::", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unimplemented", - "printedName": "unimplemented()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unimplemented", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE13unimplementedyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unimplemented", - "printedName": "unimplemented(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unimplemented:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE13unimplementedyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unavailable", - "printedName": "unavailable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unavailable", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE11unavailableyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unavailable", - "printedName": "unavailable(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unavailable:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE11unavailableyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPPluginCall", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPPluginCall", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "Conformance", - "name": "JSValueContainer", - "printedName": "JSValueContainer", - "usr": "s:9Capacitor16JSValueContainerP", - "mangledName": "$s9Capacitor16JSValueContainerP" - }, - { - "kind": "Conformance", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP" - }, - { - "kind": "Conformance", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP" - }, - { - "kind": "Conformance", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP" - }, - { - "kind": "Conformance", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP" - }, - { - "kind": "Conformance", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP" - }, - { - "kind": "Conformance", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP" - }, - { - "kind": "Conformance", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP" - }, - { - "kind": "Conformance", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "InstanceConfiguration", - "printedName": "InstanceConfiguration", - "children": [ - { - "kind": "Var", - "name": "appStartFileURL", - "printedName": "appStartFileURL", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)appStartFileURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15appStartFileURL10Foundation0G0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)appStartFileURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15appStartFileURL10Foundation0G0Vvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "appStartServerURL", - "printedName": "appStartServerURL", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)appStartServerURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE17appStartServerURL10Foundation0G0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)appStartServerURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE17appStartServerURL10Foundation0G0Vvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorPathURL", - "printedName": "errorPathURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)errorPathURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)errorPathURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getPluginConfigValue", - "printedName": "getPluginConfigValue(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getPluginConfigValue::", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPluginConfig", - "printedName": "getPluginConfig(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginConfig", - "printedName": "Capacitor.PluginConfig", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getPluginConfig:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "shouldAllowNavigation", - "printedName": "shouldAllowNavigation(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)shouldAllowNavigationTo:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tF", - "moduleName": "Capacitor", - "objc_name": "shouldAllowNavigationTo:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getValue", - "printedName": "getValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getValue:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getString:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPInstanceConfiguration", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPInstanceConfiguration", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "TypeDecl", - "name": "InstanceDescriptor", - "printedName": "InstanceDescriptor", - "children": [ - { - "kind": "Var", - "name": "cordovaDeployDisabled", - "printedName": "cordovaDeployDisabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(py)cordovaDeployDisabled", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(im)cordovaDeployDisabled", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "normalize", - "printedName": "normalize()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(im)normalize", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPInstanceDescriptor", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPInstanceDescriptor", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 362, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 396, - "length": 26, - "value": "\"Invalid URL \/ Server URL\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 18, - "value": "\"Must provide key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 675, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 710, - "length": 20, - "value": "\"Must provide value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 802, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 836, - "length": 16, - "value": "\"Invalid domain\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 894, - "length": 9, - "value": "\"expires\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 905, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 943, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 951, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1165, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1198, - "length": 18, - "value": "\"Must provide key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1287, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 26, - "value": "\"Invalid URL \/ Server URL\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1540, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Router.swift", - "kind": "StringLiteral", - "offset": 358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Router.swift", - "kind": "StringLiteral", - "offset": 623, - "length": 13, - "value": "\"\/index.html\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Dictionary", - "offset": 400, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 582, - "length": 34, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 590, - "length": 1, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 601, - "length": 1, - "value": "\",\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 609, - "length": 1, - "value": "\";q=0.5\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 662, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 691, - "length": 1, - "value": "\";q=0.5\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 750, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 791, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 1329, - "length": 97, - "value": "\"[ data ] argument for request of content-type [ application\/json ] must be serializable to JSON\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "BooleanLiteral", - "offset": 1616, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Array", - "offset": 1675, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 1854, - "length": 111, - "value": "\"[ data ] argument for request with content-type [ multipart\/form-data ] may only be a plain javascript object\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2095, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2110, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2113, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 125, - "value": "\"[ data ] argument for request with content-type [ application\/x-www-form-urlencoded ] may only be a plain javascript object\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2849, - "length": 43, - "value": "\"multipart\/form-data; boundary=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2891, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2951, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2983, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3078, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3096, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3147, - "length": 57, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3193, - "length": 1, - "value": "\"\"\r\n\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3307, - "length": 25, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3325, - "length": 2, - "value": "\"--\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3571, - "length": 49, - "value": "\"[ data ] argument could not be parsed as string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Dictionary", - "offset": 3761, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4207, - "length": 36, - "value": "\"Data must be an array for FormData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4406, - "length": 43, - "value": "\"multipart\/form-data; boundary=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4448, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4508, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4540, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4728, - "length": 36, - "value": "\"Data must be an array for FormData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4809, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4844, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4914, - "length": 12, - "value": "\"base64File\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4965, - "length": 10, - "value": "\"fileName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5020, - "length": 13, - "value": "\"contentType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5082, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5137, - "length": 81, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5184, - "length": 1, - "value": "\"\"; filename=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5211, - "length": 1, - "value": "\"\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5268, - "length": 39, - "value": "\"Content-Type: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5302, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5357, - "length": 39, - "value": "\"Content-Transfer-Encoding: binary\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5446, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5561, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5619, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5658, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5676, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5731, - "length": 54, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5778, - "length": 1, - "value": "\"\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5835, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5946, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6020, - "length": 25, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6038, - "length": 2, - "value": "\"--\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6234, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6367, - "length": 49, - "value": "\"[ data ] argument could not be parsed as string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6513, - "length": 10, - "value": "\"formData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6805, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6916, - "length": 35, - "value": "\"application\/x-www-form-urlencoded\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7054, - "length": 21, - "value": "\"multipart\/form-data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 75, - "value": "\"[ data ] argument could not be parsed for content type [ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7293, - "length": 1, - "value": "\" ]\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7861, - "length": 11, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7871, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7931, - "length": 11, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7941, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8092, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8350, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8913, - "length": 18, - "value": "\"disableRedirects\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "BooleanLiteral", - "offset": 8936, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 30, - "length": 19, - "value": "\"Capacitor.CapacitorUrlRequest\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 331, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "Array", - "offset": 511, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 623, - "length": 17, - "value": "\"CFBundleVersion\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 714, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 23, - "value": "\"lastBinaryVersionCode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 931, - "length": 23, - "value": "\"lastBinaryVersionName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1025, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1077, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1117, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1147, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 2849, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 16, - "value": "\"serverBasePath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3537, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3693, - "length": 9, - "value": "\"NoCloud\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3752, - "length": 23, - "value": "\"ionic_built_snapshots\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3874, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4771, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4838, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "Array", - "offset": 4915, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5320, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5351, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5671, - "length": 8, - "value": "\"mobile\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5791, - "length": 9, - "value": "\"desktop\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7013, - "length": 49, - "value": "\"⚡️ Loading app at \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7058, - "length": 3, - "value": "\"...\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7353, - "length": 19, - "value": "\"UIStatusBarHidden\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 7468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7548, - "length": 18, - "value": "\"UIStatusBarStyle\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7618, - "length": 29, - "value": "\"UIStatusBarStyleDarkContent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7749, - "length": 25, - "value": "\"UIStatusBarStyleDefault\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8021, - "length": 34, - "value": "\"UISupportedInterfaceOrientations\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8160, - "length": 32, - "value": "\"UIInterfaceOrientationPortrait\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8355, - "length": 42, - "value": "\"UIInterfaceOrientationPortraitUpsideDown\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8570, - "length": 37, - "value": "\"UIInterfaceOrientationLandscapeLeft\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8775, - "length": 38, - "value": "\"UIInterfaceOrientationLandscapeRight\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 9017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "FloatLiteral", - "offset": 9639, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "FloatLiteral", - "offset": 9881, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10332, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10515, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10704, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10888, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 11196, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 12330, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 13231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13706, - "length": 17, - "value": "\"CFBundleVersion\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13797, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13955, - "length": 23, - "value": "\"lastBinaryVersionCode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14019, - "length": 23, - "value": "\"lastBinaryVersionName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14062, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14074, - "length": 16, - "value": "\"serverBasePath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14277, - "length": 103, - "value": "\"⚡️ ERROR: Unable to find application directory at: \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14376, - "length": 1, - "value": "\"\"!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14528, - "length": 81, - "value": "\"Unable to find capacitor.config.json, make sure it exists and run npx cap copy.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14714, - "length": 67, - "value": "\"Unable to parse capacitor.config.json. Make sure it's valid JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14893, - "length": 70, - "value": "\"Unable to find config.xml, make sure it exists and run npx cap copy.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15075, - "length": 55, - "value": "\"Unable to parse config.xml. Make sure it's valid XML.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15266, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15291, - "length": 48, - "value": "\"⚡️ ERROR: Unable to load \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15338, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15362, - "length": 69, - "value": "\"⚡️ This file is the root of your web app and must exist before\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15454, - "length": 70, - "value": "\"⚡️ Capacitor can run. Ensure you've run capacitor copy at least\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15547, - "length": 79, - "value": "\"⚡️ or, if embedding, that this directory exists as a resource directory.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 15718, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3862, - "length": 9, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3890, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 4873, - "length": 17, - "value": "\"CapacitorBridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "IntegerLiteral", - "offset": 5002, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5082, - "length": 6, - "value": "\"info\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5250, - "length": 52, - "value": "\"Unable to export JavaScript bridge code to webview\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5313, - "length": 39, - "value": "\"Capacitor bridge initialization error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "IntegerLiteral", - "offset": 720, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 1342, - "length": 4, - "value": "\"WK\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 1371, - "length": 13, - "value": "\"ContentView\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 2739, - "length": 86, - "value": "\"_elementDidFocus:userIsInteracting:blurPreviousNode:activityStateChanges:userObject:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Data+Capacitor.swift", - "kind": "StringLiteral", - "offset": 697, - "length": 7, - "value": "\"data:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Data+Capacitor.swift", - "kind": "StringLiteral", - "offset": 741, - "length": 9, - "value": "\"base64,\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 658, - "length": 8, - "value": "\"bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 1564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 3391, - "length": 21, - "value": "\"shouldOverrideLoad:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 3638, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 3777, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 4372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 4927, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 5530, - "length": 24, - "value": "\"⚡️ WebView loaded\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6121, - "length": 32, - "value": "\"⚡️ WebView failed to load\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6176, - "length": 17, - "value": "\"⚡️ Error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6642, - "length": 47, - "value": "\"⚡️ WebView failed provisional navigation\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6712, - "length": 17, - "value": "\"⚡️ Error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7220, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7242, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7269, - "length": 10, - "value": "\"js.error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7318, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7433, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7481, - "length": 10, - "value": "\"pluginId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7507, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7544, - "length": 12, - "value": "\"methodName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7572, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7613, - "length": 12, - "value": "\"callbackId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7680, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 7712, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7748, - "length": 9, - "value": "\"Console\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7793, - "length": 23, - "value": "\"⚡️ To Native -> \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8025, - "length": 9, - "value": "\"cordova\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8073, - "length": 9, - "value": "\"service\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8098, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8135, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8159, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8200, - "length": 12, - "value": "\"callbackId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8264, - "length": 12, - "value": "\"actionArgs\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Array", - "offset": 8291, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8325, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8372, - "length": 23, - "value": "\"To Native Cordova -> \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 9248, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 9392, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 9859, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 9934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10009, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10080, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10157, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10744, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 22, - "value": "\"CapacitorCookies.get\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11032, - "length": 22, - "value": "\"CapacitorCookies.set\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11158, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11224, - "length": 8, - "value": "\"domain\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11376, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11552, - "length": 28, - "value": "\"CapacitorCookies.isEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11657, - "length": 18, - "value": "\"CapacitorCookies\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11750, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 11761, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11887, - "length": 15, - "value": "\"CapacitorHttp\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11979, - "length": 15, - "value": "\"CapacitorHttp\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12069, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 12080, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12653, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12801, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 13103, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 13432, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 13729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13848, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13862, - "length": 12, - "value": "\"No message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13899, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13920, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13948, - "length": 6, - "value": "\"line\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13959, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13986, - "length": 5, - "value": "\"col\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13996, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14022, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14070, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14243, - "length": 44, - "value": "\"\n⚡️ ------ STARTUP JS ERROR ------\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14310, - "length": 20, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14329, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14353, - "length": 21, - "value": "\"⚡️ URL: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14397, - "length": 36, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14425, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14432, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14456, - "length": 65, - "value": "\"\n⚡️ See above for help with debugging blank-screen issues\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 188, - "length": 24, - "value": "\"Capacitor.WebViewDelegationHandler\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 5731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 5977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 6199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "Dictionary", - "offset": 7523, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 815, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 1593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2628, - "length": 27, - "value": "\"tmpViewControllerAppeared\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2696, - "length": 26, - "value": "\"https:\/\/capacitorjs.com\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2767, - "length": 19, - "value": "\"\/_capacitor_file_\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2825, - "length": 11, - "value": "\"capacitor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 3789, - "length": 8, - "value": "\"bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Array", - "offset": 3877, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 4997, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5437, - "length": 36, - "value": "\"⚡️ ❌ Capacitor: FATAL ERROR\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5496, - "length": 25, - "value": "\"⚡️ ❌ Error was: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5663, - "length": 84, - "value": "\"⚡️ ❌ Unable to export required Bridge JavaScript. Bridge will not function.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5774, - "length": 101, - "value": "\"⚡️ ❌ You should run \"npx capacitor copy\" to ensure the Bridge JS is added to your project.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5959, - "length": 13, - "value": "\"⚡️ ❌ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 6044, - "length": 27, - "value": "\"⚡️ ❌ Unknown error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 6105, - "length": 62, - "value": "\"⚡️ ❌ Please verify your installation or file an issue\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 6457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 8832, - "length": 8, - "value": "\"resume\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 9098, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 9823, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 10124, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 10326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11136, - "length": 233, - "value": "\"\n⚡️ ❌ Cannot register class \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11200, - "length": 1, - "value": "\": CAPInstancePlugin through registerPluginType(_:).\n⚡️ ❌ Use `registerPluginInstance(_:)` to register subclasses of CAPInstancePlugin.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11680, - "length": 184, - "value": "\"\n⚡️ Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11743, - "length": 4, - "value": "\" must conform to CAPBridgedPlugin.\n⚡️ Not loading plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11848, - "length": 9369, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11972, - "length": 79, - "value": "\"⚡️ Overriding existing registered plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12050, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12687, - "length": 78, - "value": "\"⚡️ Unable to load plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12741, - "length": 1, - "value": "\". No such module found.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 14236, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14750, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14782, - "length": 4, - "value": "\"docs\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14793, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15015, - "length": 83, - "value": "\"⚡️ Warning: isWebDebuggable only functions as intended on iOS 16.4 and above.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15840, - "length": 92, - "value": "\"⚡️ Error loading plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15886, - "length": 3, - "value": "\" for call. Check that the pluginId is correct\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16021, - "length": 13, - "value": "\"addListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16053, - "length": 16, - "value": "\"removeListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16130, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16256, - "length": 90, - "value": "\"⚡️ Error calling method \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16300, - "length": 2, - "value": "\" on plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16327, - "length": 1, - "value": "\": No method found.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16377, - "length": 93, - "value": "\"⚡️ Ensure plugin method exists and uses @objc in its declaration, and has been defined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16731, - "length": 124, - "value": "\"⚡️ Error: Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16771, - "length": 4, - "value": "\" does not respond to method call \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16820, - "length": 1, - "value": "\"\" using selector \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16851, - "length": 1, - "value": "\"\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16882, - "length": 138, - "value": "\"⚡️ Ensure plugin method exists, uses @objc in its declaration, and arguments match selector without callbacks in CAP_PLUGIN_METHOD.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 17047, - "length": 75, - "value": "\"⚡️ Learn more: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 17121, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 17705, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 18042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 18210, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 18248, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 18827, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 18934, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 19144, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20040, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20055, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20136, - "length": 86, - "value": "\"Error: Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20176, - "length": 4, - "value": "\" does not respond to method call \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20220, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20253, - "length": 63, - "value": "\"Ensure plugin method exists and uses @objc in its declaration\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20404, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Array", - "offset": 20428, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20834, - "length": 41, - "value": "\"Error: Cordova Plugin mapping not found\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21105, - "length": 15, - "value": "\"⚡️ TO JS\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 21140, - "length": 3, - "value": "256" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21227, - "length": 310, - "value": "\" window.Capacitor.fromNative({\n callbackId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21320, - "length": 2, - "value": "\"',\n pluginId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21365, - "length": 2, - "value": "\"',\n methodName: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21414, - "length": 2, - "value": "\"',\n save: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21443, - "length": 1, - "value": "\",\n success: true,\n data: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21505, - "length": 1, - "value": "\"\n })\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21876, - "length": 180, - "value": "\"window.Capacitor.fromNative({ callbackId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21939, - "length": 14, - "value": "\"', pluginId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21970, - "length": 16, - "value": "\"', methodName: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22005, - "length": 68, - "value": "\"', success: false, error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22053, - "length": 1, - "value": "\"})\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 237, - "value": "\"window.Capacitor.withPlugin('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22591, - "length": 21, - "value": "\"', function(plugin) {\nif(!plugin) { console.error('Unable to execute JS in plugin, no such plugin found for id \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22727, - "length": 5, - "value": "\"'); }\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22746, - "length": 1, - "value": "\"\n});\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22975, - "length": 23, - "value": "\"⚡️ JS Eval error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23488, - "length": 23, - "value": "\"⚡️ JS Eval error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23687, - "length": 60, - "value": "\"window.Capacitor.triggerEvent('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23731, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23744, - "length": 4, - "value": "\"')\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23866, - "length": 69, - "value": "\"window.Capacitor.triggerEvent('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23910, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23923, - "length": 13, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23933, - "length": 1, - "value": "\")\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24066, - "length": 8, - "value": "\"window\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24219, - "length": 8, - "value": "\"window\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24372, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24529, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24621, - "length": 5, - "value": "\"log\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24715, - "length": 50, - "value": "\"window.Capacitor.logJs('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24750, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24762, - "length": 25, - "value": "\"')\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 25593, - "length": 5, - "value": "\"res\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 25688, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 26605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 531, - "length": 15, - "value": "\"Capacitor.CapacitorBridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 904, - "length": 9, - "value": "\"http:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 938, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1257, - "length": 21, - "value": "\"http:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1277, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1826, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2207, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2228, - "length": 1, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2237, - "length": 1, - "value": "\"; expires=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2263, - "length": 1, - "value": "\"; path=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2280, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "Dictionary", - "offset": 2613, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3092, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3161, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3266, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3277, - "length": 1, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3289, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3311, - "length": 4, - "value": "\"; \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPFile.swift", - "kind": "StringLiteral", - "offset": 449, - "length": 9, - "value": "\"file:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPFile.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 365, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 404, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 442, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 481, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 605, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 611, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 654, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 659, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 699, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 742, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 748, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "StringLiteral", - "offset": 942, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "StringLiteral", - "offset": 965, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1036, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1069, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1101, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1134, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1251, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1289, - "length": 8, - "value": "0xFF0000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1302, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1308, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1350, - "length": 8, - "value": "0x00FF00" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1363, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1368, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1408, - "length": 8, - "value": "0x0000FF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1420, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1464, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1502, - "length": 11, - "value": "0xFF000000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1518, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1524, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1566, - "length": 10, - "value": "0x00FF0000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1581, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1587, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1628, - "length": 10, - "value": "0x0000FF00" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1643, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1648, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1689, - "length": 10, - "value": "0x000000FF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1703, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "Array", - "offset": 792, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 19, - "value": "\"Capacitor.CAPPluginCallResult\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 3201, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 18, - "value": "\"Capacitor.CAPPluginCallError\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 402, - "length": 30, - "value": "\"CapacitorOpenURLNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 513, - "length": 40, - "value": "\"CapacitorOpenUniversalLinkNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 633, - "length": 39, - "value": "\"CapacitorContinueActivityNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 777, - "length": 56, - "value": "\"CapacitorDidRegisterForRemoteNotificationsNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 944, - "length": 62, - "value": "\"CapacitorDidFailToRegisterForRemoteNotificationsNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 1109, - "length": 54, - "value": "\"CapacitorDecidePolicyForNavigationActionNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 1242, - "length": 38, - "value": "\"CapacitorStatusBarTappedNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2366, - "length": 17, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2480, - "length": 16, - "value": "2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2622, - "length": 48, - "value": "3" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2802, - "length": 48, - "value": "4" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2974, - "length": 31, - "value": "5" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2366, - "length": 17, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2480, - "length": 16, - "value": "2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2622, - "length": 48, - "value": "3" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2802, - "length": 48, - "value": "4" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2974, - "length": 31, - "value": "5" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 11, - "value": "\"undefined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 4, - "value": "\"{}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 11, - "value": "\"undefined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 4, - "value": "\"{}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1705, - "length": 109, - "value": "\"[Capacitor Plugin Error] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1749, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1766, - "length": 1, - "value": "\" - Unable to serialize plugin response as JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1845, - "length": 90, - "value": "\"Ensure that all data passed to success callback from module method is JSON serializable!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 76, - "value": "\"Unable to serialize plugin response as JSON: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2055, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2581, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2623, - "length": 14, - "value": "\"errorMessage\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2691, - "length": 6, - "value": "\"code\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2854, - "length": 17, - "value": "\"ERROR MESSAGE: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "IntegerLiteral", - "offset": 2888, - "length": 3, - "value": "512" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3032, - "length": 109, - "value": "\"[Capacitor Plugin Error] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3076, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3093, - "length": 1, - "value": "\" - Unable to serialize plugin response as JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3172, - "length": 90, - "value": "\"Ensure that all data passed to success callback from module method is JSON serializable!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3307, - "length": 76, - "value": "\"Unable to serialize plugin response as JSON: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3382, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "Dictionary", - "offset": 3770, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 714, - "length": 99, - "value": "\"Push notification handler overriding previous instance: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 812, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 1035, - "length": 100, - "value": "\"Local notification handler overriding previous instance: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "BooleanLiteral", - "offset": 1617, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "Array", - "offset": 1900, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "BooleanLiteral", - "offset": 2270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 419, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "BooleanLiteral", - "offset": 998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1171, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1288, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1489, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1696, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2079, - "length": 17, - "value": "\"not implemented\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2213, - "length": 15, - "value": "\"UNIMPLEMENTED\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 2248, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2306, - "length": 15, - "value": "\"not available\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 13, - "value": "\"UNAVAILABLE\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 2469, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 162, - "length": 13, - "value": "\"arraybuffer\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 6, - "value": "\"blob\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 219, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 6, - "value": "\"json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 162, - "length": 13, - "value": "\"arraybuffer\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 6, - "value": "\"blob\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 219, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 6, - "value": "\"json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 2109, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "BooleanLiteral", - "offset": 2238, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Array", - "offset": 2328, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Array", - "offset": 2402, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3435, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3520, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3610, - "length": 9, - "value": "\"domain=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3665, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3772, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3799, - "length": 3, - "value": "\";\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3947, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 4230, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4267, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4367, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4462, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4472, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4564, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4594, - "length": 21, - "value": "\"application\/default\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4663, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4729, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4851, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5006, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5257, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5347, - "length": 8, - "value": "\"method\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5357, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5403, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 5417, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5476, - "length": 8, - "value": "\"params\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 5489, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5553, - "length": 14, - "value": "\"responseType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5623, - "length": 16, - "value": "\"connectTimeout\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5682, - "length": 13, - "value": "\"readTimeout\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5735, - "length": 10, - "value": "\"dataType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5750, - "length": 5, - "value": "\"any\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "FloatLiteral", - "offset": 6411, - "length": 8, - "value": "600000.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "FloatLiteral", - "offset": 6423, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 6502, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 78, - "length": 31, - "value": "\"plugins\/ios\/#defining-methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW73\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 357, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW17\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW24\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 78, - "length": 31, - "value": "\"plugins\/ios\/#defining-methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW73\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 357, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW17\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW24\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 391, - "length": 10, - "value": "\"_options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 437, - "length": 11, - "value": "\"_callback\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 136, - "value": "\"window.Capacitor = { DEBUG: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 660, - "length": 1, - "value": "\", isLoggingEnabled: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 697, - "length": 1, - "value": "\", Plugins: {} }; window.WEBVIEW_SERVER_URL = '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 754, - "length": 3, - "value": "\"';\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 861, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 15, - "value": "\"native-bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1150, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1188, - "length": 89, - "value": "\"ERROR: Required native-bridge.js file in Capacitor not found. Bridge will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 110, - "value": "\"ERROR: Unable to read required native-bridge.js file from the Capacitor framework. Bridge will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1837, - "length": 16, - "value": "\"public\/cordova\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1870, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1908, - "length": 79, - "value": "\"ERROR: Required cordova.js file not found. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2126, - "length": 24, - "value": "\"public\/cordova_plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2167, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2205, - "length": 88, - "value": "\"ERROR: Required cordova_plugins.js file not found. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2626, - "length": 82, - "value": "\"ERROR: Unable to read required cordova files. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3022, - "length": 425, - "value": "\"(function(w) {\nvar a = (w.Capacitor = w.Capacitor || {});\nvar p = (a.Plugins = a.Plugins || {});\nvar t = (p['\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3231, - "length": 9, - "value": "\"'] = {});\nt.addListener = function(eventName, callback) {\nreturn w.Capacitor.addListener('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3377, - "length": 24, - "value": "\"', eventName, callback);\n}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3616, - "length": 43, - "value": "\"})(window);\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 243, - "value": "\"(function(w) {\nvar a = (w.Capacitor = w.Capacitor || {});\nvar h = (a.PluginHeaders = a.PluginHeaders || []);\nh.push(\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4023, - "length": 1, - "value": "\");\n})(window);\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4126, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 4233, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4454, - "length": 13, - "value": "\"addListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4519, - "length": 16, - "value": "\"removeListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4587, - "length": 20, - "value": "\"removeAllListeners\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4616, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4665, - "length": 18, - "value": "\"checkPermissions\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4692, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4741, - "length": 20, - "value": "\"requestPermissions\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 5110, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 5977, - "length": 4, - "value": "\", \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6207, - "length": 51, - "value": "\"t['\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6226, - "length": 33, - "value": "\"'] = function(\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6254, - "length": 1, - "value": "\") {\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6406, - "length": 141, - "value": "\"return w.Capacitor.nativeCallback('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6483, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6500, - "length": 23, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6521, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6666, - "length": 140, - "value": "\"return w.Capacitor.nativePromise('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6742, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6759, - "length": 23, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6780, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6926, - "length": 163, - "value": "\"return w.Capacitor.nativeCallback('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7003, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7020, - "length": 45, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7041, - "length": 1, - "value": "\", \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7063, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7133, - "length": 66, - "value": "\"Error: plugin method return type \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7180, - "length": 2, - "value": "\" is not supported!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7263, - "length": 3, - "value": "\"}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7307, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7478, - "length": 16, - "value": "\"public\/plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "Array", - "offset": 7920, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 8316, - "length": 31, - "value": "\"Error while enumerating files\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 8656, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 8765, - "length": 26, - "value": "\"Unable to inject js file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 150, - "length": 6, - "value": "\"%02x\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "IntegerLiteral", - "offset": 265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 547, - "length": 18, - "value": "\"CapacitorAppUUID\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 1221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1278, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1530, - "length": 29, - "value": "\"Access-Control-Allow-Origin\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1618, - "length": 30, - "value": "\"Access-Control-Allow-Methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1652, - "length": 14, - "value": "\"GET, OPTIONS\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1763, - "length": 7, - "value": "\"Range\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2071, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2116, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2143, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2196, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2203, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2247, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2288, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2338, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2584, - "length": 15, - "value": "\"Accept-Ranges\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2603, - "length": 7, - "value": "\"bytes\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2635, - "length": 15, - "value": "\"Content-Range\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2654, - "length": 44, - "value": "\"bytes \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2673, - "length": 1, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2684, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2697, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2723, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2836, - "length": 3, - "value": "206" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 3036, - "length": 12, - "value": "\"cordova.js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 3579, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4180, - "length": 13, - "value": "\"scheme stop\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4833, - "length": 26, - "value": "\"application\/octet-stream\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4885, - "length": 11, - "value": "\"text\/html\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "Array", - "offset": 4993, - "length": 109, - "value": "[\"m4v\", \"mov\", \"mp4\", \"aac\", \"ac3\", \"aiff\", \"au\", \"flac\", \"m4a\", \"mp3\", \"wav\"]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "BooleanLiteral", - "offset": 5188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "BooleanLiteral", - "offset": 5218, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "Dictionary", - "offset": 5251, - "length": 14028, - "value": "[(\"aaf\", \"application\/octet-stream\"), (\"aca\", \"application\/octet-stream\"), (\"accdb\", \"application\/msaccess\"), (\"accde\", \"application\/msaccess\"), (\"accdt\", \"application\/msaccess\"), (\"acx\", \"application\/internet-property-stream\"), (\"afm\", \"application\/octet-stream\"), (\"ai\", \"application\/postscript\"), (\"aif\", \"audio\/x-aiff\"), (\"aifc\", \"audio\/aiff\"), (\"aiff\", \"audio\/aiff\"), (\"application\", \"application\/x-ms-application\"), (\"art\", \"image\/x-jg\"), (\"asd\", \"application\/octet-stream\"), (\"asf\", \"video\/x-ms-asf\"), (\"asi\", \"application\/octet-stream\"), (\"asm\", \"text\/plain\"), (\"asr\", \"video\/x-ms-asf\"), (\"asx\", \"video\/x-ms-asf\"), (\"atom\", \"application\/atom+xml\"), (\"au\", \"audio\/basic\"), (\"avi\", \"video\/x-msvideo\"), (\"axs\", \"application\/olescript\"), (\"bas\", \"text\/plain\"), (\"bcpio\", \"application\/x-bcpio\"), (\"bin\", \"application\/octet-stream\"), (\"bmp\", \"image\/bmp\"), (\"c\", \"text\/plain\"), (\"cab\", \"application\/octet-stream\"), (\"calx\", \"application\/vnd.ms-office.calx\"), (\"cat\", \"application\/vnd.ms-pki.seccat\"), (\"cdf\", \"application\/x-cdf\"), (\"chm\", \"application\/octet-stream\"), (\"class\", \"application\/x-java-applet\"), (\"clp\", \"application\/x-msclip\"), (\"cmx\", \"image\/x-cmx\"), (\"cnf\", \"text\/plain\"), (\"cod\", \"image\/cis-cod\"), (\"cpio\", \"application\/x-cpio\"), (\"cpp\", \"text\/plain\"), (\"crd\", \"application\/x-mscardfile\"), (\"crl\", \"application\/pkix-crl\"), (\"crt\", \"application\/x-x509-ca-cert\"), (\"csh\", \"application\/x-csh\"), (\"css\", \"text\/css\"), (\"csv\", \"application\/octet-stream\"), (\"cur\", \"application\/octet-stream\"), (\"dcr\", \"application\/x-director\"), (\"deploy\", \"application\/octet-stream\"), (\"der\", \"application\/x-x509-ca-cert\"), (\"dib\", \"image\/bmp\"), (\"dir\", \"application\/x-director\"), (\"disco\", \"text\/xml\"), (\"dll\", \"application\/x-msdownload\"), (\"dll.config\", \"text\/xml\"), (\"dlm\", \"text\/dlm\"), (\"doc\", \"application\/msword\"), (\"docm\", \"application\/vnd.ms-word.document.macroEnabled.12\"), (\"docx\", \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\"), (\"dot\", \"application\/msword\"), (\"dotm\", \"application\/vnd.ms-word.template.macroEnabled.12\"), (\"dotx\", \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\"), (\"dsp\", \"application\/octet-stream\"), (\"dtd\", \"text\/xml\"), (\"dvi\", \"application\/x-dvi\"), (\"dwf\", \"drawing\/x-dwf\"), (\"dwp\", \"application\/octet-stream\"), (\"dxr\", \"application\/x-director\"), (\"eml\", \"message\/rfc822\"), (\"emz\", \"application\/octet-stream\"), (\"eot\", \"application\/octet-stream\"), (\"eps\", \"application\/postscript\"), (\"etx\", \"text\/x-setext\"), (\"evy\", \"application\/envoy\"), (\"exe\", \"application\/octet-stream\"), (\"exe.config\", \"text\/xml\"), (\"fdf\", \"application\/vnd.fdf\"), (\"fif\", \"application\/fractals\"), (\"fla\", \"application\/octet-stream\"), (\"flr\", \"x-world\/x-vrml\"), (\"flv\", \"video\/x-flv\"), (\"gif\", \"image\/gif\"), (\"gtar\", \"application\/x-gtar\"), (\"gz\", \"application\/x-gzip\"), (\"h\", \"text\/plain\"), (\"hdf\", \"application\/x-hdf\"), (\"hdml\", \"text\/x-hdml\"), (\"hhc\", \"application\/x-oleobject\"), (\"hhk\", \"application\/octet-stream\"), (\"hhp\", \"application\/octet-stream\"), (\"hlp\", \"application\/winhlp\"), (\"hqx\", \"application\/mac-binhex40\"), (\"hta\", \"application\/hta\"), (\"htc\", \"text\/x-component\"), (\"htm\", \"text\/html\"), (\"html\", \"text\/html\"), (\"htt\", \"text\/webviewhtml\"), (\"hxt\", \"text\/html\"), (\"ico\", \"image\/x-icon\"), (\"ics\", \"application\/octet-stream\"), (\"ief\", \"image\/ief\"), (\"iii\", \"application\/x-iphone\"), (\"inf\", \"application\/octet-stream\"), (\"ins\", \"application\/x-internet-signup\"), (\"isp\", \"application\/x-internet-signup\"), (\"IVF\", \"video\/x-ivf\"), (\"jar\", \"application\/java-archive\"), (\"java\", \"application\/octet-stream\"), (\"jck\", \"application\/liquidmotion\"), (\"jcz\", \"application\/liquidmotion\"), (\"jfif\", \"image\/pjpeg\"), (\"jpb\", \"application\/octet-stream\"), (\"jpe\", \"image\/jpeg\"), (\"jpeg\", \"image\/jpeg\"), (\"jpg\", \"image\/jpeg\"), (\"js\", \"application\/x-javascript\"), (\"jsx\", \"text\/jscript\"), (\"latex\", \"application\/x-latex\"), (\"lit\", \"application\/x-ms-reader\"), (\"lpk\", \"application\/octet-stream\"), (\"lsf\", \"video\/x-la-asf\"), (\"lsx\", \"video\/x-la-asf\"), (\"lzh\", \"application\/octet-stream\"), (\"m13\", \"application\/x-msmediaview\"), (\"m14\", \"application\/x-msmediaview\"), (\"m1v\", \"video\/mpeg\"), (\"m3u\", \"audio\/x-mpegurl\"), (\"man\", \"application\/x-troff-man\"), (\"manifest\", \"application\/x-ms-manifest\"), (\"map\", \"text\/plain\"), (\"mdb\", \"application\/x-msaccess\"), (\"mdp\", \"application\/octet-stream\"), (\"me\", \"application\/x-troff-me\"), (\"mht\", \"message\/rfc822\"), (\"mhtml\", \"message\/rfc822\"), (\"mid\", \"audio\/mid\"), (\"midi\", \"audio\/mid\"), (\"mix\", \"application\/octet-stream\"), (\"mmf\", \"application\/x-smaf\"), (\"mno\", \"text\/xml\"), (\"mny\", \"application\/x-msmoney\"), (\"mov\", \"video\/quicktime\"), (\"movie\", \"video\/x-sgi-movie\"), (\"mp2\", \"video\/mpeg\"), (\"mp3\", \"audio\/mpeg\"), (\"mpa\", \"video\/mpeg\"), (\"mpe\", \"video\/mpeg\"), (\"mpeg\", \"video\/mpeg\"), (\"mpg\", \"video\/mpeg\"), (\"mpp\", \"application\/vnd.ms-project\"), (\"mpv2\", \"video\/mpeg\"), (\"ms\", \"application\/x-troff-ms\"), (\"msi\", \"application\/octet-stream\"), (\"mso\", \"application\/octet-stream\"), (\"mvb\", \"application\/x-msmediaview\"), (\"mvc\", \"application\/x-miva-compiled\"), (\"nc\", \"application\/x-netcdf\"), (\"nsc\", \"video\/x-ms-asf\"), (\"nws\", \"message\/rfc822\"), (\"ocx\", \"application\/octet-stream\"), (\"oda\", \"application\/oda\"), (\"odc\", \"text\/x-ms-odc\"), (\"ods\", \"application\/oleobject\"), (\"one\", \"application\/onenote\"), (\"onea\", \"application\/onenote\"), (\"onetoc\", \"application\/onenote\"), (\"onetoc2\", \"application\/onenote\"), (\"onetmp\", \"application\/onenote\"), (\"onepkg\", \"application\/onenote\"), (\"osdx\", \"application\/opensearchdescription+xml\"), (\"p10\", \"application\/pkcs10\"), (\"p12\", \"application\/x-pkcs12\"), (\"p7b\", \"application\/x-pkcs7-certificates\"), (\"p7c\", \"application\/pkcs7-mime\"), (\"p7m\", \"application\/pkcs7-mime\"), (\"p7r\", \"application\/x-pkcs7-certreqresp\"), (\"p7s\", \"application\/pkcs7-signature\"), (\"pbm\", \"image\/x-portable-bitmap\"), (\"pcx\", \"application\/octet-stream\"), (\"pcz\", \"application\/octet-stream\"), (\"pdf\", \"application\/pdf\"), (\"pfb\", \"application\/octet-stream\"), (\"pfm\", \"application\/octet-stream\"), (\"pfx\", \"application\/x-pkcs12\"), (\"pgm\", \"image\/x-portable-graymap\"), (\"pko\", \"application\/vnd.ms-pki.pko\"), (\"pma\", \"application\/x-perfmon\"), (\"pmc\", \"application\/x-perfmon\"), (\"pml\", \"application\/x-perfmon\"), (\"pmr\", \"application\/x-perfmon\"), (\"pmw\", \"application\/x-perfmon\"), (\"png\", \"image\/png\"), (\"pnm\", \"image\/x-portable-anymap\"), (\"pnz\", \"image\/png\"), (\"pot\", \"application\/vnd.ms-powerpoint\"), (\"potm\", \"application\/vnd.ms-powerpoint.template.macroEnabled.12\"), (\"potx\", \"application\/vnd.openxmlformats-officedocument.presentationml.template\"), (\"ppam\", \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\"), (\"ppm\", \"image\/x-portable-pixmap\"), (\"pps\", \"application\/vnd.ms-powerpoint\"), (\"ppsm\", \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\"), (\"ppsx\", \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\"), (\"ppt\", \"application\/vnd.ms-powerpoint\"), (\"pptm\", \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\"), (\"pptx\", \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\"), (\"prf\", \"application\/pics-rules\"), (\"prm\", \"application\/octet-stream\"), (\"prx\", \"application\/octet-stream\"), (\"ps\", \"application\/postscript\"), (\"psd\", \"application\/octet-stream\"), (\"psm\", \"application\/octet-stream\"), (\"psp\", \"application\/octet-stream\"), (\"pub\", \"application\/x-mspublisher\"), (\"qt\", \"video\/quicktime\"), (\"qtl\", \"application\/x-quicktimeplayer\"), (\"qxd\", \"application\/octet-stream\"), (\"ra\", \"audio\/x-pn-realaudio\"), (\"ram\", \"audio\/x-pn-realaudio\"), (\"rar\", \"application\/octet-stream\"), (\"ras\", \"image\/x-cmu-raster\"), (\"rf\", \"image\/vnd.rn-realflash\"), (\"rgb\", \"image\/x-rgb\"), (\"rm\", \"application\/vnd.rn-realmedia\"), (\"rmi\", \"audio\/mid\"), (\"roff\", \"application\/x-troff\"), (\"rpm\", \"audio\/x-pn-realaudio-plugin\"), (\"rtf\", \"application\/rtf\"), (\"rtx\", \"text\/richtext\"), (\"scd\", \"application\/x-msschedule\"), (\"sct\", \"text\/scriptlet\"), (\"sea\", \"application\/octet-stream\"), (\"setpay\", \"application\/set-payment-initiation\"), (\"setreg\", \"application\/set-registration-initiation\"), (\"sgml\", \"text\/sgml\"), (\"sh\", \"application\/x-sh\"), (\"shar\", \"application\/x-shar\"), (\"sit\", \"application\/x-stuffit\"), (\"sldm\", \"application\/vnd.ms-powerpoint.slide.macroEnabled.12\"), (\"sldx\", \"application\/vnd.openxmlformats-officedocument.presentationml.slide\"), (\"smd\", \"audio\/x-smd\"), (\"smi\", \"application\/octet-stream\"), (\"smx\", \"audio\/x-smd\"), (\"smz\", \"audio\/x-smd\"), (\"snd\", \"audio\/basic\"), (\"snp\", \"application\/octet-stream\"), (\"spc\", \"application\/x-pkcs7-certificates\"), (\"spl\", \"application\/futuresplash\"), (\"src\", \"application\/x-wais-source\"), (\"ssm\", \"application\/streamingmedia\"), (\"sst\", \"application\/vnd.ms-pki.certstore\"), (\"stl\", \"application\/vnd.ms-pki.stl\"), (\"sv4cpio\", \"application\/x-sv4cpio\"), (\"sv4crc\", \"application\/x-sv4crc\"), (\"svg\", \"image\/svg+xml\"), (\"swf\", \"application\/x-shockwave-flash\"), (\"t\", \"application\/x-troff\"), (\"tar\", \"application\/x-tar\"), (\"tcl\", \"application\/x-tcl\"), (\"tex\", \"application\/x-tex\"), (\"texi\", \"application\/x-texinfo\"), (\"texinfo\", \"application\/x-texinfo\"), (\"tgz\", \"application\/x-compressed\"), (\"thmx\", \"application\/vnd.ms-officetheme\"), (\"thn\", \"application\/octet-stream\"), (\"tif\", \"image\/tiff\"), (\"tiff\", \"image\/tiff\"), (\"toc\", \"application\/octet-stream\"), (\"tr\", \"application\/x-troff\"), (\"trm\", \"application\/x-msterminal\"), (\"tsv\", \"text\/tab-separated-values\"), (\"ttf\", \"application\/octet-stream\"), (\"txt\", \"text\/plain\"), (\"u32\", \"application\/octet-stream\"), (\"uls\", \"text\/iuls\"), (\"ustar\", \"application\/x-ustar\"), (\"vbs\", \"text\/vbscript\"), (\"vcf\", \"text\/x-vcard\"), (\"vcs\", \"text\/plain\"), (\"vdx\", \"application\/vnd.ms-visio.viewer\"), (\"vml\", \"text\/xml\"), (\"vsd\", \"application\/vnd.visio\"), (\"vss\", \"application\/vnd.visio\"), (\"vst\", \"application\/vnd.visio\"), (\"vsto\", \"application\/x-ms-vsto\"), (\"vsw\", \"application\/vnd.visio\"), (\"vsx\", \"application\/vnd.visio\"), (\"vtx\", \"application\/vnd.visio\"), (\"wasm\", \"application\/wasm\"), (\"wav\", \"audio\/wav\"), (\"wax\", \"audio\/x-ms-wax\"), (\"wbmp\", \"image\/vnd.wap.wbmp\"), (\"wcm\", \"application\/vnd.ms-works\"), (\"wdb\", \"application\/vnd.ms-works\"), (\"wks\", \"application\/vnd.ms-works\"), (\"wm\", \"video\/x-ms-wm\"), (\"wma\", \"audio\/x-ms-wma\"), (\"wmd\", \"application\/x-ms-wmd\"), (\"wmf\", \"application\/x-msmetafile\"), (\"wml\", \"text\/vnd.wap.wml\"), (\"wmlc\", \"application\/vnd.wap.wmlc\"), (\"wmls\", \"text\/vnd.wap.wmlscript\"), (\"wmlsc\", \"application\/vnd.wap.wmlscriptc\"), (\"wmp\", \"video\/x-ms-wmp\"), (\"wmv\", \"video\/x-ms-wmv\"), (\"wmx\", \"video\/x-ms-wmx\"), (\"wmz\", \"application\/x-ms-wmz\"), (\"wps\", \"application\/vnd.ms-works\"), (\"wri\", \"application\/x-mswrite\"), (\"wrl\", \"x-world\/x-vrml\"), (\"wrz\", \"x-world\/x-vrml\"), (\"wsdl\", \"text\/xml\"), (\"wvx\", \"video\/x-ms-wvx\"), (\"x\", \"application\/directx\"), (\"xaf\", \"x-world\/x-vrml\"), (\"xaml\", \"application\/xaml+xml\"), (\"xap\", \"application\/x-silverlight-app\"), (\"xbap\", \"application\/x-ms-xbap\"), (\"xbm\", \"image\/x-xbitmap\"), (\"xdr\", \"text\/plain\"), (\"xht\", \"application\/xhtml+xml\"), (\"xhtml\", \"application\/xhtml+xml\"), (\"xla\", \"application\/vnd.ms-excel\"), (\"xlam\", \"application\/vnd.ms-excel.addin.macroEnabled.12\"), (\"xlc\", \"application\/vnd.ms-excel\"), (\"xlm\", \"application\/vnd.ms-excel\"), (\"xls\", \"application\/vnd.ms-excel\"), (\"xlsb\", \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\"), (\"xlsm\", \"application\/vnd.ms-excel.sheet.macroEnabled.12\"), (\"xlsx\", \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\"), (\"xlt\", \"application\/vnd.ms-excel\"), (\"xltm\", \"application\/vnd.ms-excel.template.macroEnabled.12\"), (\"xltx\", \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\"), (\"xlw\", \"application\/vnd.ms-excel\"), (\"xml\", \"text\/xml\"), (\"xof\", \"x-world\/x-vrml\"), (\"xpm\", \"image\/x-xpixmap\"), (\"xps\", \"application\/vnd.ms-xpsdocument\"), (\"xsd\", \"text\/xml\"), (\"xsf\", \"text\/xml\"), (\"xsl\", \"text\/xml\"), (\"xslt\", \"text\/xml\"), (\"xsn\", \"application\/octet-stream\"), (\"xtp\", \"application\/octet-stream\"), (\"xwd\", \"image\/x-xwindowdump\"), (\"z\", \"application\/x-compress\"), (\"zip\", \"application\/x-zip-compressed\")]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 126, - "length": 19, - "value": "\"Capacitor.WebViewAssetHandler\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 206, - "length": 35, - "value": "\"SSLPinningHttpRequestHandlerClass\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 400, - "length": 6, - "value": "\"call\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 434, - "length": 12, - "value": "\"httpMethod\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 8, - "value": "\"config\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 950, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1028, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1106, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1185, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginConfig.swift", - "kind": "StringLiteral", - "offset": 38, - "length": 12, - "value": "\"Capacitor.PluginConfig\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/KeyPath.swift", - "kind": "StringLiteral", - "offset": 185, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/KeyPath.swift", - "kind": "StringLiteral", - "offset": 301, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 175, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 227, - "length": 7, - "value": "\"level\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 5, - "value": "\"log\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 266, - "length": 33, - "value": "\"⚡️ [\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 284, - "length": 1, - "value": "\"] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 298, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "BooleanLiteral", - "offset": 66, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 293, - "length": 82, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "IntegerLiteral", - "offset": 302, - "length": 4, - "value": "4068" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 26, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 859, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1021, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1033, - "length": 18, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1358, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1996, - "length": 3, - "value": "\"*\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 2021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2134, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2209, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 2302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2447, - "length": 3, - "value": "\"*\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 91, - "length": 11, - "value": "\"capacitor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 136, - "length": 11, - "value": "\"localhost\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 312, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 381, - "length": 7, - "value": "\"debug\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 12, - "value": "\"production\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1366, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1722, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 2356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 184, - "value": "\"<\/widget>\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3201, - "length": 21, - "value": "\"ios.appendUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3256, - "length": 17, - "value": "\"appendUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3407, - "length": 23, - "value": "\"ios.overrideUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3464, - "length": 19, - "value": "\"overrideUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 21, - "value": "\"ios.backgroundColor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3673, - "length": 17, - "value": "\"backgroundColor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3880, - "length": 24, - "value": "\"server.allowNavigation\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 18, - "value": "\"server.iosScheme\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4173, - "length": 17, - "value": "\"server.hostname\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4301, - "length": 12, - "value": "\"server.url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 18, - "value": "\"server.errorPath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4577, - "length": 18, - "value": "\"ios.contentInset\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 11, - "value": "\"automatic\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4823, - "length": 16, - "value": "\"scrollableAxes\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4952, - "length": 7, - "value": "\"never\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5063, - "length": 8, - "value": "\"always\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5290, - "length": 23, - "value": "\"ios.allowsLinkPreview\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5441, - "length": 19, - "value": "\"ios.scrollEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5586, - "length": 17, - "value": "\"ios.zoomEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5635, - "length": 13, - "value": "\"zoomEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5771, - "length": 9, - "value": "\"plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5907, - "length": 21, - "value": "\"ios.loggingBehavior\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5962, - "length": 17, - "value": "\"loggingBehavior\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6211, - "length": 40, - "value": "\"ios.limitsNavigationsToAppBoundDomains\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6401, - "length": 26, - "value": "\"ios.preferredContentMode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6567, - "length": 36, - "value": "\"ios.handleApplicationNotifications\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6764, - "length": 33, - "value": "\"ios.webContentsDebuggingEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 7234, - "length": 15, - "value": "\"DisableDeploy\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7415, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 7529, - "length": 21, - "value": "\"^[a-z][a-z0-9.+-]*$\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 8012, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 8105, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "Dictionary", - "offset": 8664, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "Dictionary", - "offset": 8743, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "Dictionary", - "offset": 344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 446, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 1014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 1229, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "BooleanLiteral", - "offset": 349, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "Dictionary", - "offset": 387, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "Dictionary", - "offset": 416, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 182, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 610, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 948, - "length": 16, - "value": "\"serverBasePath\"" - } - ] -} \ No newline at end of file diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.private.swiftinterface b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.private.swiftinterface deleted file mode 100644 index 5d9015907..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.private.swiftinterface +++ /dev/null @@ -1,772 +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.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Capacitor -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import Capacitor -import CommonCrypto -import Cordova -import Dispatch -import Foundation -import MobileCoreServices -import Swift -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@_inheritsConvenienceInitializers @objc(CAPCookiesPlugin) public class CAPCookiesPlugin : Capacitor.CAPPlugin { - @objc override dynamic public func load() - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -public protocol Router { - func route(for path: Swift.String) -> Swift.String - var basePath: Swift.String { get set } -} -public struct CapacitorRouter : Capacitor.Router { - public init() - public var basePath: Swift.String - public func route(for path: Swift.String) -> Swift.String -} -@objc open class CapacitorUrlRequest : ObjectiveC.NSObject, Foundation.URLSessionTaskDelegate { - public var request: Foundation.URLRequest - public var headers: [Swift.String : Swift.String] - public enum CapacitorUrlRequestError : Swift.Error { - case serializationError(Swift.String?) - } - public init(_ url: Foundation.URL, method: Swift.String) - public func getRequestDataAsJson(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsFormUrlEncoded(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsMultipartFormData(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestDataAsString(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestHeader(_ index: Swift.String) -> Any? - public func getRequestData(_ body: any Capacitor.JSValue, _ contentType: Swift.String, _ dataType: Swift.String? = nil) throws -> Foundation.Data? - @available(*, deprecated, message: "Use newer function with passed headers of type [String: Any]") - public func setRequestHeaders(_ headers: [Swift.String : Swift.String]) - public func setRequestHeaders(_ headers: [Swift.String : Any]) - public func setRequestBody(_ body: any Capacitor.JSValue, _ dataType: Swift.String? = nil) throws - public func setContentType(_ data: Swift.String?) - public func setTimeout(_ timeout: Foundation.TimeInterval) - public func getUrlRequest() -> Foundation.URLRequest - @objc open func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - open func getUrlSession(_ call: Capacitor.CAPPluginCall) -> Foundation.URLSession - @objc deinit -} -@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor(unsafe) open class CAPBridgeViewController : UIKit.UIViewController { - @_Concurrency.MainActor(unsafe) final public var bridge: (any Capacitor.CAPBridgeProtocol)? { - get - } - @_Concurrency.MainActor(unsafe) public var webView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var isStatusBarVisible: Swift.Bool - @_Concurrency.MainActor(unsafe) public var statusBarStyle: UIKit.UIStatusBarStyle - @_Concurrency.MainActor(unsafe) public var statusBarAnimation: UIKit.UIStatusBarAnimation - @objc @_Concurrency.MainActor(unsafe) public var supportedOrientations: [Swift.Int] - @_Concurrency.MainActor(unsafe) final public var isNewBinary: Swift.Bool { - get - set - } - @_Concurrency.MainActor(unsafe) @objc override final public func loadView() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func canPerformUnwindSegueAction(_ action: ObjectiveC.Selector, from fromViewController: UIKit.UIViewController, withSender sender: Any) -> Swift.Bool - @_Concurrency.MainActor(unsafe) open func instanceDescriptor() -> Capacitor.InstanceDescriptor - @_Concurrency.MainActor(unsafe) open func router() -> any Capacitor.Router - @_Concurrency.MainActor(unsafe) open func webViewConfiguration(for instanceConfiguration: Capacitor.InstanceConfiguration) -> WebKit.WKWebViewConfiguration - @_Concurrency.MainActor(unsafe) open func webView(with frame: CoreFoundation.CGRect, configuration: WebKit.WKWebViewConfiguration) -> WebKit.WKWebView - @_Concurrency.MainActor(unsafe) open func capacitorDidLoad() - @_Concurrency.MainActor(unsafe) final public func loadWebView() - @_Concurrency.MainActor(unsafe) open func setStatusBarDefaults() - @_Concurrency.MainActor(unsafe) open func setScreenOrientationDefaults() - @_Concurrency.MainActor(unsafe) @objc override dynamic open var prefersStatusBarHidden: Swift.Bool { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarUpdateAnimation: UIKit.UIStatusBarAnimation { - @objc get - } - @_Concurrency.MainActor(unsafe) open func setStatusBarVisible(_ isStatusBarVisible: Swift.Bool) - @_Concurrency.MainActor(unsafe) open func setStatusBarStyle(_ statusBarStyle: UIKit.UIStatusBarStyle) - @_Concurrency.MainActor(unsafe) open func setStatusBarAnimation(_ statusBarAnimation: UIKit.UIStatusBarAnimation) - @_Concurrency.MainActor(unsafe) @objc override dynamic open var supportedInterfaceOrientations: UIKit.UIInterfaceOrientationMask { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) - @objc deinit -} -extension Capacitor.CAPBridgeViewController { - @objc @_Concurrency.MainActor(unsafe) dynamic public func getServerBasePath() -> Swift.String - @objc @_Concurrency.MainActor(unsafe) dynamic public func setServerBasePath(path: Swift.String) -} -extension Capacitor.CAPBridgeViewController : Capacitor.CAPBridgeDelegate { - @_Concurrency.MainActor(unsafe) public var bridgedWebView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var bridgedViewController: UIKit.UIViewController? { - get - } -} -@objc public protocol CAPBridgeProtocol : ObjectiveC.NSObjectProtocol { - @objc var viewController: UIKit.UIViewController? { get } - @objc var config: Capacitor.InstanceConfiguration { get } - @objc var webView: WebKit.WKWebView? { get } - @objc var notificationRouter: Capacitor.NotificationRouter { get } - @objc var isSimEnvironment: Swift.Bool { get } - @objc var isDevEnvironment: Swift.Bool { get } - @objc var userInterfaceStyle: UIKit.UIUserInterfaceStyle { get } - @objc var autoRegisterPlugins: Swift.Bool { get } - @objc var statusBarVisible: Swift.Bool { get set } - @objc var statusBarStyle: UIKit.UIStatusBarStyle { get set } - @objc var statusBarAnimation: UIKit.UIStatusBarAnimation { get set } - @objc @available(*, deprecated, renamed: "webView") - func getWebView() -> WebKit.WKWebView? - @objc @available(*, deprecated, renamed: "isSimEnvironment") - func isSimulator() -> Swift.Bool - @objc @available(*, deprecated, renamed: "isDevEnvironment") - func isDevMode() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarVisible") - func getStatusBarVisible() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarStyle") - func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @objc @available(*, deprecated, renamed: "userInterfaceStyle") - func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc @available(*, deprecated, message: "Moved - equivalent is found on config.localURL") - func getLocalUrl() -> Swift.String - @objc @available(*, deprecated, renamed: "savedCall(withID:)") - func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc @available(*, deprecated, renamed: "releaseCall(withID:)") - func releaseCall(callbackId: Swift.String) - @objc func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc func saveCall(_ call: Capacitor.CAPPluginCall) - @objc func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc func releaseCall(withID: Swift.String) - @objc func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc func eval(js: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - @objc func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc func setServerBasePath(_ path: Swift.String) - @objc func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)?) - @objc func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)?) -} -extension Capacitor.CAPBridgeProtocol { - @available(*, deprecated, message: "Use CAPLog directly") - public func modulePrint(_ plugin: Capacitor.CAPPlugin, _ items: Any...) - public func alert(_ title: Swift.String, _ message: Swift.String, _ buttonTitle: Swift.String = "OK") - @available(*, deprecated, renamed: "statusBarVisible") - public func setStatusBarVisible(_ visible: Swift.Bool) - @available(*, deprecated, renamed: "statusBarStyle") - public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @available(*, deprecated, renamed: "statusBarAnimation") - public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) -} -public enum CapacitorBridgeError : Swift.Error { - case errorExportingCoreJS - public static func == (a: Capacitor.CapacitorBridgeError, b: Capacitor.CapacitorBridgeError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.CustomNSError { - public static var errorDomain: Swift.String { - get - } - public var errorCode: Swift.Int { - get - } - public var errorUserInfo: [Swift.String : Any] { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } -} -extension WebKit.WKWebView : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == WebKit.WKWebView { - public var keyboardShouldRequireUserInteraction: Swift.Bool? { - get - } - public func setKeyboardShouldRequireUserInteraction(_ flag: Swift.Bool? = nil) -} -extension Foundation.Data : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == Foundation.Data { - public static func data(base64EncodedOrDataUrl: Swift.String) -> Foundation.Data? -} -@objc(CAPWebViewDelegationHandler) @_Concurrency.MainActor(unsafe) public class WebViewDelegationHandler : ObjectiveC.NSObject, WebKit.WKNavigationDelegate, WebKit.WKUIDelegate, WebKit.WKScriptMessageHandler, UIKit.UIScrollViewDelegate { - @_Concurrency.MainActor(unsafe) public var contentController: WebKit.WKUserContentController { - get - } - @_Concurrency.MainActor(unsafe) public init(bridge: Capacitor.CapacitorBridge? = nil) - @_Concurrency.MainActor(unsafe) public func cleanUp() - @_Concurrency.MainActor(unsafe) public func willLoadWebview(_ webView: WebKit.WKWebView?) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didStartProvisionalNavigation navigation: WebKit.WKNavigation!) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestMediaCapturePermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, type: WebKit.WKMediaCaptureType, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestDeviceOrientationAndMotionPermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, decidePolicyFor navigationAction: WebKit.WKNavigationAction, decisionHandler: @escaping (WebKit.WKNavigationActionPolicy) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFinish navigation: WebKit.WKNavigation!) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFail navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFailProvisionalNavigation navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webViewWebContentProcessDidTerminate(_ webView: WebKit.WKWebView) - @_Concurrency.MainActor(unsafe) @objc public func userContentController(_ userContentController: WebKit.WKUserContentController, didReceive message: WebKit.WKScriptMessage) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptAlertPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping () -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptConfirmPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.Bool) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: Swift.String, defaultText: Swift.String?, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.String?) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, createWebViewWith configuration: WebKit.WKWebViewConfiguration, for navigationAction: WebKit.WKNavigationAction, windowFeatures: WebKit.WKWindowFeatures) -> WebKit.WKWebView? - @_Concurrency.MainActor(unsafe) @objc public func scrollViewWillBeginZooming(_ scrollView: UIKit.UIScrollView, with view: UIKit.UIView?) - @objc deinit -} -public protocol JSValue { -} -extension Swift.String : Capacitor.JSValue { -} -extension Swift.Bool : Capacitor.JSValue { -} -extension Swift.Int : Capacitor.JSValue { -} -extension Swift.Float : Capacitor.JSValue { -} -extension Swift.Double : Capacitor.JSValue { -} -extension Foundation.NSNumber : Capacitor.JSValue { -} -extension Foundation.NSNull : Capacitor.JSValue { -} -extension Swift.Array : Capacitor.JSValue { -} -extension Foundation.Date : Capacitor.JSValue { -} -extension Swift.Dictionary : Capacitor.JSValue where Key == Swift.String, Value == any Capacitor.JSValue { -} -public typealias JSObject = [Swift.String : any Capacitor.JSValue] -public typealias JSArray = [any Capacitor.JSValue] -public protocol JSStringContainer { - func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String - func getString(_ key: Swift.String) -> Swift.String? -} -extension Capacitor.JSStringContainer { - public func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String -} -public protocol JSBoolContainer { - func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - func getBool(_ key: Swift.String) -> Swift.Bool? -} -extension Capacitor.JSBoolContainer { - public func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool -} -public protocol JSIntContainer { - func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - func getInt(_ key: Swift.String) -> Swift.Int? -} -extension Capacitor.JSIntContainer { - public func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int -} -public protocol JSFloatContainer { - func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float - func getFloat(_ key: Swift.String) -> Swift.Float? -} -extension Capacitor.JSFloatContainer { - public func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float -} -public protocol JSDoubleContainer { - func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double - func getDouble(_ key: Swift.String) -> Swift.Double? -} -extension Capacitor.JSDoubleContainer { - public func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double -} -public protocol JSDateContainer { - func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date - func getDate(_ key: Swift.String) -> Foundation.Date? -} -extension Capacitor.JSDateContainer { - public func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date -} -public protocol JSArrayContainer { - func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? - func getArray(_ key: Swift.String) -> Capacitor.JSArray? -} -extension Capacitor.JSArrayContainer { - public func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - public func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? -} -public protocol JSObjectContainer { - func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject - func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -extension Capacitor.JSObjectContainer { - public func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject -} -public protocol JSValueContainer : Capacitor.JSArrayContainer, Capacitor.JSBoolContainer, Capacitor.JSDateContainer, Capacitor.JSDoubleContainer, Capacitor.JSFloatContainer, Capacitor.JSIntContainer, Capacitor.JSObjectContainer, Capacitor.JSStringContainer { - static var jsDateFormatter: Foundation.ISO8601DateFormatter { get } - var jsObjectRepresentation: Capacitor.JSObject { get } -} -extension Capacitor.JSValueContainer { - public func getValue(_ key: Swift.String) -> (any Capacitor.JSValue)? - @available(*, renamed: "getValue(_:)", message: "All values returned conform to JSValue, use getValue(_:) instead.") - public func getAny(_ key: Swift.String) -> Any? - public func getString(_ key: Swift.String) -> Swift.String? - public func getBool(_ key: Swift.String) -> Swift.Bool? - public func getInt(_ key: Swift.String) -> Swift.Int? - public func getFloat(_ key: Swift.String) -> Swift.Float? - public func getDouble(_ key: Swift.String) -> Swift.Double? - public func getDate(_ key: Swift.String) -> Foundation.Date? - public func getArray(_ key: Swift.String) -> Capacitor.JSArray? - public func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -public enum JSTypes { -} -extension Capacitor.JSTypes { - public static func coerceDictionaryToJSObject(_ dictionary: Foundation.NSDictionary?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceDictionaryToJSObject(_ dictionary: [Swift.AnyHashable : Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceArrayToJSArray(_ array: [Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSArray? -} -@objc public class CapacitorBridge : ObjectiveC.NSObject, Capacitor.CAPBridgeProtocol { - public static var isDevEnvironment: Swift.Bool { - get - } - @objc public var webView: WebKit.WKWebView? { - @objc get - } - @objc final public let autoRegisterPlugins: Swift.Bool - @objc public var notificationRouter: Capacitor.NotificationRouter - @objc public var isSimEnvironment: Swift.Bool { - @objc get - } - @objc public var isDevEnvironment: Swift.Bool { - @objc get - } - @objc public var userInterfaceStyle: UIKit.UIUserInterfaceStyle { - @objc get - } - @objc public var statusBarVisible: Swift.Bool { - @objc get - @objc set - } - @objc public var statusBarStyle: UIKit.UIStatusBarStyle { - @objc get - @objc set - } - @objc public var statusBarAnimation: UIKit.UIStatusBarAnimation { - @objc get - @objc set - } - public static let capacitorSite: Swift.String - public static let fileStartIdentifier: Swift.String - public static let defaultScheme: Swift.String - public var webViewAssetHandler: Capacitor.WebViewAssetHandler { - get - } - public var webViewDelegationHandler: Capacitor.WebViewDelegationHandler { - get - } - weak public var bridgeDelegate: (any Capacitor.CAPBridgeDelegate)? { - get - } - @objc public var viewController: UIKit.UIViewController? { - @objc get - } - @objc public var config: Capacitor.InstanceConfiguration - @objc public func getWebView() -> WebKit.WKWebView? - @objc public func isSimulator() -> Swift.Bool - @objc public func isDevMode() -> Swift.Bool - @objc public func getStatusBarVisible() -> Swift.Bool - @nonobjc public func setStatusBarVisible(_ visible: Swift.Bool) - @objc public func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @nonobjc public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @objc public func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc public func getLocalUrl() -> Swift.String - @nonobjc public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) - @objc public func setServerBasePath(_ path: Swift.String) - public init(with configuration: Capacitor.InstanceConfiguration, delegate bridgeDelegate: any Capacitor.CAPBridgeDelegate, cordovaConfiguration: Cordova.CDVConfigParser, assetHandler: Capacitor.WebViewAssetHandler, delegationHandler: Capacitor.WebViewDelegationHandler, autoRegisterPlugins: Swift.Bool = true) - @objc deinit - @objc public func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc public func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc public func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc public func saveCall(_ call: Capacitor.CAPPluginCall) - @objc public func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc public func releaseCall(withID: Swift.String) - @objc public func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(callbackId: Swift.String) - @objc public func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc public func eval(js: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - public func logToJs(_ message: Swift.String, _ level: Swift.String = "log") - @objc public func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc public func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc public func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc public func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @objc public func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) -} -@_inheritsConvenienceInitializers @objc open class CAPInstancePlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@objc @_inheritsConvenienceInitializers public class CapacitorWKCookieObserver : ObjectiveC.NSObject, WebKit.WKHTTPCookieStoreObserver { - @objc public func cookiesDidChange(in cookieStore: WebKit.WKHTTPCookieStore) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CapacitorCookieManager { - public func getServerUrl() -> Foundation.URL? - public func getServerUrl(_ urlString: Swift.String?) -> Foundation.URL? - public func encode(_ value: Swift.String) -> Swift.String - public func decode(_ value: Swift.String) -> Swift.String - public func setCookie(_ domain: Swift.String, _ action: Swift.String) - public func setCookie(_ url: Foundation.URL, _ key: Swift.String, _ value: Swift.String, _ expires: Swift.String?, _ path: Swift.String?) - public func getCookiesAsMap(_ url: Foundation.URL) -> [Swift.String : Swift.String] - public func getCookies() -> Swift.String - public func deleteCookie(_ url: Foundation.URL, _ key: Swift.String) - public func clearCookies(_ url: Foundation.URL) - public func clearAllCookies() - public func syncCookiesToWebView() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class CAPFileManager : ObjectiveC.NSObject { - @available(*, deprecated, message: "Use portablePath(fromLocalURL:) on the Bridge") - public static func getPortablePath(host: Swift.String, uri: Foundation.URL?) -> Swift.String? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @available(*, deprecated, message: "'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@objc public class CAPBridge : ObjectiveC.NSObject { - @objc public static let statusBarTappedNotification: Foundation.Notification - public static func getLastUrl() -> Foundation.URL? - public static func handleOpenUrl(_ url: Foundation.URL, _ options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - public static func handleContinueActivity(_ userActivity: Foundation.NSUserActivity, _ restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - public static func handleAppBecameActive(_ application: UIKit.UIApplication) - @objc override dynamic public init() - @objc deinit -} -extension UIKit.UIColor : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T : UIKit.UIColor { - public static func color(r: Swift.Int, g: Swift.Int, b: Swift.Int, a: Swift.Int = 0xFF) -> UIKit.UIColor - public static func color(argb: Swift.UInt32) -> UIKit.UIColor - public static func color(fromHex: Swift.String) -> UIKit.UIColor? -} -public typealias PluginCallResultData = [Swift.String : Any] -public enum PluginCallResult { - case dictionary(Capacitor.PluginCallResultData) -} -@objc public class CAPPluginCallResult : ObjectiveC.NSObject { - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:) public init(_ data: Capacitor.PluginCallResultData?) - @objc deinit -} -@objc public class CAPPluginCallError : ObjectiveC.NSObject { - @objc final public let message: Swift.String - @objc final public let code: Swift.String? - @objc final public let error: (any Swift.Error)? - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:code:error:data:) public init(message: Swift.String, code: Swift.String?, error: (any Swift.Error)?, data: Capacitor.PluginCallResultData?) - @objc deinit -} -extension Foundation.NSNotification.Name { - public static let capacitorOpenURL: Foundation.Notification.Name - public static let capacitorOpenUniversalLink: Foundation.Notification.Name - public static let capacitorContinueActivity: Foundation.Notification.Name - public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc extension Foundation.NSNotification { - @objc public static let capacitorOpenURL: Foundation.Notification.Name - @objc public static let capacitorOpenUniversalLink: Foundation.Notification.Name - @objc public static let capacitorContinueActivity: Foundation.Notification.Name - @objc public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - @objc public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc public enum CAPNotifications : Swift.Int { - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenURL'") - case URLOpen - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenUniversalLink'") - case UniversalLinkOpen - @available(*, deprecated, message: "Notification.Name.capacitorContinueActivity'") - case ContinueActivity - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidRegisterForRemoteNotifications'") - case DidRegisterForRemoteNotificationsWithDeviceToken - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidFailToRegisterForRemoteNotifications'") - case DidFailToRegisterForRemoteNotificationsWithError - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDecidePolicyForNavigationAction'") - case DecidePolicyForNavigationAction - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers public class JSDate { - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias JSResultBody = [Swift.String : Any] -@_inheritsConvenienceInitializers @objc(CAPNotificationRouter) public class NotificationRouter : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate { - weak public var pushNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - weak public var localNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) - @objc override dynamic public init() - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginCallErrorData = [Swift.String : Any] -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginResultData = [Swift.String : Any] -extension Capacitor.CAPPluginCall : Capacitor.JSValueContainer { - public var jsObjectRepresentation: Capacitor.JSObject { - get - } -} -@objc extension Capacitor.CAPPluginCall { - @objc dynamic public var dictionaryRepresentation: Foundation.NSDictionary { - @objc get - } - @objc public static var jsDateFormatter: Foundation.ISO8601DateFormatter -} -@objc extension Capacitor.CAPPluginCall { - @objc @available(*, deprecated, message: "Presence of a key should not be considered significant. Use typed accessors to check the value instead.") - dynamic public func hasOption(_ key: Swift.String) -> Swift.Bool - @objc @available(*, deprecated, renamed: "resolve()") - dynamic public func success() - @objc @available(*, deprecated, renamed: "resolve") - dynamic public func success(_ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func resolve() - @objc dynamic public func resolve(_ data: Capacitor.PluginCallResultData = [:]) - @objc @available(*, deprecated, renamed: "reject") - dynamic public func error(_ message: Swift.String, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func reject(_ message: Swift.String, _ code: Swift.String? = nil, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData? = nil) - @objc dynamic public func unimplemented() - @objc dynamic public func unimplemented(_ message: Swift.String) - @objc dynamic public func unavailable() - @objc dynamic public func unavailable(_ message: Swift.String) -} -public protocol CapacitorExtension { - associatedtype CapacitorType - var capacitor: Self.CapacitorType { get } - static var capacitor: Self.CapacitorType.Type { get } -} -extension Capacitor.CapacitorExtension { - public var capacitor: Capacitor.CapacitorExtensionTypeWrapper { - get - } - public static var capacitor: Capacitor.CapacitorExtensionTypeWrapper.Type { - get - } -} -public struct CapacitorExtensionTypeWrapper { -} -public enum ResponseType : Swift.String { - case arrayBuffer - case blob - case document - case json - case text - public static let `default`: Capacitor.ResponseType - public init(string: Swift.String?) - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers open class HttpRequestHandler { - open class CapacitorHttpRequestBuilder { - public var url: Foundation.URL? - public var method: Swift.String? - public var params: [Swift.String : Swift.String]? - open var request: Capacitor.CapacitorUrlRequest? - public init() - public func setUrl(_ urlString: Swift.String) throws -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setMethod(_ method: Swift.String) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setUrlParams(_ params: [Swift.String : Any]) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - open func openConnection() -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func build() -> Capacitor.CapacitorUrlRequest - @objc deinit - } - public static func setCookiesFromResponse(_ response: Foundation.HTTPURLResponse, _ config: Capacitor.InstanceConfiguration?) - public static func buildResponse(_ data: Foundation.Data?, _ response: Foundation.HTTPURLResponse, responseType: Capacitor.ResponseType = .default) -> [Swift.String : Any] - public static func request(_ call: Capacitor.CAPPluginCall, _ httpMethod: Swift.String?, _ config: Capacitor.InstanceConfiguration?) throws - @objc deinit -} -extension Swift.Array : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper> -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [any Capacitor.JSValue] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [(any Capacitor.JSValue)?] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -@objc(CAPNotificationHandlerProtocol) public protocol NotificationHandlerProtocol { - @objc func willPresent(notification: UserNotifications.UNNotification) -> UserNotifications.UNNotificationPresentationOptions - @objc func didReceive(response: UserNotifications.UNNotificationResponse) -} -extension Foundation.Data { - public var sha256: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers public class AppUUID { - public static func getAppUUID() -> Swift.String - public static func regenerateAppUUID() - @objc deinit -} -@objc(CAPWebViewAssetHandler) public class WebViewAssetHandler : ObjectiveC.NSObject, WebKit.WKURLSchemeHandler { - public init(router: any Capacitor.Router) - public func setAssetPath(_ assetPath: Swift.String) - public func setServerUrl(_ serverUrl: Foundation.URL?) - @objc public func webView(_ webView: WebKit.WKWebView, start urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc public func webView(_ webView: WebKit.WKWebView, stop urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPHttpPlugin) public class CAPHttpPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers @objc public class PluginConfig : ObjectiveC.NSObject { - @objc public func getString(_ configKey: Swift.String, _ defaultValue: Swift.String? = nil) -> Swift.String? - @objc public func getBoolean(_ configKey: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - @objc public func getInt(_ configKey: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - public func getArray(_ configKey: Swift.String, _ defaultValue: Capacitor.JSArray? = nil) -> Capacitor.JSArray? - public func getObject(_ configKey: Swift.String) -> Capacitor.JSObject? - @objc public func isEmpty() -> Swift.Bool - public func getConfigJSON() -> Capacitor.JSObject - @objc deinit -} -public protocol CAPBridgeDelegate : AnyObject { - var bridgedWebView: WebKit.WKWebView? { get } - var bridgedViewController: UIKit.UIViewController? { get } -} -public struct KeyPath { -} -extension Capacitor.KeyPath : Swift.ExpressibleByStringLiteral { - public init(stringLiteral value: Swift.String) - public init(unicodeScalarLiteral value: Swift.String) - public init(extendedGraphemeClusterLiteral value: Swift.String) - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String -} -extension Swift.Dictionary where Key == Swift.String, Value == any Capacitor.JSValue { - public subscript(keyPath keyPath: Capacitor.KeyPath) -> (any Capacitor.JSValue)? { - get - } -} -@_inheritsConvenienceInitializers @objc(CAPConsolePlugin) public class CAPConsolePlugin : Capacitor.CAPPlugin { - @objc public func log(_ call: Capacitor.CAPPluginCall) - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CAPLog { - public static var enableLogging: Swift.Bool - public static func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n") - @objc deinit -} -extension Capacitor.InstanceConfiguration { - @objc dynamic public var appStartFileURL: Foundation.URL { - @objc get - } - @objc dynamic public var appStartServerURL: Foundation.URL { - @objc get - } - @objc dynamic public var errorPathURL: Foundation.URL? { - @objc get - } - @available(*, deprecated, message: "Use getPluginConfig") - @objc dynamic public func getPluginConfigValue(_ pluginId: Swift.String, _ configKey: Swift.String) -> Any? - @objc dynamic public func getPluginConfig(_ pluginId: Swift.String) -> Capacitor.PluginConfig - @objc dynamic public func shouldAllowNavigation(to host: Swift.String) -> Swift.Bool - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getValue(_ key: Swift.String) -> Any? - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getString(_ key: Swift.String) -> Swift.String? -} -public enum InstanceDescriptorDefaults { - public static let scheme: Swift.String - public static let hostname: Swift.String -} -extension Capacitor.InstanceDescriptor { - @objc dynamic public var cordovaDeployDisabled: Swift.Bool { - @objc get - } - @objc dynamic public func normalize() -} -@_inheritsConvenienceInitializers @objc(CAPApplicationDelegateProxy) @_Concurrency.MainActor(unsafe) public class ApplicationDelegateProxy : ObjectiveC.NSObject, UIKit.UIApplicationDelegate { - @_Concurrency.MainActor(unsafe) public static let shared: Capacitor.ApplicationDelegateProxy - @_Concurrency.MainActor(unsafe) public var lastURL: Foundation.URL? { - get - } - @_Concurrency.MainActor(unsafe) @objc public func application(_ app: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any] = [:]) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity, restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPWebViewPlugin) public class CAPWebViewPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -extension Capacitor.CapacitorBridgeError : Swift.Equatable {} -extension Capacitor.CapacitorBridgeError : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.Equatable {} -extension Capacitor.CAPNotifications : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.RawRepresentable {} -extension Capacitor.ResponseType : Swift.Equatable {} -extension Capacitor.ResponseType : Swift.Hashable {} -extension Capacitor.ResponseType : Swift.RawRepresentable {} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.swiftdoc b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index a1f0a157c..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.swiftinterface b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.swiftinterface deleted file mode 100644 index 5d9015907..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios.swiftinterface +++ /dev/null @@ -1,772 +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.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Capacitor -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import Capacitor -import CommonCrypto -import Cordova -import Dispatch -import Foundation -import MobileCoreServices -import Swift -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@_inheritsConvenienceInitializers @objc(CAPCookiesPlugin) public class CAPCookiesPlugin : Capacitor.CAPPlugin { - @objc override dynamic public func load() - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -public protocol Router { - func route(for path: Swift.String) -> Swift.String - var basePath: Swift.String { get set } -} -public struct CapacitorRouter : Capacitor.Router { - public init() - public var basePath: Swift.String - public func route(for path: Swift.String) -> Swift.String -} -@objc open class CapacitorUrlRequest : ObjectiveC.NSObject, Foundation.URLSessionTaskDelegate { - public var request: Foundation.URLRequest - public var headers: [Swift.String : Swift.String] - public enum CapacitorUrlRequestError : Swift.Error { - case serializationError(Swift.String?) - } - public init(_ url: Foundation.URL, method: Swift.String) - public func getRequestDataAsJson(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsFormUrlEncoded(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsMultipartFormData(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestDataAsString(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestHeader(_ index: Swift.String) -> Any? - public func getRequestData(_ body: any Capacitor.JSValue, _ contentType: Swift.String, _ dataType: Swift.String? = nil) throws -> Foundation.Data? - @available(*, deprecated, message: "Use newer function with passed headers of type [String: Any]") - public func setRequestHeaders(_ headers: [Swift.String : Swift.String]) - public func setRequestHeaders(_ headers: [Swift.String : Any]) - public func setRequestBody(_ body: any Capacitor.JSValue, _ dataType: Swift.String? = nil) throws - public func setContentType(_ data: Swift.String?) - public func setTimeout(_ timeout: Foundation.TimeInterval) - public func getUrlRequest() -> Foundation.URLRequest - @objc open func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - open func getUrlSession(_ call: Capacitor.CAPPluginCall) -> Foundation.URLSession - @objc deinit -} -@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor(unsafe) open class CAPBridgeViewController : UIKit.UIViewController { - @_Concurrency.MainActor(unsafe) final public var bridge: (any Capacitor.CAPBridgeProtocol)? { - get - } - @_Concurrency.MainActor(unsafe) public var webView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var isStatusBarVisible: Swift.Bool - @_Concurrency.MainActor(unsafe) public var statusBarStyle: UIKit.UIStatusBarStyle - @_Concurrency.MainActor(unsafe) public var statusBarAnimation: UIKit.UIStatusBarAnimation - @objc @_Concurrency.MainActor(unsafe) public var supportedOrientations: [Swift.Int] - @_Concurrency.MainActor(unsafe) final public var isNewBinary: Swift.Bool { - get - set - } - @_Concurrency.MainActor(unsafe) @objc override final public func loadView() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func canPerformUnwindSegueAction(_ action: ObjectiveC.Selector, from fromViewController: UIKit.UIViewController, withSender sender: Any) -> Swift.Bool - @_Concurrency.MainActor(unsafe) open func instanceDescriptor() -> Capacitor.InstanceDescriptor - @_Concurrency.MainActor(unsafe) open func router() -> any Capacitor.Router - @_Concurrency.MainActor(unsafe) open func webViewConfiguration(for instanceConfiguration: Capacitor.InstanceConfiguration) -> WebKit.WKWebViewConfiguration - @_Concurrency.MainActor(unsafe) open func webView(with frame: CoreFoundation.CGRect, configuration: WebKit.WKWebViewConfiguration) -> WebKit.WKWebView - @_Concurrency.MainActor(unsafe) open func capacitorDidLoad() - @_Concurrency.MainActor(unsafe) final public func loadWebView() - @_Concurrency.MainActor(unsafe) open func setStatusBarDefaults() - @_Concurrency.MainActor(unsafe) open func setScreenOrientationDefaults() - @_Concurrency.MainActor(unsafe) @objc override dynamic open var prefersStatusBarHidden: Swift.Bool { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarUpdateAnimation: UIKit.UIStatusBarAnimation { - @objc get - } - @_Concurrency.MainActor(unsafe) open func setStatusBarVisible(_ isStatusBarVisible: Swift.Bool) - @_Concurrency.MainActor(unsafe) open func setStatusBarStyle(_ statusBarStyle: UIKit.UIStatusBarStyle) - @_Concurrency.MainActor(unsafe) open func setStatusBarAnimation(_ statusBarAnimation: UIKit.UIStatusBarAnimation) - @_Concurrency.MainActor(unsafe) @objc override dynamic open var supportedInterfaceOrientations: UIKit.UIInterfaceOrientationMask { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) - @objc deinit -} -extension Capacitor.CAPBridgeViewController { - @objc @_Concurrency.MainActor(unsafe) dynamic public func getServerBasePath() -> Swift.String - @objc @_Concurrency.MainActor(unsafe) dynamic public func setServerBasePath(path: Swift.String) -} -extension Capacitor.CAPBridgeViewController : Capacitor.CAPBridgeDelegate { - @_Concurrency.MainActor(unsafe) public var bridgedWebView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var bridgedViewController: UIKit.UIViewController? { - get - } -} -@objc public protocol CAPBridgeProtocol : ObjectiveC.NSObjectProtocol { - @objc var viewController: UIKit.UIViewController? { get } - @objc var config: Capacitor.InstanceConfiguration { get } - @objc var webView: WebKit.WKWebView? { get } - @objc var notificationRouter: Capacitor.NotificationRouter { get } - @objc var isSimEnvironment: Swift.Bool { get } - @objc var isDevEnvironment: Swift.Bool { get } - @objc var userInterfaceStyle: UIKit.UIUserInterfaceStyle { get } - @objc var autoRegisterPlugins: Swift.Bool { get } - @objc var statusBarVisible: Swift.Bool { get set } - @objc var statusBarStyle: UIKit.UIStatusBarStyle { get set } - @objc var statusBarAnimation: UIKit.UIStatusBarAnimation { get set } - @objc @available(*, deprecated, renamed: "webView") - func getWebView() -> WebKit.WKWebView? - @objc @available(*, deprecated, renamed: "isSimEnvironment") - func isSimulator() -> Swift.Bool - @objc @available(*, deprecated, renamed: "isDevEnvironment") - func isDevMode() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarVisible") - func getStatusBarVisible() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarStyle") - func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @objc @available(*, deprecated, renamed: "userInterfaceStyle") - func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc @available(*, deprecated, message: "Moved - equivalent is found on config.localURL") - func getLocalUrl() -> Swift.String - @objc @available(*, deprecated, renamed: "savedCall(withID:)") - func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc @available(*, deprecated, renamed: "releaseCall(withID:)") - func releaseCall(callbackId: Swift.String) - @objc func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc func saveCall(_ call: Capacitor.CAPPluginCall) - @objc func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc func releaseCall(withID: Swift.String) - @objc func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc func eval(js: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - @objc func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc func setServerBasePath(_ path: Swift.String) - @objc func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)?) - @objc func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)?) -} -extension Capacitor.CAPBridgeProtocol { - @available(*, deprecated, message: "Use CAPLog directly") - public func modulePrint(_ plugin: Capacitor.CAPPlugin, _ items: Any...) - public func alert(_ title: Swift.String, _ message: Swift.String, _ buttonTitle: Swift.String = "OK") - @available(*, deprecated, renamed: "statusBarVisible") - public func setStatusBarVisible(_ visible: Swift.Bool) - @available(*, deprecated, renamed: "statusBarStyle") - public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @available(*, deprecated, renamed: "statusBarAnimation") - public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) -} -public enum CapacitorBridgeError : Swift.Error { - case errorExportingCoreJS - public static func == (a: Capacitor.CapacitorBridgeError, b: Capacitor.CapacitorBridgeError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.CustomNSError { - public static var errorDomain: Swift.String { - get - } - public var errorCode: Swift.Int { - get - } - public var errorUserInfo: [Swift.String : Any] { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } -} -extension WebKit.WKWebView : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == WebKit.WKWebView { - public var keyboardShouldRequireUserInteraction: Swift.Bool? { - get - } - public func setKeyboardShouldRequireUserInteraction(_ flag: Swift.Bool? = nil) -} -extension Foundation.Data : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == Foundation.Data { - public static func data(base64EncodedOrDataUrl: Swift.String) -> Foundation.Data? -} -@objc(CAPWebViewDelegationHandler) @_Concurrency.MainActor(unsafe) public class WebViewDelegationHandler : ObjectiveC.NSObject, WebKit.WKNavigationDelegate, WebKit.WKUIDelegate, WebKit.WKScriptMessageHandler, UIKit.UIScrollViewDelegate { - @_Concurrency.MainActor(unsafe) public var contentController: WebKit.WKUserContentController { - get - } - @_Concurrency.MainActor(unsafe) public init(bridge: Capacitor.CapacitorBridge? = nil) - @_Concurrency.MainActor(unsafe) public func cleanUp() - @_Concurrency.MainActor(unsafe) public func willLoadWebview(_ webView: WebKit.WKWebView?) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didStartProvisionalNavigation navigation: WebKit.WKNavigation!) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestMediaCapturePermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, type: WebKit.WKMediaCaptureType, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestDeviceOrientationAndMotionPermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, decidePolicyFor navigationAction: WebKit.WKNavigationAction, decisionHandler: @escaping (WebKit.WKNavigationActionPolicy) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFinish navigation: WebKit.WKNavigation!) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFail navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFailProvisionalNavigation navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webViewWebContentProcessDidTerminate(_ webView: WebKit.WKWebView) - @_Concurrency.MainActor(unsafe) @objc public func userContentController(_ userContentController: WebKit.WKUserContentController, didReceive message: WebKit.WKScriptMessage) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptAlertPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping () -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptConfirmPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.Bool) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: Swift.String, defaultText: Swift.String?, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.String?) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, createWebViewWith configuration: WebKit.WKWebViewConfiguration, for navigationAction: WebKit.WKNavigationAction, windowFeatures: WebKit.WKWindowFeatures) -> WebKit.WKWebView? - @_Concurrency.MainActor(unsafe) @objc public func scrollViewWillBeginZooming(_ scrollView: UIKit.UIScrollView, with view: UIKit.UIView?) - @objc deinit -} -public protocol JSValue { -} -extension Swift.String : Capacitor.JSValue { -} -extension Swift.Bool : Capacitor.JSValue { -} -extension Swift.Int : Capacitor.JSValue { -} -extension Swift.Float : Capacitor.JSValue { -} -extension Swift.Double : Capacitor.JSValue { -} -extension Foundation.NSNumber : Capacitor.JSValue { -} -extension Foundation.NSNull : Capacitor.JSValue { -} -extension Swift.Array : Capacitor.JSValue { -} -extension Foundation.Date : Capacitor.JSValue { -} -extension Swift.Dictionary : Capacitor.JSValue where Key == Swift.String, Value == any Capacitor.JSValue { -} -public typealias JSObject = [Swift.String : any Capacitor.JSValue] -public typealias JSArray = [any Capacitor.JSValue] -public protocol JSStringContainer { - func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String - func getString(_ key: Swift.String) -> Swift.String? -} -extension Capacitor.JSStringContainer { - public func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String -} -public protocol JSBoolContainer { - func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - func getBool(_ key: Swift.String) -> Swift.Bool? -} -extension Capacitor.JSBoolContainer { - public func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool -} -public protocol JSIntContainer { - func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - func getInt(_ key: Swift.String) -> Swift.Int? -} -extension Capacitor.JSIntContainer { - public func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int -} -public protocol JSFloatContainer { - func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float - func getFloat(_ key: Swift.String) -> Swift.Float? -} -extension Capacitor.JSFloatContainer { - public func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float -} -public protocol JSDoubleContainer { - func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double - func getDouble(_ key: Swift.String) -> Swift.Double? -} -extension Capacitor.JSDoubleContainer { - public func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double -} -public protocol JSDateContainer { - func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date - func getDate(_ key: Swift.String) -> Foundation.Date? -} -extension Capacitor.JSDateContainer { - public func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date -} -public protocol JSArrayContainer { - func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? - func getArray(_ key: Swift.String) -> Capacitor.JSArray? -} -extension Capacitor.JSArrayContainer { - public func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - public func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? -} -public protocol JSObjectContainer { - func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject - func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -extension Capacitor.JSObjectContainer { - public func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject -} -public protocol JSValueContainer : Capacitor.JSArrayContainer, Capacitor.JSBoolContainer, Capacitor.JSDateContainer, Capacitor.JSDoubleContainer, Capacitor.JSFloatContainer, Capacitor.JSIntContainer, Capacitor.JSObjectContainer, Capacitor.JSStringContainer { - static var jsDateFormatter: Foundation.ISO8601DateFormatter { get } - var jsObjectRepresentation: Capacitor.JSObject { get } -} -extension Capacitor.JSValueContainer { - public func getValue(_ key: Swift.String) -> (any Capacitor.JSValue)? - @available(*, renamed: "getValue(_:)", message: "All values returned conform to JSValue, use getValue(_:) instead.") - public func getAny(_ key: Swift.String) -> Any? - public func getString(_ key: Swift.String) -> Swift.String? - public func getBool(_ key: Swift.String) -> Swift.Bool? - public func getInt(_ key: Swift.String) -> Swift.Int? - public func getFloat(_ key: Swift.String) -> Swift.Float? - public func getDouble(_ key: Swift.String) -> Swift.Double? - public func getDate(_ key: Swift.String) -> Foundation.Date? - public func getArray(_ key: Swift.String) -> Capacitor.JSArray? - public func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -public enum JSTypes { -} -extension Capacitor.JSTypes { - public static func coerceDictionaryToJSObject(_ dictionary: Foundation.NSDictionary?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceDictionaryToJSObject(_ dictionary: [Swift.AnyHashable : Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceArrayToJSArray(_ array: [Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSArray? -} -@objc public class CapacitorBridge : ObjectiveC.NSObject, Capacitor.CAPBridgeProtocol { - public static var isDevEnvironment: Swift.Bool { - get - } - @objc public var webView: WebKit.WKWebView? { - @objc get - } - @objc final public let autoRegisterPlugins: Swift.Bool - @objc public var notificationRouter: Capacitor.NotificationRouter - @objc public var isSimEnvironment: Swift.Bool { - @objc get - } - @objc public var isDevEnvironment: Swift.Bool { - @objc get - } - @objc public var userInterfaceStyle: UIKit.UIUserInterfaceStyle { - @objc get - } - @objc public var statusBarVisible: Swift.Bool { - @objc get - @objc set - } - @objc public var statusBarStyle: UIKit.UIStatusBarStyle { - @objc get - @objc set - } - @objc public var statusBarAnimation: UIKit.UIStatusBarAnimation { - @objc get - @objc set - } - public static let capacitorSite: Swift.String - public static let fileStartIdentifier: Swift.String - public static let defaultScheme: Swift.String - public var webViewAssetHandler: Capacitor.WebViewAssetHandler { - get - } - public var webViewDelegationHandler: Capacitor.WebViewDelegationHandler { - get - } - weak public var bridgeDelegate: (any Capacitor.CAPBridgeDelegate)? { - get - } - @objc public var viewController: UIKit.UIViewController? { - @objc get - } - @objc public var config: Capacitor.InstanceConfiguration - @objc public func getWebView() -> WebKit.WKWebView? - @objc public func isSimulator() -> Swift.Bool - @objc public func isDevMode() -> Swift.Bool - @objc public func getStatusBarVisible() -> Swift.Bool - @nonobjc public func setStatusBarVisible(_ visible: Swift.Bool) - @objc public func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @nonobjc public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @objc public func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc public func getLocalUrl() -> Swift.String - @nonobjc public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) - @objc public func setServerBasePath(_ path: Swift.String) - public init(with configuration: Capacitor.InstanceConfiguration, delegate bridgeDelegate: any Capacitor.CAPBridgeDelegate, cordovaConfiguration: Cordova.CDVConfigParser, assetHandler: Capacitor.WebViewAssetHandler, delegationHandler: Capacitor.WebViewDelegationHandler, autoRegisterPlugins: Swift.Bool = true) - @objc deinit - @objc public func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc public func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc public func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc public func saveCall(_ call: Capacitor.CAPPluginCall) - @objc public func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc public func releaseCall(withID: Swift.String) - @objc public func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(callbackId: Swift.String) - @objc public func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc public func eval(js: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - public func logToJs(_ message: Swift.String, _ level: Swift.String = "log") - @objc public func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc public func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc public func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc public func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @objc public func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) -} -@_inheritsConvenienceInitializers @objc open class CAPInstancePlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@objc @_inheritsConvenienceInitializers public class CapacitorWKCookieObserver : ObjectiveC.NSObject, WebKit.WKHTTPCookieStoreObserver { - @objc public func cookiesDidChange(in cookieStore: WebKit.WKHTTPCookieStore) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CapacitorCookieManager { - public func getServerUrl() -> Foundation.URL? - public func getServerUrl(_ urlString: Swift.String?) -> Foundation.URL? - public func encode(_ value: Swift.String) -> Swift.String - public func decode(_ value: Swift.String) -> Swift.String - public func setCookie(_ domain: Swift.String, _ action: Swift.String) - public func setCookie(_ url: Foundation.URL, _ key: Swift.String, _ value: Swift.String, _ expires: Swift.String?, _ path: Swift.String?) - public func getCookiesAsMap(_ url: Foundation.URL) -> [Swift.String : Swift.String] - public func getCookies() -> Swift.String - public func deleteCookie(_ url: Foundation.URL, _ key: Swift.String) - public func clearCookies(_ url: Foundation.URL) - public func clearAllCookies() - public func syncCookiesToWebView() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class CAPFileManager : ObjectiveC.NSObject { - @available(*, deprecated, message: "Use portablePath(fromLocalURL:) on the Bridge") - public static func getPortablePath(host: Swift.String, uri: Foundation.URL?) -> Swift.String? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @available(*, deprecated, message: "'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@objc public class CAPBridge : ObjectiveC.NSObject { - @objc public static let statusBarTappedNotification: Foundation.Notification - public static func getLastUrl() -> Foundation.URL? - public static func handleOpenUrl(_ url: Foundation.URL, _ options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - public static func handleContinueActivity(_ userActivity: Foundation.NSUserActivity, _ restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - public static func handleAppBecameActive(_ application: UIKit.UIApplication) - @objc override dynamic public init() - @objc deinit -} -extension UIKit.UIColor : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T : UIKit.UIColor { - public static func color(r: Swift.Int, g: Swift.Int, b: Swift.Int, a: Swift.Int = 0xFF) -> UIKit.UIColor - public static func color(argb: Swift.UInt32) -> UIKit.UIColor - public static func color(fromHex: Swift.String) -> UIKit.UIColor? -} -public typealias PluginCallResultData = [Swift.String : Any] -public enum PluginCallResult { - case dictionary(Capacitor.PluginCallResultData) -} -@objc public class CAPPluginCallResult : ObjectiveC.NSObject { - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:) public init(_ data: Capacitor.PluginCallResultData?) - @objc deinit -} -@objc public class CAPPluginCallError : ObjectiveC.NSObject { - @objc final public let message: Swift.String - @objc final public let code: Swift.String? - @objc final public let error: (any Swift.Error)? - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:code:error:data:) public init(message: Swift.String, code: Swift.String?, error: (any Swift.Error)?, data: Capacitor.PluginCallResultData?) - @objc deinit -} -extension Foundation.NSNotification.Name { - public static let capacitorOpenURL: Foundation.Notification.Name - public static let capacitorOpenUniversalLink: Foundation.Notification.Name - public static let capacitorContinueActivity: Foundation.Notification.Name - public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc extension Foundation.NSNotification { - @objc public static let capacitorOpenURL: Foundation.Notification.Name - @objc public static let capacitorOpenUniversalLink: Foundation.Notification.Name - @objc public static let capacitorContinueActivity: Foundation.Notification.Name - @objc public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - @objc public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc public enum CAPNotifications : Swift.Int { - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenURL'") - case URLOpen - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenUniversalLink'") - case UniversalLinkOpen - @available(*, deprecated, message: "Notification.Name.capacitorContinueActivity'") - case ContinueActivity - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidRegisterForRemoteNotifications'") - case DidRegisterForRemoteNotificationsWithDeviceToken - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidFailToRegisterForRemoteNotifications'") - case DidFailToRegisterForRemoteNotificationsWithError - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDecidePolicyForNavigationAction'") - case DecidePolicyForNavigationAction - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers public class JSDate { - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias JSResultBody = [Swift.String : Any] -@_inheritsConvenienceInitializers @objc(CAPNotificationRouter) public class NotificationRouter : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate { - weak public var pushNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - weak public var localNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) - @objc override dynamic public init() - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginCallErrorData = [Swift.String : Any] -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginResultData = [Swift.String : Any] -extension Capacitor.CAPPluginCall : Capacitor.JSValueContainer { - public var jsObjectRepresentation: Capacitor.JSObject { - get - } -} -@objc extension Capacitor.CAPPluginCall { - @objc dynamic public var dictionaryRepresentation: Foundation.NSDictionary { - @objc get - } - @objc public static var jsDateFormatter: Foundation.ISO8601DateFormatter -} -@objc extension Capacitor.CAPPluginCall { - @objc @available(*, deprecated, message: "Presence of a key should not be considered significant. Use typed accessors to check the value instead.") - dynamic public func hasOption(_ key: Swift.String) -> Swift.Bool - @objc @available(*, deprecated, renamed: "resolve()") - dynamic public func success() - @objc @available(*, deprecated, renamed: "resolve") - dynamic public func success(_ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func resolve() - @objc dynamic public func resolve(_ data: Capacitor.PluginCallResultData = [:]) - @objc @available(*, deprecated, renamed: "reject") - dynamic public func error(_ message: Swift.String, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func reject(_ message: Swift.String, _ code: Swift.String? = nil, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData? = nil) - @objc dynamic public func unimplemented() - @objc dynamic public func unimplemented(_ message: Swift.String) - @objc dynamic public func unavailable() - @objc dynamic public func unavailable(_ message: Swift.String) -} -public protocol CapacitorExtension { - associatedtype CapacitorType - var capacitor: Self.CapacitorType { get } - static var capacitor: Self.CapacitorType.Type { get } -} -extension Capacitor.CapacitorExtension { - public var capacitor: Capacitor.CapacitorExtensionTypeWrapper { - get - } - public static var capacitor: Capacitor.CapacitorExtensionTypeWrapper.Type { - get - } -} -public struct CapacitorExtensionTypeWrapper { -} -public enum ResponseType : Swift.String { - case arrayBuffer - case blob - case document - case json - case text - public static let `default`: Capacitor.ResponseType - public init(string: Swift.String?) - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers open class HttpRequestHandler { - open class CapacitorHttpRequestBuilder { - public var url: Foundation.URL? - public var method: Swift.String? - public var params: [Swift.String : Swift.String]? - open var request: Capacitor.CapacitorUrlRequest? - public init() - public func setUrl(_ urlString: Swift.String) throws -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setMethod(_ method: Swift.String) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setUrlParams(_ params: [Swift.String : Any]) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - open func openConnection() -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func build() -> Capacitor.CapacitorUrlRequest - @objc deinit - } - public static func setCookiesFromResponse(_ response: Foundation.HTTPURLResponse, _ config: Capacitor.InstanceConfiguration?) - public static func buildResponse(_ data: Foundation.Data?, _ response: Foundation.HTTPURLResponse, responseType: Capacitor.ResponseType = .default) -> [Swift.String : Any] - public static func request(_ call: Capacitor.CAPPluginCall, _ httpMethod: Swift.String?, _ config: Capacitor.InstanceConfiguration?) throws - @objc deinit -} -extension Swift.Array : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper> -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [any Capacitor.JSValue] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [(any Capacitor.JSValue)?] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -@objc(CAPNotificationHandlerProtocol) public protocol NotificationHandlerProtocol { - @objc func willPresent(notification: UserNotifications.UNNotification) -> UserNotifications.UNNotificationPresentationOptions - @objc func didReceive(response: UserNotifications.UNNotificationResponse) -} -extension Foundation.Data { - public var sha256: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers public class AppUUID { - public static func getAppUUID() -> Swift.String - public static func regenerateAppUUID() - @objc deinit -} -@objc(CAPWebViewAssetHandler) public class WebViewAssetHandler : ObjectiveC.NSObject, WebKit.WKURLSchemeHandler { - public init(router: any Capacitor.Router) - public func setAssetPath(_ assetPath: Swift.String) - public func setServerUrl(_ serverUrl: Foundation.URL?) - @objc public func webView(_ webView: WebKit.WKWebView, start urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc public func webView(_ webView: WebKit.WKWebView, stop urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPHttpPlugin) public class CAPHttpPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers @objc public class PluginConfig : ObjectiveC.NSObject { - @objc public func getString(_ configKey: Swift.String, _ defaultValue: Swift.String? = nil) -> Swift.String? - @objc public func getBoolean(_ configKey: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - @objc public func getInt(_ configKey: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - public func getArray(_ configKey: Swift.String, _ defaultValue: Capacitor.JSArray? = nil) -> Capacitor.JSArray? - public func getObject(_ configKey: Swift.String) -> Capacitor.JSObject? - @objc public func isEmpty() -> Swift.Bool - public func getConfigJSON() -> Capacitor.JSObject - @objc deinit -} -public protocol CAPBridgeDelegate : AnyObject { - var bridgedWebView: WebKit.WKWebView? { get } - var bridgedViewController: UIKit.UIViewController? { get } -} -public struct KeyPath { -} -extension Capacitor.KeyPath : Swift.ExpressibleByStringLiteral { - public init(stringLiteral value: Swift.String) - public init(unicodeScalarLiteral value: Swift.String) - public init(extendedGraphemeClusterLiteral value: Swift.String) - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String -} -extension Swift.Dictionary where Key == Swift.String, Value == any Capacitor.JSValue { - public subscript(keyPath keyPath: Capacitor.KeyPath) -> (any Capacitor.JSValue)? { - get - } -} -@_inheritsConvenienceInitializers @objc(CAPConsolePlugin) public class CAPConsolePlugin : Capacitor.CAPPlugin { - @objc public func log(_ call: Capacitor.CAPPluginCall) - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CAPLog { - public static var enableLogging: Swift.Bool - public static func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n") - @objc deinit -} -extension Capacitor.InstanceConfiguration { - @objc dynamic public var appStartFileURL: Foundation.URL { - @objc get - } - @objc dynamic public var appStartServerURL: Foundation.URL { - @objc get - } - @objc dynamic public var errorPathURL: Foundation.URL? { - @objc get - } - @available(*, deprecated, message: "Use getPluginConfig") - @objc dynamic public func getPluginConfigValue(_ pluginId: Swift.String, _ configKey: Swift.String) -> Any? - @objc dynamic public func getPluginConfig(_ pluginId: Swift.String) -> Capacitor.PluginConfig - @objc dynamic public func shouldAllowNavigation(to host: Swift.String) -> Swift.Bool - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getValue(_ key: Swift.String) -> Any? - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getString(_ key: Swift.String) -> Swift.String? -} -public enum InstanceDescriptorDefaults { - public static let scheme: Swift.String - public static let hostname: Swift.String -} -extension Capacitor.InstanceDescriptor { - @objc dynamic public var cordovaDeployDisabled: Swift.Bool { - @objc get - } - @objc dynamic public func normalize() -} -@_inheritsConvenienceInitializers @objc(CAPApplicationDelegateProxy) @_Concurrency.MainActor(unsafe) public class ApplicationDelegateProxy : ObjectiveC.NSObject, UIKit.UIApplicationDelegate { - @_Concurrency.MainActor(unsafe) public static let shared: Capacitor.ApplicationDelegateProxy - @_Concurrency.MainActor(unsafe) public var lastURL: Foundation.URL? { - get - } - @_Concurrency.MainActor(unsafe) @objc public func application(_ app: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any] = [:]) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity, restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPWebViewPlugin) public class CAPWebViewPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -extension Capacitor.CapacitorBridgeError : Swift.Equatable {} -extension Capacitor.CapacitorBridgeError : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.Equatable {} -extension Capacitor.CAPNotifications : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.RawRepresentable {} -extension Capacitor.ResponseType : Swift.Equatable {} -extension Capacitor.ResponseType : Swift.Hashable {} -extension Capacitor.ResponseType : Swift.RawRepresentable {} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/module.modulemap b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/module.modulemap deleted file mode 100644 index 58295716b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/Modules/module.modulemap +++ /dev/null @@ -1,13 +0,0 @@ -framework module Capacitor { - umbrella header "Capacitor.h" - exclude header "CAPBridgedJSTypes.h" - exclude header "CAPBridgeViewController+CDVScreenOrientationDelegate.h" - - export * - module * { export * } -} - -module Capacitor.Swift { - header "Capacitor-Swift.h" - requires objc -} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/PrivateHeaders/CAPBridgedJSTypes.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/PrivateHeaders/CAPBridgedJSTypes.h deleted file mode 100644 index 516c8648b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/PrivateHeaders/CAPBridgedJSTypes.h +++ /dev/null @@ -1,18 +0,0 @@ -// Convenience methods for bridging to/from JavaScript types. Deliberately hidden from -// Swift by omission (to avoid collisions with Swift protocols), use -// `#import ` if working in Objective-C. - -#import -#import - -@protocol BridgedJSValueContainerImplementation -@required -- (NSString * _Nullable)getString:(NSString * _Nonnull)key defaultValue:(NSString * _Nullable)defaultValue; -- (NSDate * _Nullable)getDate:(NSString * _Nonnull)key defaultValue:(NSDate * _Nullable)defaultValue; -- (NSDictionary * _Nullable)getObject:(NSString * _Nonnull)key defaultValue:(NSDictionary * _Nullable)defaultValue; -- (NSNumber * _Nullable)getNumber:(NSString * _Nonnull)key defaultValue:(NSNumber * _Nullable)defaultValue; -- (BOOL)getBool:(NSString * _Nonnull)key defaultValue:(BOOL)defaultValue; -@end - -@interface CAPPluginCall (BridgedJSProtocol) -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/native-bridge.js b/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/native-bridge.js deleted file mode 100644 index 58d694077..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/Capacitor.framework/native-bridge.js +++ /dev/null @@ -1,930 +0,0 @@ - -/*! Capacitor: https://capacitorjs.com/ - MIT License */ -/* Generated File. Do not edit. */ - -var nativeBridge = (function (exports) { - 'use strict'; - - var ExceptionCode; - (function (ExceptionCode) { - /** - * API is not implemented. - * - * This usually means the API can't be used because it is not implemented for - * the current platform. - */ - ExceptionCode["Unimplemented"] = "UNIMPLEMENTED"; - /** - * API is not available. - * - * This means the API can't be used right now because: - * - it is currently missing a prerequisite, such as network connectivity - * - it requires a particular platform or browser version - */ - ExceptionCode["Unavailable"] = "UNAVAILABLE"; - })(ExceptionCode || (ExceptionCode = {})); - class CapacitorException extends Error { - constructor(message, code, data) { - super(message); - this.message = message; - this.code = code; - this.data = data; - } - } - - // For removing exports for iOS/Android, keep let for reassignment - // eslint-disable-next-line - let dummy = {}; - const readFileAsBase64 = (file) => new Promise((resolve, reject) => { - const reader = new FileReader(); - reader.onloadend = () => { - const data = reader.result; - resolve(btoa(data)); - }; - reader.onerror = reject; - reader.readAsBinaryString(file); - }); - const convertFormData = async (formData) => { - const newFormData = []; - for (const pair of formData.entries()) { - const [key, value] = pair; - if (value instanceof File) { - const base64File = await readFileAsBase64(value); - newFormData.push({ - key, - value: base64File, - type: 'base64File', - contentType: value.type, - fileName: value.name, - }); - } - else { - newFormData.push({ key, value, type: 'string' }); - } - } - return newFormData; - }; - const convertBody = async (body) => { - if (body instanceof FormData) { - const formData = await convertFormData(body); - const boundary = `${Date.now()}`; - return { - data: formData, - type: 'formData', - headers: { - 'Content-Type': `multipart/form-data; boundary=--${boundary}`, - }, - }; - } - else if (body instanceof File) { - const fileData = await readFileAsBase64(body); - return { - data: fileData, - type: 'file', - headers: { 'Content-Type': body.type }, - }; - } - return { data: body, type: 'json' }; - }; - const initBridge = (w) => { - const getPlatformId = (win) => { - var _a, _b; - if (win === null || win === void 0 ? void 0 : win.androidBridge) { - return 'android'; - } - else if ((_b = (_a = win === null || win === void 0 ? void 0 : win.webkit) === null || _a === void 0 ? void 0 : _a.messageHandlers) === null || _b === void 0 ? void 0 : _b.bridge) { - return 'ios'; - } - else { - return 'web'; - } - }; - const convertFileSrcServerUrl = (webviewServerUrl, filePath) => { - if (typeof filePath === 'string') { - if (filePath.startsWith('/')) { - return webviewServerUrl + '/_capacitor_file_' + filePath; - } - else if (filePath.startsWith('file://')) { - return (webviewServerUrl + filePath.replace('file://', '/_capacitor_file_')); - } - else if (filePath.startsWith('content://')) { - return (webviewServerUrl + - filePath.replace('content:/', '/_capacitor_content_')); - } - } - return filePath; - }; - const initEvents = (win, cap) => { - cap.addListener = (pluginName, eventName, callback) => { - const callbackId = cap.nativeCallback(pluginName, 'addListener', { - eventName: eventName, - }, callback); - return { - remove: async () => { - var _a; - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.debug('Removing listener', pluginName, eventName); - cap.removeListener(pluginName, callbackId, eventName, callback); - }, - }; - }; - cap.removeListener = (pluginName, callbackId, eventName, callback) => { - cap.nativeCallback(pluginName, 'removeListener', { - callbackId: callbackId, - eventName: eventName, - }, callback); - }; - cap.createEvent = (eventName, eventData) => { - const doc = win.document; - if (doc) { - const ev = doc.createEvent('Events'); - ev.initEvent(eventName, false, false); - if (eventData && typeof eventData === 'object') { - for (const i in eventData) { - // eslint-disable-next-line no-prototype-builtins - if (eventData.hasOwnProperty(i)) { - ev[i] = eventData[i]; - } - } - } - return ev; - } - return null; - }; - cap.triggerEvent = (eventName, target, eventData) => { - const doc = win.document; - const cordova = win.cordova; - eventData = eventData || {}; - const ev = cap.createEvent(eventName, eventData); - if (ev) { - if (target === 'document') { - if (cordova === null || cordova === void 0 ? void 0 : cordova.fireDocumentEvent) { - cordova.fireDocumentEvent(eventName, eventData); - return true; - } - else if (doc === null || doc === void 0 ? void 0 : doc.dispatchEvent) { - return doc.dispatchEvent(ev); - } - } - else if (target === 'window' && win.dispatchEvent) { - return win.dispatchEvent(ev); - } - else if (doc === null || doc === void 0 ? void 0 : doc.querySelector) { - const targetEl = doc.querySelector(target); - if (targetEl) { - return targetEl.dispatchEvent(ev); - } - } - } - return false; - }; - win.Capacitor = cap; - }; - const initLegacyHandlers = (win, cap) => { - // define cordova if it's not there already - win.cordova = win.cordova || {}; - const doc = win.document; - const nav = win.navigator; - if (nav) { - nav.app = nav.app || {}; - nav.app.exitApp = () => { - var _a; - if (!((_a = cap.Plugins) === null || _a === void 0 ? void 0 : _a.App)) { - win.console.warn('App plugin not installed'); - } - else { - cap.nativeCallback('App', 'exitApp', {}); - } - }; - } - if (doc) { - const docAddEventListener = doc.addEventListener; - doc.addEventListener = (...args) => { - var _a; - const eventName = args[0]; - const handler = args[1]; - if (eventName === 'deviceready' && handler) { - Promise.resolve().then(handler); - } - else if (eventName === 'backbutton' && cap.Plugins.App) { - // Add a dummy listener so Capacitor doesn't do the default - // back button action - if (!((_a = cap.Plugins) === null || _a === void 0 ? void 0 : _a.App)) { - win.console.warn('App plugin not installed'); - } - else { - cap.Plugins.App.addListener('backButton', () => { - // ignore - }); - } - } - return docAddEventListener.apply(doc, args); - }; - } - // deprecated in v3, remove from v4 - cap.platform = cap.getPlatform(); - cap.isNative = cap.isNativePlatform(); - win.Capacitor = cap; - }; - const initVendor = (win, cap) => { - const Ionic = (win.Ionic = win.Ionic || {}); - const IonicWebView = (Ionic.WebView = Ionic.WebView || {}); - const Plugins = cap.Plugins; - IonicWebView.getServerBasePath = (callback) => { - var _a; - (_a = Plugins === null || Plugins === void 0 ? void 0 : Plugins.WebView) === null || _a === void 0 ? void 0 : _a.getServerBasePath().then((result) => { - callback(result.path); - }); - }; - IonicWebView.setServerBasePath = (path) => { - var _a; - (_a = Plugins === null || Plugins === void 0 ? void 0 : Plugins.WebView) === null || _a === void 0 ? void 0 : _a.setServerBasePath({ path }); - }; - IonicWebView.persistServerBasePath = () => { - var _a; - (_a = Plugins === null || Plugins === void 0 ? void 0 : Plugins.WebView) === null || _a === void 0 ? void 0 : _a.persistServerBasePath(); - }; - IonicWebView.convertFileSrc = (url) => cap.convertFileSrc(url); - win.Capacitor = cap; - win.Ionic.WebView = IonicWebView; - }; - const initLogger = (win, cap) => { - const BRIDGED_CONSOLE_METHODS = [ - 'debug', - 'error', - 'info', - 'log', - 'trace', - 'warn', - ]; - const createLogFromNative = (c) => (result) => { - if (isFullConsole(c)) { - const success = result.success === true; - const tagStyles = success - ? 'font-style: italic; font-weight: lighter; color: gray' - : 'font-style: italic; font-weight: lighter; color: red'; - c.groupCollapsed('%cresult %c' + - result.pluginId + - '.' + - result.methodName + - ' (#' + - result.callbackId + - ')', tagStyles, 'font-style: italic; font-weight: bold; color: #444'); - if (result.success === false) { - c.error(result.error); - } - else { - c.dir(result.data); - } - c.groupEnd(); - } - else { - if (result.success === false) { - c.error('LOG FROM NATIVE', result.error); - } - else { - c.log('LOG FROM NATIVE', result.data); - } - } - }; - const createLogToNative = (c) => (call) => { - if (isFullConsole(c)) { - c.groupCollapsed('%cnative %c' + - call.pluginId + - '.' + - call.methodName + - ' (#' + - call.callbackId + - ')', 'font-weight: lighter; color: gray', 'font-weight: bold; color: #000'); - c.dir(call); - c.groupEnd(); - } - else { - c.log('LOG TO NATIVE: ', call); - } - }; - const isFullConsole = (c) => { - if (!c) { - return false; - } - return (typeof c.groupCollapsed === 'function' || - typeof c.groupEnd === 'function' || - typeof c.dir === 'function'); - }; - const serializeConsoleMessage = (msg) => { - if (typeof msg === 'object') { - try { - msg = JSON.stringify(msg); - } - catch (e) { - // ignore - } - } - return String(msg); - }; - const platform = getPlatformId(win); - if (platform == 'android' || platform == 'ios') { - // patch document.cookie on Android/iOS - win.CapacitorCookiesDescriptor = - Object.getOwnPropertyDescriptor(Document.prototype, 'cookie') || - Object.getOwnPropertyDescriptor(HTMLDocument.prototype, 'cookie'); - let doPatchCookies = false; - // check if capacitor cookies is disabled before patching - if (platform === 'ios') { - // Use prompt to synchronously get capacitor cookies config. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorCookies.isEnabled', - }; - const isCookiesEnabled = prompt(JSON.stringify(payload)); - if (isCookiesEnabled === 'true') { - doPatchCookies = true; - } - } - else if (typeof win.CapacitorCookiesAndroidInterface !== 'undefined') { - const isCookiesEnabled = win.CapacitorCookiesAndroidInterface.isEnabled(); - if (isCookiesEnabled === true) { - doPatchCookies = true; - } - } - if (doPatchCookies) { - Object.defineProperty(document, 'cookie', { - get: function () { - var _a, _b, _c; - if (platform === 'ios') { - // Use prompt to synchronously get cookies. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorCookies.get', - }; - const res = prompt(JSON.stringify(payload)); - return res; - } - else if (typeof win.CapacitorCookiesAndroidInterface !== 'undefined') { - // return original document.cookie since Android does not support filtering of `httpOnly` cookies - return (_c = (_b = (_a = win.CapacitorCookiesDescriptor) === null || _a === void 0 ? void 0 : _a.get) === null || _b === void 0 ? void 0 : _b.call(document)) !== null && _c !== void 0 ? _c : ''; - } - }, - set: function (val) { - const cookiePairs = val.split(';'); - const domainSection = val.toLowerCase().split('domain=')[1]; - const domain = cookiePairs.length > 1 && - domainSection != null && - domainSection.length > 0 - ? domainSection.split(';')[0].trim() - : ''; - if (platform === 'ios') { - // Use prompt to synchronously set cookies. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorCookies.set', - action: val, - domain, - }; - prompt(JSON.stringify(payload)); - } - else if (typeof win.CapacitorCookiesAndroidInterface !== 'undefined') { - win.CapacitorCookiesAndroidInterface.setCookie(domain, val); - } - }, - }); - } - // patch fetch / XHR on Android/iOS - // store original fetch & XHR functions - win.CapacitorWebFetch = window.fetch; - win.CapacitorWebXMLHttpRequest = { - abort: window.XMLHttpRequest.prototype.abort, - constructor: window.XMLHttpRequest.prototype.constructor, - fullObject: window.XMLHttpRequest, - getAllResponseHeaders: window.XMLHttpRequest.prototype.getAllResponseHeaders, - getResponseHeader: window.XMLHttpRequest.prototype.getResponseHeader, - open: window.XMLHttpRequest.prototype.open, - prototype: window.XMLHttpRequest.prototype, - send: window.XMLHttpRequest.prototype.send, - setRequestHeader: window.XMLHttpRequest.prototype.setRequestHeader, - }; - let doPatchHttp = false; - // check if capacitor http is disabled before patching - if (platform === 'ios') { - // Use prompt to synchronously get capacitor http config. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorHttp', - }; - const isHttpEnabled = prompt(JSON.stringify(payload)); - if (isHttpEnabled === 'true') { - doPatchHttp = true; - } - } - else if (typeof win.CapacitorHttpAndroidInterface !== 'undefined') { - const isHttpEnabled = win.CapacitorHttpAndroidInterface.isEnabled(); - if (isHttpEnabled === true) { - doPatchHttp = true; - } - } - if (doPatchHttp) { - // fetch patch - window.fetch = async (resource, options) => { - const request = new Request(resource, options); - if (request.url.startsWith(`${cap.getServerUrl()}/`)) { - return win.CapacitorWebFetch(resource, options); - } - const tag = `CapacitorHttp fetch ${Date.now()} ${resource}`; - console.time(tag); - try { - const { body, method } = request; - const { data: requestData, type, headers, } = await convertBody(body || undefined); - const optionHeaders = Object.fromEntries(request.headers.entries()); - const nativeResponse = await cap.nativePromise('CapacitorHttp', 'request', { - url: request.url, - method: method, - data: requestData, - dataType: type, - headers: Object.assign(Object.assign({}, headers), optionHeaders), - }); - const contentType = nativeResponse.headers['Content-Type'] || - nativeResponse.headers['content-type']; - let data = (contentType === null || contentType === void 0 ? void 0 : contentType.startsWith('application/json')) - ? JSON.stringify(nativeResponse.data) - : nativeResponse.data; - // use null data for 204 No Content HTTP response - if (nativeResponse.status === 204) { - data = null; - } - // intercept & parse response before returning - const response = new Response(data, { - headers: nativeResponse.headers, - status: nativeResponse.status, - }); - /* - * copy url to response, `cordova-plugin-ionic` uses this url from the response - * we need `Object.defineProperty` because url is an inherited getter on the Response - * see: https://stackoverflow.com/a/57382543 - * */ - Object.defineProperty(response, 'url', { - value: nativeResponse.url, - }); - console.timeEnd(tag); - return response; - } - catch (error) { - console.timeEnd(tag); - return Promise.reject(error); - } - }; - window.XMLHttpRequest = function () { - const xhr = new win.CapacitorWebXMLHttpRequest.constructor(); - Object.defineProperties(xhr, { - _headers: { - value: {}, - writable: true, - }, - _method: { - value: xhr.method, - writable: true, - }, - readyState: { - get: function () { - var _a; - return (_a = this._readyState) !== null && _a !== void 0 ? _a : 0; - }, - set: function (val) { - this._readyState = val; - setTimeout(() => { - this.dispatchEvent(new Event('readystatechange')); - }); - }, - }, - }); - xhr.readyState = 0; - const prototype = win.CapacitorWebXMLHttpRequest.prototype; - const isRelativeURL = (url) => !url || !(url.startsWith('http:') || url.startsWith('https:')); - const isProgressEventAvailable = () => typeof ProgressEvent !== 'undefined' && - ProgressEvent.prototype instanceof Event; - // XHR patch abort - prototype.abort = function () { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.abort.call(this); - } - this.readyState = 0; - setTimeout(() => { - this.dispatchEvent(new Event('abort')); - this.dispatchEvent(new Event('loadend')); - }); - }; - // XHR patch open - prototype.open = function (method, url) { - this._url = url; - this._method = method; - if (isRelativeURL(url)) { - return win.CapacitorWebXMLHttpRequest.open.call(this, method, url); - } - setTimeout(() => { - this.dispatchEvent(new Event('loadstart')); - }); - this.readyState = 1; - }; - // XHR patch set request header - prototype.setRequestHeader = function (header, value) { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.setRequestHeader.call(this, header, value); - } - this._headers[header] = value; - }; - // XHR patch send - prototype.send = function (body) { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.send.call(this, body); - } - const tag = `CapacitorHttp XMLHttpRequest ${Date.now()} ${this._url}`; - console.time(tag); - try { - this.readyState = 2; - Object.defineProperties(this, { - response: { - value: '', - writable: true, - }, - responseText: { - value: '', - writable: true, - }, - responseURL: { - value: '', - writable: true, - }, - status: { - value: 0, - writable: true, - }, - }); - convertBody(body).then(({ data, type, headers }) => { - const otherHeaders = this._headers != null && Object.keys(this._headers).length > 0 - ? this._headers - : undefined; - // intercept request & pass to the bridge - cap - .nativePromise('CapacitorHttp', 'request', { - url: this._url, - method: this._method, - data: data !== null ? data : undefined, - headers: Object.assign(Object.assign({}, headers), otherHeaders), - dataType: type, - }) - .then((nativeResponse) => { - var _a; - // intercept & parse response before returning - if (this.readyState == 2) { - //TODO: Add progress event emission on native side - if (isProgressEventAvailable()) { - this.dispatchEvent(new ProgressEvent('progress', { - lengthComputable: true, - loaded: nativeResponse.data.length, - total: nativeResponse.data.length, - })); - } - this._headers = nativeResponse.headers; - this.status = nativeResponse.status; - if (this.responseType === '' || - this.responseType === 'text') { - this.response = - typeof nativeResponse.data !== 'string' - ? JSON.stringify(nativeResponse.data) - : nativeResponse.data; - } - else { - this.response = nativeResponse.data; - } - this.responseText = ((_a = nativeResponse.headers['Content-Type']) === null || _a === void 0 ? void 0 : _a.startsWith('application/json')) - ? JSON.stringify(nativeResponse.data) - : nativeResponse.data; - this.responseURL = nativeResponse.url; - this.readyState = 4; - setTimeout(() => { - this.dispatchEvent(new Event('load')); - this.dispatchEvent(new Event('loadend')); - }); - } - console.timeEnd(tag); - }) - .catch((error) => { - this.status = error.status; - this._headers = error.headers; - this.response = error.data; - this.responseText = JSON.stringify(error.data); - this.responseURL = error.url; - this.readyState = 4; - if (isProgressEventAvailable()) { - this.dispatchEvent(new ProgressEvent('progress', { - lengthComputable: false, - loaded: 0, - total: 0, - })); - } - setTimeout(() => { - this.dispatchEvent(new Event('error')); - this.dispatchEvent(new Event('loadend')); - }); - console.timeEnd(tag); - }); - }); - } - catch (error) { - this.status = 500; - this._headers = {}; - this.response = error; - this.responseText = error.toString(); - this.responseURL = this._url; - this.readyState = 4; - if (isProgressEventAvailable()) { - this.dispatchEvent(new ProgressEvent('progress', { - lengthComputable: false, - loaded: 0, - total: 0, - })); - } - setTimeout(() => { - this.dispatchEvent(new Event('error')); - this.dispatchEvent(new Event('loadend')); - }); - console.timeEnd(tag); - } - }; - // XHR patch getAllResponseHeaders - prototype.getAllResponseHeaders = function () { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.getAllResponseHeaders.call(this); - } - let returnString = ''; - for (const key in this._headers) { - if (key != 'Set-Cookie') { - returnString += key + ': ' + this._headers[key] + '\r\n'; - } - } - return returnString; - }; - // XHR patch getResponseHeader - prototype.getResponseHeader = function (name) { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.getResponseHeader.call(this, name); - } - return this._headers[name]; - }; - Object.setPrototypeOf(xhr, prototype); - return xhr; - }; - Object.assign(window.XMLHttpRequest, win.CapacitorWebXMLHttpRequest.fullObject); - } - } - // patch window.console on iOS and store original console fns - const isIos = getPlatformId(win) === 'ios'; - if (win.console && isIos) { - Object.defineProperties(win.console, BRIDGED_CONSOLE_METHODS.reduce((props, method) => { - const consoleMethod = win.console[method].bind(win.console); - props[method] = { - value: (...args) => { - const msgs = [...args]; - cap.toNative('Console', 'log', { - level: method, - message: msgs.map(serializeConsoleMessage).join(' '), - }); - return consoleMethod(...args); - }, - }; - return props; - }, {})); - } - cap.logJs = (msg, level) => { - switch (level) { - case 'error': - win.console.error(msg); - break; - case 'warn': - win.console.warn(msg); - break; - case 'info': - win.console.info(msg); - break; - default: - win.console.log(msg); - } - }; - cap.logToNative = createLogToNative(win.console); - cap.logFromNative = createLogFromNative(win.console); - cap.handleError = err => win.console.error(err); - win.Capacitor = cap; - }; - function initNativeBridge(win) { - const cap = win.Capacitor || {}; - // keep a collection of callbacks for native response data - const callbacks = new Map(); - const webviewServerUrl = typeof win.WEBVIEW_SERVER_URL === 'string' ? win.WEBVIEW_SERVER_URL : ''; - cap.getServerUrl = () => webviewServerUrl; - cap.convertFileSrc = filePath => convertFileSrcServerUrl(webviewServerUrl, filePath); - // Counter of callback ids, randomized to avoid - // any issues during reloads if a call comes back with - // an existing callback id from an old session - let callbackIdCount = Math.floor(Math.random() * 134217728); - let postToNative = null; - const isNativePlatform = () => true; - const getPlatform = () => getPlatformId(win); - cap.getPlatform = getPlatform; - cap.isPluginAvailable = name => Object.prototype.hasOwnProperty.call(cap.Plugins, name); - cap.isNativePlatform = isNativePlatform; - // create the postToNative() fn if needed - if (getPlatformId(win) === 'android') { - // android platform - postToNative = data => { - var _a; - try { - win.androidBridge.postMessage(JSON.stringify(data)); - } - catch (e) { - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.error(e); - } - }; - } - else if (getPlatformId(win) === 'ios') { - // ios platform - postToNative = data => { - var _a; - try { - data.type = data.type ? data.type : 'message'; - win.webkit.messageHandlers.bridge.postMessage(data); - } - catch (e) { - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.error(e); - } - }; - } - cap.handleWindowError = (msg, url, lineNo, columnNo, err) => { - const str = msg.toLowerCase(); - if (str.indexOf('script error') > -1) ; - else { - const errObj = { - type: 'js.error', - error: { - message: msg, - url: url, - line: lineNo, - col: columnNo, - errorObject: JSON.stringify(err), - }, - }; - if (err !== null) { - cap.handleError(err); - } - postToNative(errObj); - } - return false; - }; - if (cap.DEBUG) { - window.onerror = cap.handleWindowError; - } - initLogger(win, cap); - /** - * Send a plugin method call to the native layer - */ - cap.toNative = (pluginName, methodName, options, storedCallback) => { - var _a, _b; - try { - if (typeof postToNative === 'function') { - let callbackId = '-1'; - if (storedCallback && - (typeof storedCallback.callback === 'function' || - typeof storedCallback.resolve === 'function')) { - // store the call for later lookup - callbackId = String(++callbackIdCount); - callbacks.set(callbackId, storedCallback); - } - const callData = { - callbackId: callbackId, - pluginId: pluginName, - methodName: methodName, - options: options || {}, - }; - if (cap.isLoggingEnabled && pluginName !== 'Console') { - cap.logToNative(callData); - } - // post the call data to native - postToNative(callData); - return callbackId; - } - else { - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.warn(`implementation unavailable for: ${pluginName}`); - } - } - catch (e) { - (_b = win === null || win === void 0 ? void 0 : win.console) === null || _b === void 0 ? void 0 : _b.error(e); - } - return null; - }; - if (win === null || win === void 0 ? void 0 : win.androidBridge) { - win.androidBridge.onmessage = function (event) { - returnResult(JSON.parse(event.data)); - }; - } - /** - * Process a response from the native layer. - */ - cap.fromNative = result => { - returnResult(result); - }; - const returnResult = (result) => { - var _a, _b; - if (cap.isLoggingEnabled && result.pluginId !== 'Console') { - cap.logFromNative(result); - } - // get the stored call, if it exists - try { - const storedCall = callbacks.get(result.callbackId); - if (storedCall) { - // looks like we've got a stored call - if (result.error) { - // ensure stacktraces by copying error properties to an Error - result.error = Object.keys(result.error).reduce((err, key) => { - // use any type to avoid importing util and compiling most of .ts files - err[key] = result.error[key]; - return err; - }, new cap.Exception('')); - } - if (typeof storedCall.callback === 'function') { - // callback - if (result.success) { - storedCall.callback(result.data); - } - else { - storedCall.callback(null, result.error); - } - } - else if (typeof storedCall.resolve === 'function') { - // promise - if (result.success) { - storedCall.resolve(result.data); - } - else { - storedCall.reject(result.error); - } - // no need to keep this stored callback - // around for a one time resolve promise - callbacks.delete(result.callbackId); - } - } - else if (!result.success && result.error) { - // no stored callback, but if there was an error let's log it - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.warn(result.error); - } - if (result.save === false) { - callbacks.delete(result.callbackId); - } - } - catch (e) { - (_b = win === null || win === void 0 ? void 0 : win.console) === null || _b === void 0 ? void 0 : _b.error(e); - } - // always delete to prevent memory leaks - // overkill but we're not sure what apps will do with this data - delete result.data; - delete result.error; - }; - cap.nativeCallback = (pluginName, methodName, options, callback) => { - if (typeof options === 'function') { - console.warn(`Using a callback as the 'options' parameter of 'nativeCallback()' is deprecated.`); - callback = options; - options = null; - } - return cap.toNative(pluginName, methodName, options, { callback }); - }; - cap.nativePromise = (pluginName, methodName, options) => { - return new Promise((resolve, reject) => { - cap.toNative(pluginName, methodName, options, { - resolve: resolve, - reject: reject, - }); - }); - }; - // eslint-disable-next-line @typescript-eslint/no-unused-vars - cap.withPlugin = (_pluginId, _fn) => dummy; - cap.Exception = CapacitorException; - initEvents(win, cap); - initLegacyHandlers(win, cap); - initVendor(win, cap); - win.Capacitor = cap; - } - initNativeBridge(w); - }; - initBridge(typeof globalThis !== 'undefined' - ? globalThis - : typeof self !== 'undefined' - ? self - : typeof window !== 'undefined' - ? window - : typeof global !== 'undefined' - ? global - : {}); - - dummy = initBridge; - - Object.defineProperty(exports, '__esModule', { value: true }); - - return exports; - -})({}); diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Info.plist b/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Info.plist deleted file mode 100644 index c64093d05..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.capacitorjs.ios.Capacitor - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Resources/DWARF/Capacitor b/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Resources/DWARF/Capacitor deleted file mode 100644 index 7b4ae7363..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Resources/DWARF/Capacitor and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/aarch64/Capacitor.yml b/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/aarch64/Capacitor.yml deleted file mode 100644 index 20038b097..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/aarch64/Capacitor.yml +++ /dev/null @@ -1,1493 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/mark/Library/Developer/Xcode/DerivedData/Capacitor-cvqxffszbvmpzcdcdtewgtstoqol/Build/Intermediates.noindex/ArchiveIntermediates/Capacitor/InstallationBuildProductsLocation/Library/Frameworks/Capacitor.framework/Capacitor' -relocations: - - { offsetInCU: 0x34, offset: 0xAF48E, size: 0x8, addend: 0x0, symName: _CapacitorVersionString, symObjAddr: 0x0, symBinAddr: 0x56660, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xAF4C3, size: 0x8, addend: 0x0, symName: _CapacitorVersionNumber, symObjAddr: 0x30, symBinAddr: 0x56690, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0xAF500, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getString:defaultValue:]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0xC0 } - - { offsetInCU: 0xD5, offset: 0xAF5AE, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getString:defaultValue:]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0xC0 } - - { offsetInCU: 0x13C, offset: 0xAF615, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getDate:defaultValue:]', symObjAddr: 0xC0, symBinAddr: 0x40C0, symSize: 0x11C } - - { offsetInCU: 0x1A3, offset: 0xAF67C, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getObject:defaultValue:]', symObjAddr: 0x1DC, symBinAddr: 0x41DC, symSize: 0xC0 } - - { offsetInCU: 0x20A, offset: 0xAF6E3, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getNumber:defaultValue:]', symObjAddr: 0x29C, symBinAddr: 0x429C, symSize: 0xC0 } - - { offsetInCU: 0x271, offset: 0xAF74A, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getBool:defaultValue:]', symObjAddr: 0x35C, symBinAddr: 0x435C, symSize: 0x98 } - - { offsetInCU: 0x27, offset: 0xAF9D9, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall initWithCallbackId:options:success:error:]', symObjAddr: 0x0, symBinAddr: 0x43F4, symSize: 0xA8 } - - { offsetInCU: 0x1E3, offset: 0xAFB95, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall initWithCallbackId:options:success:error:]', symObjAddr: 0x0, symBinAddr: 0x43F4, symSize: 0xA8 } - - { offsetInCU: 0x25A, offset: 0xAFC0C, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall isSaved]', symObjAddr: 0xA8, symBinAddr: 0x449C, symSize: 0x4 } - - { offsetInCU: 0x28F, offset: 0xAFC41, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setIsSaved:]', symObjAddr: 0xAC, symBinAddr: 0x44A0, symSize: 0x4 } - - { offsetInCU: 0x2D3, offset: 0xAFC85, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall save]', symObjAddr: 0xB0, symBinAddr: 0x44A4, symSize: 0x8 } - - { offsetInCU: 0x304, offset: 0xAFCB6, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall keepAlive]', symObjAddr: 0xB8, symBinAddr: 0x44AC, symSize: 0x8 } - - { offsetInCU: 0x33B, offset: 0xAFCED, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setKeepAlive:]', symObjAddr: 0xC0, symBinAddr: 0x44B4, symSize: 0x8 } - - { offsetInCU: 0x376, offset: 0xAFD28, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall callbackId]', symObjAddr: 0xC8, symBinAddr: 0x44BC, symSize: 0x8 } - - { offsetInCU: 0x3AD, offset: 0xAFD5F, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setCallbackId:]', symObjAddr: 0xD0, symBinAddr: 0x44C4, symSize: 0xC } - - { offsetInCU: 0x3EE, offset: 0xAFDA0, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall options]', symObjAddr: 0xDC, symBinAddr: 0x44D0, symSize: 0x8 } - - { offsetInCU: 0x425, offset: 0xAFDD7, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setOptions:]', symObjAddr: 0xE4, symBinAddr: 0x44D8, symSize: 0xC } - - { offsetInCU: 0x466, offset: 0xAFE18, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall successHandler]', symObjAddr: 0xF0, symBinAddr: 0x44E4, symSize: 0x8 } - - { offsetInCU: 0x49D, offset: 0xAFE4F, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setSuccessHandler:]', symObjAddr: 0xF8, symBinAddr: 0x44EC, symSize: 0x8 } - - { offsetInCU: 0x4DC, offset: 0xAFE8E, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall errorHandler]', symObjAddr: 0x100, symBinAddr: 0x44F4, symSize: 0x8 } - - { offsetInCU: 0x513, offset: 0xAFEC5, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setErrorHandler:]', symObjAddr: 0x108, symBinAddr: 0x44FC, symSize: 0x8 } - - { offsetInCU: 0x552, offset: 0xAFF04, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall .cxx_destruct]', symObjAddr: 0x110, symBinAddr: 0x4504, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0xAFF76, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAsDefault]', symObjAddr: 0x0, symBinAddr: 0x454C, symSize: 0x144 } - - { offsetInCU: 0x41, offset: 0xAFF90, size: 0x8, addend: 0x0, symName: _CAPInstanceDescriptorDefaultScheme, symObjAddr: 0x6B0, symBinAddr: 0x6C378, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0xAFFB0, size: 0x8, addend: 0x0, symName: _CAPInstanceDescriptorDefaultHostname, symObjAddr: 0x6B8, symBinAddr: 0x6C380, symSize: 0x0 } - - { offsetInCU: 0x42E, offset: 0xB037D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAsDefault]', symObjAddr: 0x0, symBinAddr: 0x454C, symSize: 0x144 } - - { offsetInCU: 0x465, offset: 0xB03B4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAtLocation:configuration:cordovaConfiguration:]', symObjAddr: 0x144, symBinAddr: 0x4690, symSize: 0xBC } - - { offsetInCU: 0x4CC, offset: 0xB041B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor _setDefaultsWithAppLocation:]', symObjAddr: 0x200, symBinAddr: 0x474C, symSize: 0x14C } - - { offsetInCU: 0x50F, offset: 0xB045E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appendedUserAgentString]', symObjAddr: 0x34C, symBinAddr: 0x4898, symSize: 0x8 } - - { offsetInCU: 0x546, offset: 0xB0495, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppendedUserAgentString:]', symObjAddr: 0x354, symBinAddr: 0x48A0, symSize: 0x8 } - - { offsetInCU: 0x585, offset: 0xB04D4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor overridenUserAgentString]', symObjAddr: 0x35C, symBinAddr: 0x48A8, symSize: 0x8 } - - { offsetInCU: 0x5BC, offset: 0xB050B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setOverridenUserAgentString:]', symObjAddr: 0x364, symBinAddr: 0x48B0, symSize: 0x8 } - - { offsetInCU: 0x5FB, offset: 0xB054A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor backgroundColor]', symObjAddr: 0x36C, symBinAddr: 0x48B8, symSize: 0x8 } - - { offsetInCU: 0x632, offset: 0xB0581, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setBackgroundColor:]', symObjAddr: 0x374, symBinAddr: 0x48C0, symSize: 0xC } - - { offsetInCU: 0x673, offset: 0xB05C2, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor allowedNavigationHostnames]', symObjAddr: 0x380, symBinAddr: 0x48CC, symSize: 0x8 } - - { offsetInCU: 0x6AA, offset: 0xB05F9, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAllowedNavigationHostnames:]', symObjAddr: 0x388, symBinAddr: 0x48D4, symSize: 0x8 } - - { offsetInCU: 0x6E9, offset: 0xB0638, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor urlScheme]', symObjAddr: 0x390, symBinAddr: 0x48DC, symSize: 0x8 } - - { offsetInCU: 0x720, offset: 0xB066F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setUrlScheme:]', symObjAddr: 0x398, symBinAddr: 0x48E4, symSize: 0x8 } - - { offsetInCU: 0x75F, offset: 0xB06AE, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor errorPath]', symObjAddr: 0x3A0, symBinAddr: 0x48EC, symSize: 0x8 } - - { offsetInCU: 0x796, offset: 0xB06E5, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setErrorPath:]', symObjAddr: 0x3A8, symBinAddr: 0x48F4, symSize: 0x8 } - - { offsetInCU: 0x7D5, offset: 0xB0724, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor urlHostname]', symObjAddr: 0x3B0, symBinAddr: 0x48FC, symSize: 0x8 } - - { offsetInCU: 0x80C, offset: 0xB075B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setUrlHostname:]', symObjAddr: 0x3B8, symBinAddr: 0x4904, symSize: 0x8 } - - { offsetInCU: 0x84B, offset: 0xB079A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor serverURL]', symObjAddr: 0x3C0, symBinAddr: 0x490C, symSize: 0x8 } - - { offsetInCU: 0x882, offset: 0xB07D1, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setServerURL:]', symObjAddr: 0x3C8, symBinAddr: 0x4914, symSize: 0x8 } - - { offsetInCU: 0x8C1, offset: 0xB0810, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor pluginConfigurations]', symObjAddr: 0x3D0, symBinAddr: 0x491C, symSize: 0x8 } - - { offsetInCU: 0x8F8, offset: 0xB0847, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setPluginConfigurations:]', symObjAddr: 0x3D8, symBinAddr: 0x4924, symSize: 0xC } - - { offsetInCU: 0x939, offset: 0xB0888, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor loggingBehavior]', symObjAddr: 0x3E4, symBinAddr: 0x4930, symSize: 0x8 } - - { offsetInCU: 0x970, offset: 0xB08BF, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLoggingBehavior:]', symObjAddr: 0x3EC, symBinAddr: 0x4938, symSize: 0x8 } - - { offsetInCU: 0x9AD, offset: 0xB08FC, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor scrollingEnabled]', symObjAddr: 0x3F4, symBinAddr: 0x4940, symSize: 0x8 } - - { offsetInCU: 0x9E4, offset: 0xB0933, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setScrollingEnabled:]', symObjAddr: 0x3FC, symBinAddr: 0x4948, symSize: 0x8 } - - { offsetInCU: 0xA1F, offset: 0xB096E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor zoomingEnabled]', symObjAddr: 0x404, symBinAddr: 0x4950, symSize: 0x8 } - - { offsetInCU: 0xA56, offset: 0xB09A5, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setZoomingEnabled:]', symObjAddr: 0x40C, symBinAddr: 0x4958, symSize: 0x8 } - - { offsetInCU: 0xA91, offset: 0xB09E0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor allowLinkPreviews]', symObjAddr: 0x414, symBinAddr: 0x4960, symSize: 0x8 } - - { offsetInCU: 0xAC8, offset: 0xB0A17, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAllowLinkPreviews:]', symObjAddr: 0x41C, symBinAddr: 0x4968, symSize: 0x8 } - - { offsetInCU: 0xB03, offset: 0xB0A52, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor handleApplicationNotifications]', symObjAddr: 0x424, symBinAddr: 0x4970, symSize: 0x8 } - - { offsetInCU: 0xB3A, offset: 0xB0A89, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setHandleApplicationNotifications:]', symObjAddr: 0x42C, symBinAddr: 0x4978, symSize: 0x8 } - - { offsetInCU: 0xB75, offset: 0xB0AC4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor isWebDebuggable]', symObjAddr: 0x434, symBinAddr: 0x4980, symSize: 0x8 } - - { offsetInCU: 0xBAC, offset: 0xB0AFB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setIsWebDebuggable:]', symObjAddr: 0x43C, symBinAddr: 0x4988, symSize: 0x8 } - - { offsetInCU: 0xBE7, offset: 0xB0B36, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor contentInsetAdjustmentBehavior]', symObjAddr: 0x444, symBinAddr: 0x4990, symSize: 0x8 } - - { offsetInCU: 0xC1E, offset: 0xB0B6D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setContentInsetAdjustmentBehavior:]', symObjAddr: 0x44C, symBinAddr: 0x4998, symSize: 0x8 } - - { offsetInCU: 0xC5B, offset: 0xB0BAA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appLocation]', symObjAddr: 0x454, symBinAddr: 0x49A0, symSize: 0x8 } - - { offsetInCU: 0xC92, offset: 0xB0BE1, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppLocation:]', symObjAddr: 0x45C, symBinAddr: 0x49A8, symSize: 0x8 } - - { offsetInCU: 0xCD1, offset: 0xB0C20, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appStartPath]', symObjAddr: 0x464, symBinAddr: 0x49B0, symSize: 0x8 } - - { offsetInCU: 0xD08, offset: 0xB0C57, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppStartPath:]', symObjAddr: 0x46C, symBinAddr: 0x49B8, symSize: 0x8 } - - { offsetInCU: 0xD47, offset: 0xB0C96, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor limitsNavigationsToAppBoundDomains]', symObjAddr: 0x474, symBinAddr: 0x49C0, symSize: 0x8 } - - { offsetInCU: 0xD7E, offset: 0xB0CCD, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLimitsNavigationsToAppBoundDomains:]', symObjAddr: 0x47C, symBinAddr: 0x49C8, symSize: 0x8 } - - { offsetInCU: 0xDB9, offset: 0xB0D08, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor preferredContentMode]', symObjAddr: 0x484, symBinAddr: 0x49D0, symSize: 0x8 } - - { offsetInCU: 0xDF0, offset: 0xB0D3F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setPreferredContentMode:]', symObjAddr: 0x48C, symBinAddr: 0x49D8, symSize: 0x8 } - - { offsetInCU: 0xE2F, offset: 0xB0D7E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor cordovaConfiguration]', symObjAddr: 0x494, symBinAddr: 0x49E0, symSize: 0x8 } - - { offsetInCU: 0xE66, offset: 0xB0DB5, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setCordovaConfiguration:]', symObjAddr: 0x49C, symBinAddr: 0x49E8, symSize: 0x8 } - - { offsetInCU: 0xEA5, offset: 0xB0DF4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor warnings]', symObjAddr: 0x4A4, symBinAddr: 0x49F0, symSize: 0x8 } - - { offsetInCU: 0xEDC, offset: 0xB0E2B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setWarnings:]', symObjAddr: 0x4AC, symBinAddr: 0x49F8, symSize: 0x8 } - - { offsetInCU: 0xF19, offset: 0xB0E68, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor instanceType]', symObjAddr: 0x4B4, symBinAddr: 0x4A00, symSize: 0x8 } - - { offsetInCU: 0xF50, offset: 0xB0E9F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor legacyConfig]', symObjAddr: 0x4BC, symBinAddr: 0x4A08, symSize: 0x8 } - - { offsetInCU: 0xF87, offset: 0xB0ED6, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLegacyConfig:]', symObjAddr: 0x4C4, symBinAddr: 0x4A10, symSize: 0xC } - - { offsetInCU: 0xFC8, offset: 0xB0F17, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor .cxx_destruct]', symObjAddr: 0x4D0, symBinAddr: 0x4A1C, symSize: 0xC0 } - - { offsetInCU: 0x27, offset: 0xB0FC0, size: 0x8, addend: 0x0, symName: '-[CAPPlugin initWithBridge:pluginId:pluginName:]', symObjAddr: 0x0, symBinAddr: 0x4ADC, symSize: 0x110 } - - { offsetInCU: 0x1FA, offset: 0xB1193, size: 0x8, addend: 0x0, symName: '-[CAPPlugin initWithBridge:pluginId:pluginName:]', symObjAddr: 0x0, symBinAddr: 0x4ADC, symSize: 0x110 } - - { offsetInCU: 0x261, offset: 0xB11FA, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getId]', symObjAddr: 0x110, symBinAddr: 0x4BEC, symSize: 0x4 } - - { offsetInCU: 0x296, offset: 0xB122F, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getBool:field:defaultValue:]', symObjAddr: 0x114, symBinAddr: 0x4BF0, symSize: 0xAC } - - { offsetInCU: 0x309, offset: 0xB12A2, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getString:field:defaultValue:]', symObjAddr: 0x1C0, symBinAddr: 0x4C9C, symSize: 0x10 } - - { offsetInCU: 0x36C, offset: 0xB1305, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getConfigValue:]', symObjAddr: 0x1D0, symBinAddr: 0x4CAC, symSize: 0xB0 } - - { offsetInCU: 0x3B3, offset: 0xB134C, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getConfig]', symObjAddr: 0x280, symBinAddr: 0x4D5C, symSize: 0x8C } - - { offsetInCU: 0x3EA, offset: 0xB1383, size: 0x8, addend: 0x0, symName: '-[CAPPlugin load]', symObjAddr: 0x30C, symBinAddr: 0x4DE8, symSize: 0x4 } - - { offsetInCU: 0x419, offset: 0xB13B2, size: 0x8, addend: 0x0, symName: '-[CAPPlugin addEventListener:listener:]', symObjAddr: 0x310, symBinAddr: 0x4DEC, symSize: 0x110 } - - { offsetInCU: 0x47C, offset: 0xB1415, size: 0x8, addend: 0x0, symName: '-[CAPPlugin sendRetainedArgumentsForEvent:]', symObjAddr: 0x420, symBinAddr: 0x4EFC, symSize: 0x174 } - - { offsetInCU: 0x4EE, offset: 0xB1487, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeEventListener:listener:]', symObjAddr: 0x594, symBinAddr: 0x5070, symSize: 0xAC } - - { offsetInCU: 0x561, offset: 0xB14FA, size: 0x8, addend: 0x0, symName: '-[CAPPlugin notifyListeners:data:]', symObjAddr: 0x640, symBinAddr: 0x511C, symSize: 0x8 } - - { offsetInCU: 0x5AE, offset: 0xB1547, size: 0x8, addend: 0x0, symName: '-[CAPPlugin notifyListeners:data:retainUntilConsumed:]', symObjAddr: 0x648, symBinAddr: 0x5124, symSize: 0x200 } - - { offsetInCU: 0x699, offset: 0xB1632, size: 0x8, addend: 0x0, symName: '-[CAPPlugin addListener:]', symObjAddr: 0x848, symBinAddr: 0x5324, symSize: 0x88 } - - { offsetInCU: 0x6EC, offset: 0xB1685, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeListener:]', symObjAddr: 0x8D0, symBinAddr: 0x53AC, symSize: 0x120 } - - { offsetInCU: 0x75F, offset: 0xB16F8, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeAllListeners:]', symObjAddr: 0x9F0, symBinAddr: 0x54CC, symSize: 0x54 } - - { offsetInCU: 0x7A2, offset: 0xB173B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getListeners:]', symObjAddr: 0xA44, symBinAddr: 0x5520, symSize: 0x6C } - - { offsetInCU: 0x7F9, offset: 0xB1792, size: 0x8, addend: 0x0, symName: '-[CAPPlugin hasListeners:]', symObjAddr: 0xAB0, symBinAddr: 0x558C, symSize: 0x90 } - - { offsetInCU: 0x850, offset: 0xB17E9, size: 0x8, addend: 0x0, symName: '-[CAPPlugin checkPermissions:]', symObjAddr: 0xB40, symBinAddr: 0x561C, symSize: 0x8 } - - { offsetInCU: 0x88F, offset: 0xB1828, size: 0x8, addend: 0x0, symName: '-[CAPPlugin requestPermissions:]', symObjAddr: 0xB48, symBinAddr: 0x5624, symSize: 0x8 } - - { offsetInCU: 0x8CE, offset: 0xB1867, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setCenteredPopover:]', symObjAddr: 0xB50, symBinAddr: 0x562C, symSize: 0x1F4 } - - { offsetInCU: 0x911, offset: 0xB18AA, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setCenteredPopover:size:]', symObjAddr: 0xD44, symBinAddr: 0x5820, symSize: 0x214 } - - { offsetInCU: 0x960, offset: 0xB18F9, size: 0x8, addend: 0x0, symName: '-[CAPPlugin supportsPopover]', symObjAddr: 0xF58, symBinAddr: 0x5A34, symSize: 0x8 } - - { offsetInCU: 0x993, offset: 0xB192C, size: 0x8, addend: 0x0, symName: '-[CAPPlugin shouldOverrideLoad:]', symObjAddr: 0xF60, symBinAddr: 0x5A3C, symSize: 0x8 } - - { offsetInCU: 0x9D2, offset: 0xB196B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin webView]', symObjAddr: 0xF68, symBinAddr: 0x5A44, symSize: 0x18 } - - { offsetInCU: 0xA09, offset: 0xB19A2, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setWebView:]', symObjAddr: 0xF80, symBinAddr: 0x5A5C, symSize: 0xC } - - { offsetInCU: 0xA4A, offset: 0xB19E3, size: 0x8, addend: 0x0, symName: '-[CAPPlugin bridge]', symObjAddr: 0xF8C, symBinAddr: 0x5A68, symSize: 0x18 } - - { offsetInCU: 0xA81, offset: 0xB1A1A, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setBridge:]', symObjAddr: 0xFA4, symBinAddr: 0x5A80, symSize: 0xC } - - { offsetInCU: 0xAC2, offset: 0xB1A5B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin pluginId]', symObjAddr: 0xFB0, symBinAddr: 0x5A8C, symSize: 0x8 } - - { offsetInCU: 0xAF9, offset: 0xB1A92, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setPluginId:]', symObjAddr: 0xFB8, symBinAddr: 0x5A94, symSize: 0xC } - - { offsetInCU: 0xB3A, offset: 0xB1AD3, size: 0x8, addend: 0x0, symName: '-[CAPPlugin pluginName]', symObjAddr: 0xFC4, symBinAddr: 0x5AA0, symSize: 0x8 } - - { offsetInCU: 0xB71, offset: 0xB1B0A, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setPluginName:]', symObjAddr: 0xFCC, symBinAddr: 0x5AA8, symSize: 0xC } - - { offsetInCU: 0xBB2, offset: 0xB1B4B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin eventListeners]', symObjAddr: 0xFD8, symBinAddr: 0x5AB4, symSize: 0x8 } - - { offsetInCU: 0xBE9, offset: 0xB1B82, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setEventListeners:]', symObjAddr: 0xFE0, symBinAddr: 0x5ABC, symSize: 0xC } - - { offsetInCU: 0xC2A, offset: 0xB1BC3, size: 0x8, addend: 0x0, symName: '-[CAPPlugin retainedEventArguments]', symObjAddr: 0xFEC, symBinAddr: 0x5AC8, symSize: 0x8 } - - { offsetInCU: 0xC61, offset: 0xB1BFA, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setRetainedEventArguments:]', symObjAddr: 0xFF4, symBinAddr: 0x5AD0, symSize: 0xC } - - { offsetInCU: 0xCA2, offset: 0xB1C3B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin shouldStringifyDatesInCalls]', symObjAddr: 0x1000, symBinAddr: 0x5ADC, symSize: 0x8 } - - { offsetInCU: 0xCD9, offset: 0xB1C72, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setShouldStringifyDatesInCalls:]', symObjAddr: 0x1008, symBinAddr: 0x5AE4, symSize: 0x8 } - - { offsetInCU: 0xD14, offset: 0xB1CAD, size: 0x8, addend: 0x0, symName: '-[CAPPlugin .cxx_destruct]', symObjAddr: 0x1010, symBinAddr: 0x5AEC, symSize: 0x58 } - - { offsetInCU: 0x27, offset: 0xB1F1C, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument initWithName:nullability:type:]', symObjAddr: 0x0, symBinAddr: 0x5B44, symSize: 0x34 } - - { offsetInCU: 0x3AB, offset: 0xB22A0, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument initWithName:nullability:type:]', symObjAddr: 0x0, symBinAddr: 0x5B44, symSize: 0x34 } - - { offsetInCU: 0x40E, offset: 0xB2303, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument name]', symObjAddr: 0x34, symBinAddr: 0x5B78, symSize: 0x8 } - - { offsetInCU: 0x445, offset: 0xB233A, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument setName:]', symObjAddr: 0x3C, symBinAddr: 0x5B80, symSize: 0x8 } - - { offsetInCU: 0x484, offset: 0xB2379, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument nullability]', symObjAddr: 0x44, symBinAddr: 0x5B88, symSize: 0x8 } - - { offsetInCU: 0x4BB, offset: 0xB23B0, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument setNullability:]', symObjAddr: 0x4C, symBinAddr: 0x5B90, symSize: 0x8 } - - { offsetInCU: 0x4F8, offset: 0xB23ED, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument .cxx_destruct]', symObjAddr: 0x54, symBinAddr: 0x5B98, symSize: 0xC } - - { offsetInCU: 0x52B, offset: 0xB2420, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod initWithName:returnType:]', symObjAddr: 0x60, symBinAddr: 0x5BA4, symSize: 0xA4 } - - { offsetInCU: 0x5AB, offset: 0xB24A0, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod selector]', symObjAddr: 0x104, symBinAddr: 0x5C48, symSize: 0x8 } - - { offsetInCU: 0x5E2, offset: 0xB24D7, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setSelector:]', symObjAddr: 0x10C, symBinAddr: 0x5C50, symSize: 0x8 } - - { offsetInCU: 0x61F, offset: 0xB2514, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod name]', symObjAddr: 0x114, symBinAddr: 0x5C58, symSize: 0x8 } - - { offsetInCU: 0x656, offset: 0xB254B, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setName:]', symObjAddr: 0x11C, symBinAddr: 0x5C60, symSize: 0xC } - - { offsetInCU: 0x697, offset: 0xB258C, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod returnType]', symObjAddr: 0x128, symBinAddr: 0x5C6C, symSize: 0x8 } - - { offsetInCU: 0x6CE, offset: 0xB25C3, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setReturnType:]', symObjAddr: 0x130, symBinAddr: 0x5C74, symSize: 0xC } - - { offsetInCU: 0x70F, offset: 0xB2604, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod .cxx_destruct]', symObjAddr: 0x13C, symBinAddr: 0x5C80, symSize: 0x60 } - - { offsetInCU: 0x27, offset: 0xB2672, size: 0x8, addend: 0x0, symName: '+[WKWebView(CapacitorAutoFocus) load]', symObjAddr: 0x0, symBinAddr: 0x5CE0, symSize: 0x4 } - - { offsetInCU: 0xBF, offset: 0xB270A, size: 0x8, addend: 0x0, symName: '+[WKWebView(CapacitorAutoFocus) load]', symObjAddr: 0x0, symBinAddr: 0x5CE0, symSize: 0x4 } - - { offsetInCU: 0x27, offset: 0xB278D, size: 0x8, addend: 0x0, symName: '+[UIStatusBarManager(CAPHandleTapAction) load]', symObjAddr: 0x0, symBinAddr: 0x5CE4, symSize: 0x6C } - - { offsetInCU: 0x35, offset: 0xB279B, size: 0x8, addend: 0x0, symName: '+[UIStatusBarManager(CAPHandleTapAction) load]', symObjAddr: 0x0, symBinAddr: 0x5CE4, symSize: 0x6C } - - { offsetInCU: 0x5B, offset: 0xB27C1, size: 0x8, addend: 0x0, symName: _load.onceToken, symObjAddr: 0x2A58, symBinAddr: 0x7BB80, symSize: 0x0 } - - { offsetInCU: 0x193, offset: 0xB28F9, size: 0x8, addend: 0x0, symName: '___46+[UIStatusBarManager(CAPHandleTapAction) load]_block_invoke', symObjAddr: 0x6C, symBinAddr: 0x5D50, symSize: 0xD4 } - - { offsetInCU: 0x426, offset: 0xB2B8C, size: 0x8, addend: 0x0, symName: '-[UIStatusBarManager(CAPHandleTapAction) nofity_handleTapAction:]', symObjAddr: 0x140, symBinAddr: 0x5E24, symSize: 0xC0 } - - { offsetInCU: 0x27, offset: 0xB2CA9, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x0, symBinAddr: 0x5EE4, symSize: 0x130 } - - { offsetInCU: 0x5F, offset: 0xB2CE1, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x0, symBinAddr: 0x5EE4, symSize: 0x130 } - - { offsetInCU: 0xA2, offset: 0xB2D24, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x130, symBinAddr: 0x6014, symSize: 0xC } - - { offsetInCU: 0xD5, offset: 0xB2D57, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x13C, symBinAddr: 0x6020, symSize: 0xC } - - { offsetInCU: 0x108, offset: 0xB2D8A, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x148, symBinAddr: 0x602C, symSize: 0x160 } - - { offsetInCU: 0x14B, offset: 0xB2DCD, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x2A8, symBinAddr: 0x618C, symSize: 0xC } - - { offsetInCU: 0x17E, offset: 0xB2E00, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x2B4, symBinAddr: 0x6198, symSize: 0xC } - - { offsetInCU: 0x1B1, offset: 0xB2E33, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x2C0, symBinAddr: 0x61A4, symSize: 0x64 } - - { offsetInCU: 0x1F4, offset: 0xB2E76, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) identifier]', symObjAddr: 0x324, symBinAddr: 0x6208, symSize: 0xC } - - { offsetInCU: 0x227, offset: 0xB2EA9, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) jsName]', symObjAddr: 0x330, symBinAddr: 0x6214, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0xB2EDC, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x33C, symBinAddr: 0x6220, symSize: 0xD0 } - - { offsetInCU: 0x29D, offset: 0xB2F1F, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x40C, symBinAddr: 0x62F0, symSize: 0xC } - - { offsetInCU: 0x2D0, offset: 0xB2F52, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x418, symBinAddr: 0x62FC, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0xB3036, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithDescriptor:isDebug:]', symObjAddr: 0x0, symBinAddr: 0x6308, symSize: 0x354 } - - { offsetInCU: 0x384, offset: 0xB3393, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithDescriptor:isDebug:]', symObjAddr: 0x0, symBinAddr: 0x6308, symSize: 0x354 } - - { offsetInCU: 0x3D7, offset: 0xB33E6, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithConfiguration:andLocation:]', symObjAddr: 0x354, symBinAddr: 0x665C, symSize: 0x2B8 } - - { offsetInCU: 0x42E, offset: 0xB343D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration updatingAppLocation:]', symObjAddr: 0x60C, symBinAddr: 0x6914, symSize: 0x5C } - - { offsetInCU: 0x475, offset: 0xB3484, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appendedUserAgentString]', symObjAddr: 0x668, symBinAddr: 0x6970, symSize: 0x8 } - - { offsetInCU: 0x4AC, offset: 0xB34BB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration overridenUserAgentString]', symObjAddr: 0x670, symBinAddr: 0x6978, symSize: 0x8 } - - { offsetInCU: 0x4E3, offset: 0xB34F2, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration backgroundColor]', symObjAddr: 0x678, symBinAddr: 0x6980, symSize: 0x8 } - - { offsetInCU: 0x51A, offset: 0xB3529, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration allowedNavigationHostnames]', symObjAddr: 0x680, symBinAddr: 0x6988, symSize: 0x8 } - - { offsetInCU: 0x551, offset: 0xB3560, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration localURL]', symObjAddr: 0x688, symBinAddr: 0x6990, symSize: 0x8 } - - { offsetInCU: 0x588, offset: 0xB3597, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration serverURL]', symObjAddr: 0x690, symBinAddr: 0x6998, symSize: 0x8 } - - { offsetInCU: 0x5BF, offset: 0xB35CE, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration errorPath]', symObjAddr: 0x698, symBinAddr: 0x69A0, symSize: 0x8 } - - { offsetInCU: 0x5F6, offset: 0xB3605, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration pluginConfigurations]', symObjAddr: 0x6A0, symBinAddr: 0x69A8, symSize: 0x8 } - - { offsetInCU: 0x62D, offset: 0xB363C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration loggingEnabled]', symObjAddr: 0x6A8, symBinAddr: 0x69B0, symSize: 0x8 } - - { offsetInCU: 0x664, offset: 0xB3673, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration scrollingEnabled]', symObjAddr: 0x6B0, symBinAddr: 0x69B8, symSize: 0x8 } - - { offsetInCU: 0x69B, offset: 0xB36AA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration zoomingEnabled]', symObjAddr: 0x6B8, symBinAddr: 0x69C0, symSize: 0x8 } - - { offsetInCU: 0x6D2, offset: 0xB36E1, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration allowLinkPreviews]', symObjAddr: 0x6C0, symBinAddr: 0x69C8, symSize: 0x8 } - - { offsetInCU: 0x709, offset: 0xB3718, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration handleApplicationNotifications]', symObjAddr: 0x6C8, symBinAddr: 0x69D0, symSize: 0x8 } - - { offsetInCU: 0x740, offset: 0xB374F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration isWebDebuggable]', symObjAddr: 0x6D0, symBinAddr: 0x69D8, symSize: 0x8 } - - { offsetInCU: 0x777, offset: 0xB3786, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration cordovaDeployDisabled]', symObjAddr: 0x6D8, symBinAddr: 0x69E0, symSize: 0x8 } - - { offsetInCU: 0x7AE, offset: 0xB37BD, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration contentInsetAdjustmentBehavior]', symObjAddr: 0x6E0, symBinAddr: 0x69E8, symSize: 0x8 } - - { offsetInCU: 0x7E5, offset: 0xB37F4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appLocation]', symObjAddr: 0x6E8, symBinAddr: 0x69F0, symSize: 0x8 } - - { offsetInCU: 0x81C, offset: 0xB382B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appStartPath]', symObjAddr: 0x6F0, symBinAddr: 0x69F8, symSize: 0x8 } - - { offsetInCU: 0x853, offset: 0xB3862, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration limitsNavigationsToAppBoundDomains]', symObjAddr: 0x6F8, symBinAddr: 0x6A00, symSize: 0x8 } - - { offsetInCU: 0x88A, offset: 0xB3899, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration preferredContentMode]', symObjAddr: 0x700, symBinAddr: 0x6A08, symSize: 0x8 } - - { offsetInCU: 0x8C1, offset: 0xB38D0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration legacyConfig]', symObjAddr: 0x708, symBinAddr: 0x6A10, symSize: 0x8 } - - { offsetInCU: 0x8F8, offset: 0xB3907, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration .cxx_destruct]', symObjAddr: 0x710, symBinAddr: 0x6A18, symSize: 0xA8 } - - { offsetInCU: 0x126, offset: 0xB3C29, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC4loadyyF', symObjAddr: 0x0, symBinAddr: 0x6AC0, symSize: 0x94 } - - { offsetInCU: 0x1B7, offset: 0xB3CBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC4loadyyFTo', symObjAddr: 0x94, symBinAddr: 0x6B54, symSize: 0x2C } - - { offsetInCU: 0x1F1, offset: 0xB3CF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC10getCookiesyySo13CAPPluginCallCF', symObjAddr: 0xC0, symBinAddr: 0x6B80, symSize: 0x204 } - - { offsetInCU: 0x2C2, offset: 0xB3DC5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC10getCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0x2C4, symBinAddr: 0x6D84, symSize: 0x50 } - - { offsetInCU: 0x2DE, offset: 0xB3DE1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC9setCookieyySo13CAPPluginCallCF', symObjAddr: 0x314, symBinAddr: 0x6DD4, symSize: 0x420 } - - { offsetInCU: 0x4C8, offset: 0xB3FCB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC9setCookieyySo13CAPPluginCallCFTo', symObjAddr: 0x734, symBinAddr: 0x71F4, symSize: 0x50 } - - { offsetInCU: 0x4E4, offset: 0xB3FE7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12deleteCookieyySo13CAPPluginCallCF', symObjAddr: 0x784, symBinAddr: 0x7244, symSize: 0x274 } - - { offsetInCU: 0x5CE, offset: 0xB40D1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12deleteCookieyySo13CAPPluginCallCFTo', symObjAddr: 0x9F8, symBinAddr: 0x74B8, symSize: 0x50 } - - { offsetInCU: 0x5EA, offset: 0xB40ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12clearCookiesyySo13CAPPluginCallCF', symObjAddr: 0xA48, symBinAddr: 0x7508, symSize: 0x1B8 } - - { offsetInCU: 0x6D0, offset: 0xB41D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12clearCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0xC00, symBinAddr: 0x76C0, symSize: 0x50 } - - { offsetInCU: 0x716, offset: 0xB4219, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC15clearAllCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0xC50, symBinAddr: 0x7710, symSize: 0x68 } - - { offsetInCU: 0x79D, offset: 0xB42A0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0xCB8, symBinAddr: 0x7778, symSize: 0xB4 } - - { offsetInCU: 0x7BB, offset: 0xB42BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0xD6C, symBinAddr: 0x782C, symSize: 0xC0 } - - { offsetInCU: 0x834, offset: 0xB4337, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0xE4C, symBinAddr: 0x790C, symSize: 0xE4 } - - { offsetInCU: 0x883, offset: 0xB4386, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfC', symObjAddr: 0xF30, symBinAddr: 0x79F0, symSize: 0x20 } - - { offsetInCU: 0x8A1, offset: 0xB43A4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfc', symObjAddr: 0xF50, symBinAddr: 0x7A10, symSize: 0x3C } - - { offsetInCU: 0x8DC, offset: 0xB43DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfcTo', symObjAddr: 0xF8C, symBinAddr: 0x7A4C, symSize: 0x48 } - - { offsetInCU: 0x917, offset: 0xB441A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCfD', symObjAddr: 0xFD4, symBinAddr: 0x7A94, symSize: 0x30 } - - { offsetInCU: 0x98A, offset: 0xB448D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCMa', symObjAddr: 0xE2C, symBinAddr: 0x78EC, symSize: 0x20 } - - { offsetInCU: 0x9AA, offset: 0xB44AD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCfETo', symObjAddr: 0x1004, symBinAddr: 0x7AC4, symSize: 0x10 } - - { offsetInCU: 0x9D9, offset: 0xB44DC, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1638, symBinAddr: 0x8050, symSize: 0x2C } - - { offsetInCU: 0x9ED, offset: 0xB44F0, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1664, symBinAddr: 0x807C, symSize: 0x2C } - - { offsetInCU: 0xA01, offset: 0xB4504, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSQWb', symObjAddr: 0x16D0, symBinAddr: 0x80E8, symSize: 0x2C } - - { offsetInCU: 0xA20, offset: 0xB4523, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x1A38, symBinAddr: 0x8450, symSize: 0x40 } - - { offsetInCU: 0xA34, offset: 0xB4537, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOc', symObjAddr: 0x1A78, symBinAddr: 0x8490, symSize: 0x48 } - - { offsetInCU: 0xA48, offset: 0xB454B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOh', symObjAddr: 0x1AC0, symBinAddr: 0x84D8, symSize: 0x40 } - - { offsetInCU: 0xA5C, offset: 0xB455F, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x1B00, symBinAddr: 0x8518, symSize: 0x44 } - - { offsetInCU: 0xA70, offset: 0xB4573, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1B94, symBinAddr: 0x85AC, symSize: 0x2C } - - { offsetInCU: 0xA84, offset: 0xB4587, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1BC0, symBinAddr: 0x85D8, symSize: 0x2C } - - { offsetInCU: 0xA98, offset: 0xB459B, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSQWb', symObjAddr: 0x1BEC, symBinAddr: 0x8604, symSize: 0x2C } - - { offsetInCU: 0xAAC, offset: 0xB45AF, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation26_ObjectiveCBridgeableErrorSCs0F0PWb', symObjAddr: 0x1C18, symBinAddr: 0x8630, symSize: 0x2C } - - { offsetInCU: 0xAC0, offset: 0xB45C3, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCs5ErrorPWb', symObjAddr: 0x1C44, symBinAddr: 0x865C, symSize: 0x2C } - - { offsetInCU: 0xAD4, offset: 0xB45D7, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1C70, symBinAddr: 0x8688, symSize: 0x2C } - - { offsetInCU: 0xAE8, offset: 0xB45EB, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1C9C, symBinAddr: 0x86B4, symSize: 0x2C } - - { offsetInCU: 0xAFC, offset: 0xB45FF, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyaSHSCSQWb', symObjAddr: 0x1CC8, symBinAddr: 0x86E0, symSize: 0x2C } - - { offsetInCU: 0xB10, offset: 0xB4613, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomF0PWb', symObjAddr: 0x1CF4, symBinAddr: 0x870C, symSize: 0x2C } - - { offsetInCU: 0xB24, offset: 0xB4627, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAC26_ObjectiveCBridgeableErrorPWb', symObjAddr: 0x1D20, symBinAddr: 0x8738, symSize: 0x2C } - - { offsetInCU: 0xB38, offset: 0xB463B, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCSHWb', symObjAddr: 0x1D4C, symBinAddr: 0x8764, symSize: 0x2C } - - { offsetInCU: 0xB4C, offset: 0xB464F, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_AC06_ErrorB8ProtocolPWT', symObjAddr: 0x1D78, symBinAddr: 0x8790, symSize: 0x2C } - - { offsetInCU: 0xB60, offset: 0xB4663, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_SYWT', symObjAddr: 0x1DFC, symBinAddr: 0x8814, symSize: 0x2C } - - { offsetInCU: 0xB74, offset: 0xB4677, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_8RawValueSYs17FixedWidthIntegerPWT', symObjAddr: 0x1E28, symBinAddr: 0x8840, symSize: 0x4 } - - { offsetInCU: 0xB88, offset: 0xB468B, size: 0x8, addend: 0x0, symName: '_$sS2is17FixedWidthIntegersWl', symObjAddr: 0x1E2C, symBinAddr: 0x8844, symSize: 0x44 } - - { offsetInCU: 0xB9C, offset: 0xB469F, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeV10Foundation06_ErrorB8ProtocolSCSQWb', symObjAddr: 0x1E70, symBinAddr: 0x8888, symSize: 0x2C } - - { offsetInCU: 0xBB0, offset: 0xB46B3, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeV10Foundation06_ErrorB8ProtocolSC01_D4TypeAcDP_AC21_BridgedStoredNSErrorPWT', symObjAddr: 0x1E9C, symBinAddr: 0x88B4, symSize: 0x2C } - - { offsetInCU: 0xBC4, offset: 0xB46C7, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyaSHSCSQWb', symObjAddr: 0x1EC8, symBinAddr: 0x88E0, symSize: 0x2C } - - { offsetInCU: 0xC4A, offset: 0xB474D, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x1074, symBinAddr: 0x7B28, symSize: 0x14 } - - { offsetInCU: 0xC90, offset: 0xB4793, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x1088, symBinAddr: 0x7B3C, symSize: 0x18 } - - { offsetInCU: 0xCD0, offset: 0xB47D3, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromE1C_6resulty01_E5CTypeQz_xSgztFZTW', symObjAddr: 0x10C8, symBinAddr: 0x7B7C, symSize: 0x14 } - - { offsetInCU: 0xD10, offset: 0xB4813, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromE1C_6resultSb01_E5CTypeQz_xSgztFZTW', symObjAddr: 0x10DC, symBinAddr: 0x7B90, symSize: 0x18 } - - { offsetInCU: 0xD50, offset: 0xB4853, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromC1C_6resulty01_C5CTypeQz_xSgztFZTW', symObjAddr: 0x1138, symBinAddr: 0x7BB4, symSize: 0x14 } - - { offsetInCU: 0xD90, offset: 0xB4893, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromC1C_6resultSb01_C5CTypeQz_xSgztFZTW', symObjAddr: 0x114C, symBinAddr: 0x7BC8, symSize: 0x18 } - - { offsetInCU: 0xDDC, offset: 0xB48DF, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14A8, symBinAddr: 0x7EC0, symSize: 0x5C } - - { offsetInCU: 0xE0D, offset: 0xB4910, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toghI0s0hI0VSgyFTW', symObjAddr: 0x15B4, symBinAddr: 0x7FCC, symSize: 0x84 } - - { offsetInCU: 0xE29, offset: 0xB492C, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP9_userInfoyXlSgvgTW', symObjAddr: 0x177C, symBinAddr: 0x8194, symSize: 0x4 } - - { offsetInCU: 0xE54, offset: 0xB4957, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x1818, symBinAddr: 0x8230, symSize: 0x14 } - - { offsetInCU: 0xE9A, offset: 0xB499D, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_tofgH0s0gH0VSgyFTW', symObjAddr: 0x182C, symBinAddr: 0x8244, symSize: 0x84 } - - { offsetInCU: 0xEB6, offset: 0xB49B9, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas35_HasCustomAnyHashableRepresentationSCsACP03_todeF0s0eF0VSgyFTW', symObjAddr: 0x1934, symBinAddr: 0x834C, symSize: 0x84 } - - { offsetInCU: 0xF57, offset: 0xB4A5A, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP05errorB0SivgTW', symObjAddr: 0x1330, symBinAddr: 0x7D48, symSize: 0x40 } - - { offsetInCU: 0xF73, offset: 0xB4A76, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP13errorUserInfoSDySSypGvgTW', symObjAddr: 0x1370, symBinAddr: 0x7D88, symSize: 0x40 } - - { offsetInCU: 0xF8F, offset: 0xB4A92, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation26_ObjectiveCBridgeableErrorSCAcDP15_bridgedNSErrorxSgSo0H0Ch_tcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x7DC8, symSize: 0x6C } - - { offsetInCU: 0xFBA, offset: 0xB4ABD, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH9hashValueSivgTW', symObjAddr: 0x141C, symBinAddr: 0x7E34, symSize: 0x3C } - - { offsetInCU: 0xFEB, offset: 0xB4AEE, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1458, symBinAddr: 0x7E70, symSize: 0x50 } - - { offsetInCU: 0x1007, offset: 0xB4B0A, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP7_domainSSvgTW', symObjAddr: 0x16FC, symBinAddr: 0x8114, symSize: 0x40 } - - { offsetInCU: 0x1023, offset: 0xB4B26, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP5_codeSivgTW', symObjAddr: 0x173C, symBinAddr: 0x8154, symSize: 0x40 } - - { offsetInCU: 0x103F, offset: 0xB4B42, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x1780, symBinAddr: 0x8198, symSize: 0x40 } - - { offsetInCU: 0x105B, offset: 0xB4B5E, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x17C0, symBinAddr: 0x81D8, symSize: 0x58 } - - { offsetInCU: 0x1123, offset: 0xB4C26, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorSo0F0CvgTW', symObjAddr: 0x10B8, symBinAddr: 0x7B6C, symSize: 0x8 } - - { offsetInCU: 0x1154, offset: 0xB4C57, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorxSo0F0C_tcfCTW', symObjAddr: 0x10C0, symBinAddr: 0x7B74, symSize: 0x8 } - - { offsetInCU: 0x117F, offset: 0xB4C82, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW', symObjAddr: 0x1320, symBinAddr: 0x7D38, symSize: 0x10 } - - { offsetInCU: 0x119F, offset: 0xB4CA2, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW', symObjAddr: 0x1320, symBinAddr: 0x7D38, symSize: 0x10 } - - { offsetInCU: 0x11C3, offset: 0xB4CC6, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x1504, symBinAddr: 0x7F1C, symSize: 0x10 } - - { offsetInCU: 0x11DF, offset: 0xB4CE2, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x1514, symBinAddr: 0x7F2C, symSize: 0xC } - - { offsetInCU: 0x4B, offset: 0xB4DCE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVACycfC', symObjAddr: 0x0, symBinAddr: 0x89DC, symSize: 0xC } - - { offsetInCU: 0x7A, offset: 0xB4DFD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvg', symObjAddr: 0xC, symBinAddr: 0x89E8, symSize: 0x2C } - - { offsetInCU: 0x8E, offset: 0xB4E11, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvs', symObjAddr: 0x38, symBinAddr: 0x8A14, symSize: 0x34 } - - { offsetInCU: 0xB7, offset: 0xB4E3A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvM', symObjAddr: 0x6C, symBinAddr: 0x8A48, symSize: 0x10 } - - { offsetInCU: 0xD5, offset: 0xB4E58, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvM.resume.0', symObjAddr: 0x7C, symBinAddr: 0x8A58, symSize: 0x4 } - - { offsetInCU: 0x100, offset: 0xB4E83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV5route3forS2S_tF', symObjAddr: 0x80, symBinAddr: 0x8A5C, symSize: 0x128 } - - { offsetInCU: 0x185, offset: 0xB4F08, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP5route3forS2S_tFTW', symObjAddr: 0x1A8, symBinAddr: 0x8B84, symSize: 0x4 } - - { offsetInCU: 0x1B2, offset: 0xB4F35, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvgTW', symObjAddr: 0x1AC, symBinAddr: 0x8B88, symSize: 0x2C } - - { offsetInCU: 0x20E, offset: 0xB4F91, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvsTW', symObjAddr: 0x1D8, symBinAddr: 0x8BB4, symSize: 0x34 } - - { offsetInCU: 0x24C, offset: 0xB4FCF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvMTW', symObjAddr: 0x20C, symBinAddr: 0x8BE8, symSize: 0x10 } - - { offsetInCU: 0x268, offset: 0xB4FEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvMTW.resume.0', symObjAddr: 0x21C, symBinAddr: 0x8BF8, symSize: 0x4 } - - { offsetInCU: 0x285, offset: 0xB5008, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwCP', symObjAddr: 0x240, symBinAddr: 0x8C1C, symSize: 0x2C } - - { offsetInCU: 0x299, offset: 0xB501C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwxx', symObjAddr: 0x26C, symBinAddr: 0x8C48, symSize: 0x8 } - - { offsetInCU: 0x2AD, offset: 0xB5030, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwcp', symObjAddr: 0x274, symBinAddr: 0x8C50, symSize: 0x2C } - - { offsetInCU: 0x2C1, offset: 0xB5044, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwca', symObjAddr: 0x2A0, symBinAddr: 0x8C7C, symSize: 0x40 } - - { offsetInCU: 0x2D5, offset: 0xB5058, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x2E0, symBinAddr: 0x8CBC, symSize: 0xC } - - { offsetInCU: 0x2E9, offset: 0xB506C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwta', symObjAddr: 0x2EC, symBinAddr: 0x8CC8, symSize: 0x30 } - - { offsetInCU: 0x2FD, offset: 0xB5080, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwet', symObjAddr: 0x31C, symBinAddr: 0x8CF8, symSize: 0x48 } - - { offsetInCU: 0x311, offset: 0xB5094, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwst', symObjAddr: 0x364, symBinAddr: 0x8D40, symSize: 0x3C } - - { offsetInCU: 0x325, offset: 0xB50A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVMa', symObjAddr: 0x3A0, symBinAddr: 0x8D7C, symSize: 0x10 } - - { offsetInCU: 0x93, offset: 0xB5258, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg', symObjAddr: 0x13C, symBinAddr: 0x8EC8, symSize: 0x64 } - - { offsetInCU: 0xB2, offset: 0xB5277, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs', symObjAddr: 0x1A0, symBinAddr: 0x8F2C, symSize: 0x88 } - - { offsetInCU: 0xDB, offset: 0xB52A0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM', symObjAddr: 0x228, symBinAddr: 0x8FB4, symSize: 0x44 } - - { offsetInCU: 0x124, offset: 0xB52E9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvg', symObjAddr: 0x2D4, symBinAddr: 0x9060, symSize: 0x48 } - - { offsetInCU: 0x143, offset: 0xB5308, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvs', symObjAddr: 0x31C, symBinAddr: 0x90A8, symSize: 0x50 } - - { offsetInCU: 0x16C, offset: 0xB5331, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM', symObjAddr: 0x36C, symBinAddr: 0x90F8, symSize: 0x44 } - - { offsetInCU: 0x18B, offset: 0xB5350, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM.resume.0', symObjAddr: 0x3B0, symBinAddr: 0x913C, symSize: 0x4 } - - { offsetInCU: 0x1C5, offset: 0xB538A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfC', symObjAddr: 0x3C4, symBinAddr: 0x9150, symSize: 0x58 } - - { offsetInCU: 0x1F9, offset: 0xB53BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc', symObjAddr: 0x41C, symBinAddr: 0x91A8, symSize: 0x30 } - - { offsetInCU: 0x20D, offset: 0xB53D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x44C, symBinAddr: 0x91D8, symSize: 0x198 } - - { offsetInCU: 0x232, offset: 0xB53F7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x5E4, symBinAddr: 0x9370, symSize: 0x360 } - - { offsetInCU: 0x312, offset: 0xB54D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKFySSXEfU_', symObjAddr: 0x944, symBinAddr: 0x96D0, symSize: 0x280 } - - { offsetInCU: 0x4D1, offset: 0xB5696, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF', symObjAddr: 0xD6C, symBinAddr: 0x9AF8, symSize: 0x3A8 } - - { offsetInCU: 0x728, offset: 0xB58ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKFySS_SStXEfU0_', symObjAddr: 0x1114, symBinAddr: 0x9EA0, symSize: 0x284 } - - { offsetInCU: 0x924, offset: 0xB5AE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF', symObjAddr: 0x1398, symBinAddr: 0xA124, symSize: 0xAC } - - { offsetInCU: 0x97C, offset: 0xB5B41, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF', symObjAddr: 0x1444, symBinAddr: 0xA1D0, symSize: 0x128 } - - { offsetInCU: 0xA57, offset: 0xB5C1C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc12DataFromFormE0y10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x156C, symBinAddr: 0xA2F8, symSize: 0x1010 } - - { offsetInCU: 0x1410, offset: 0xB65D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF', symObjAddr: 0x257C, symBinAddr: 0xB308, symSize: 0x528 } - - { offsetInCU: 0x1615, offset: 0xB67DA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGFySSXEfU_', symObjAddr: 0x2B1C, symBinAddr: 0xB8A8, symSize: 0x20C } - - { offsetInCU: 0x1703, offset: 0xB68C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF', symObjAddr: 0x2D28, symBinAddr: 0xBAB4, symSize: 0x228 } - - { offsetInCU: 0x1801, offset: 0xB69C6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC14setContentTypeyySSSgF', symObjAddr: 0x2F50, symBinAddr: 0xBCDC, symSize: 0x80 } - - { offsetInCU: 0x1858, offset: 0xB6A1D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10setTimeoutyySdF', symObjAddr: 0x2FD0, symBinAddr: 0xBD5C, symSize: 0x5C } - - { offsetInCU: 0x18AF, offset: 0xB6A74, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF', symObjAddr: 0x302C, symBinAddr: 0xBDB8, symSize: 0x64 } - - { offsetInCU: 0x18FE, offset: 0xB6AC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF', symObjAddr: 0x3090, symBinAddr: 0xBE1C, symSize: 0xA0 } - - { offsetInCU: 0x1995, offset: 0xB6B5A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctFTo', symObjAddr: 0x3130, symBinAddr: 0xBEBC, symSize: 0x1F0 } - - { offsetInCU: 0x19FF, offset: 0xB6BC4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF', symObjAddr: 0x3320, symBinAddr: 0xC0AC, symSize: 0xD8 } - - { offsetInCU: 0x1A66, offset: 0xB6C2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfC', symObjAddr: 0x3580, symBinAddr: 0xC30C, symSize: 0x20 } - - { offsetInCU: 0x1A84, offset: 0xB6C49, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfc', symObjAddr: 0x35A0, symBinAddr: 0xC32C, symSize: 0x2C } - - { offsetInCU: 0x1AE7, offset: 0xB6CAC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfcTo', symObjAddr: 0x35CC, symBinAddr: 0xC358, symSize: 0x2C } - - { offsetInCU: 0x1B4E, offset: 0xB6D13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCfD', symObjAddr: 0x35F8, symBinAddr: 0xC384, symSize: 0x34 } - - { offsetInCU: 0x1B7B, offset: 0xB6D40, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfcTf4ngn_n', symObjAddr: 0x4380, symBinAddr: 0xD10C, symSize: 0x4B8 } - - { offsetInCU: 0x1DE0, offset: 0xB6FA5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvpACTK', symObjAddr: 0x0, symBinAddr: 0x8D8C, symSize: 0x68 } - - { offsetInCU: 0x1E0D, offset: 0xB6FD2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvpACTk', symObjAddr: 0x68, symBinAddr: 0x8DF4, symSize: 0xD4 } - - { offsetInCU: 0x1E44, offset: 0xB7009, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvpACTk', symObjAddr: 0x26C, symBinAddr: 0x8FF8, symSize: 0x68 } - - { offsetInCU: 0x203B, offset: 0xB7200, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x33F8, symBinAddr: 0xC184, symSize: 0x188 } - - { offsetInCU: 0x20ED, offset: 0xB72B2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCfETo', symObjAddr: 0x362C, symBinAddr: 0xC3B8, symSize: 0x50 } - - { offsetInCU: 0x213D, offset: 0xB7302, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_SSTg5', symObjAddr: 0x367C, symBinAddr: 0xC408, symSize: 0xB8 } - - { offsetInCU: 0x21C7, offset: 0xB738C, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x3734, symBinAddr: 0xC4C0, symSize: 0xB0 } - - { offsetInCU: 0x2255, offset: 0xB741A, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_So13CAPPluginCallCTg5', symObjAddr: 0x37E4, symBinAddr: 0xC570, symSize: 0xB0 } - - { offsetInCU: 0x2364, offset: 0xB7529, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationO22withUnsafeMutableBytesyxxSwKXEKlFs16IndexingIteratorVySS8UTF8ViewVG_Sit_Tg5', symObjAddr: 0x3894, symBinAddr: 0xC620, symSize: 0x30C } - - { offsetInCU: 0x2451, offset: 0xB7616, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0V15withUnsafeBytesyxxSWKXEKlFyt_Tgq5015$s10Foundation4B42VyACxcSTRzs5UInt8V7ElementRtzlufcySWXEfU3_ACTf1ncn_n', symObjAddr: 0x3BB0, symBinAddr: 0xC93C, symSize: 0xD4 } - - { offsetInCU: 0x24BB, offset: 0xB7680, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufcAC15_RepresentationOSWXEfU_', symObjAddr: 0x3C84, symBinAddr: 0xCA10, symSize: 0x74 } - - { offsetInCU: 0x2530, offset: 0xB76F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation13__DataStorageC22withUnsafeMutableBytes2in5applyxSnySiG_xSwKXEtKlFs16IndexingIteratorVySS8UTF8ViewVG_Sit_Tg5', symObjAddr: 0x3CF8, symBinAddr: 0xCA84, symSize: 0xAC } - - { offsetInCU: 0x261B, offset: 0xB77E0, size: 0x8, addend: 0x0, symName: '_$sSTsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlFSDySS9Capacitor7JSValue_pG_s17_NativeDictionaryVyS2SGTg5051$sSD16compactMapValuesySDyxqd__Gqd__Sgq_KXEKlFys17_fg46Vyxqd__Gz_x3key_q_5valuettKXEfU_SS_9Capacitor7E116_pSSTg5076$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7I18_pKFSSSgAaH_pXEfU_Tf3nnpf_nTf1ncn_n', symObjAddr: 0x3DA4, symBinAddr: 0xCB30, symSize: 0x344 } - - { offsetInCU: 0x27D3, offset: 0xB7998, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_AI_SitSryAEGXEfU_SS8UTF8ViewV_TG5', symObjAddr: 0x40E8, symBinAddr: 0xCE74, symSize: 0x88 } - - { offsetInCU: 0x28AD, offset: 0xB7A72, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x4838, symBinAddr: 0xD5C4, symSize: 0x24 } - - { offsetInCU: 0x28C1, offset: 0xB7A86, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOAEs0D0AAWl', symObjAddr: 0x485C, symBinAddr: 0xD5E8, symSize: 0x44 } - - { offsetInCU: 0x28D5, offset: 0xB7A9A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pWOc', symObjAddr: 0x48E0, symBinAddr: 0xD62C, symSize: 0x44 } - - { offsetInCU: 0x2AE3, offset: 0xB7CA8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x4FFC, symBinAddr: 0xDD48, symSize: 0xC4 } - - { offsetInCU: 0x2B59, offset: 0xB7D1E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x50C0, symBinAddr: 0xDE0C, symSize: 0x78 } - - { offsetInCU: 0x2B86, offset: 0xB7D4B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x5138, symBinAddr: 0xDE84, symSize: 0x80 } - - { offsetInCU: 0x2BDB, offset: 0xB7DA0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x51B8, symBinAddr: 0xDF04, symSize: 0x68 } - - { offsetInCU: 0x2C2C, offset: 0xB7DF1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationO5countAESi_tcfCTf4nd_n', symObjAddr: 0x5220, symBinAddr: 0xDF6C, symSize: 0x9C } - - { offsetInCU: 0x2D76, offset: 0xB7F3B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x57B8, symBinAddr: 0xE504, symSize: 0x50 } - - { offsetInCU: 0x2D8A, offset: 0xB7F4F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x584C, symBinAddr: 0xE554, symSize: 0x44 } - - { offsetInCU: 0x2E43, offset: 0xB8008, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x5CFC, symBinAddr: 0xEA04, symSize: 0x3C } - - { offsetInCU: 0x2EA4, offset: 0xB8069, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMa', symObjAddr: 0x6274, symBinAddr: 0xEF7C, symSize: 0x3C } - - { offsetInCU: 0x2EB8, offset: 0xB807D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMU', symObjAddr: 0x6310, symBinAddr: 0xF018, symSize: 0x8 } - - { offsetInCU: 0x2ECC, offset: 0xB8091, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMr', symObjAddr: 0x6318, symBinAddr: 0xF020, symSize: 0x78 } - - { offsetInCU: 0x2EE0, offset: 0xB80A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwCP', symObjAddr: 0x6634, symBinAddr: 0xF33C, symSize: 0x2C } - - { offsetInCU: 0x2EF4, offset: 0xB80B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwxx', symObjAddr: 0x6660, symBinAddr: 0xF368, symSize: 0x8 } - - { offsetInCU: 0x2F08, offset: 0xB80CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwcp', symObjAddr: 0x6668, symBinAddr: 0xF370, symSize: 0x2C } - - { offsetInCU: 0x2F1C, offset: 0xB80E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwca', symObjAddr: 0x6694, symBinAddr: 0xF39C, symSize: 0x40 } - - { offsetInCU: 0x2F30, offset: 0xB80F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwta', symObjAddr: 0x66E0, symBinAddr: 0xF3DC, symSize: 0x30 } - - { offsetInCU: 0x2F44, offset: 0xB8109, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwet', symObjAddr: 0x6710, symBinAddr: 0xF40C, symSize: 0x5C } - - { offsetInCU: 0x2F58, offset: 0xB811D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwst', symObjAddr: 0x676C, symBinAddr: 0xF468, symSize: 0x50 } - - { offsetInCU: 0x2F6C, offset: 0xB8131, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwug', symObjAddr: 0x67BC, symBinAddr: 0xF4B8, symSize: 0x8 } - - { offsetInCU: 0x2F80, offset: 0xB8145, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwup', symObjAddr: 0x67C4, symBinAddr: 0xF4C0, symSize: 0x4 } - - { offsetInCU: 0x2F94, offset: 0xB8159, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwui', symObjAddr: 0x67C8, symBinAddr: 0xF4C4, symSize: 0x4 } - - { offsetInCU: 0x2FA8, offset: 0xB816D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOMa', symObjAddr: 0x67CC, symBinAddr: 0xF4C8, symSize: 0x10 } - - { offsetInCU: 0x2FBC, offset: 0xB8181, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOb', symObjAddr: 0x67DC, symBinAddr: 0xF4D8, symSize: 0x48 } - - { offsetInCU: 0x2FD0, offset: 0xB8195, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6824, symBinAddr: 0xF520, symSize: 0x10 } - - { offsetInCU: 0x2FE4, offset: 0xB81A9, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x6834, symBinAddr: 0xF530, symSize: 0x10 } - - { offsetInCU: 0x302E, offset: 0xB81F3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_SS8UTF8ViewV_TG5TA', symObjAddr: 0x68A0, symBinAddr: 0xF59C, symSize: 0x58 } - - { offsetInCU: 0x3081, offset: 0xB8246, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOSgWOe', symObjAddr: 0x68F8, symBinAddr: 0xF5F4, symSize: 0x14 } - - { offsetInCU: 0x3095, offset: 0xB825A, size: 0x8, addend: 0x0, symName: '_$s10Foundation15ContiguousBytes_pWOb', symObjAddr: 0x690C, symBinAddr: 0xF608, symSize: 0x18 } - - { offsetInCU: 0x30A9, offset: 0xB826E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_AI_SitSryAEGXEfU_SS8UTF8ViewV_TG5TA', symObjAddr: 0x6924, symBinAddr: 0xF620, symSize: 0x18 } - - { offsetInCU: 0x30BD, offset: 0xB8282, size: 0x8, addend: 0x0, symName: '_$sSw17withMemoryRebound2to_q_xm_q_SryxGKXEtKr0_lFs5UInt8V_s16IndexingIteratorVySS8UTF8ViewVG_SitTg5Tf4dnn_n', symObjAddr: 0x693C, symBinAddr: 0xF638, symSize: 0x60 } - - { offsetInCU: 0x3116, offset: 0xB82DB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP7_domainSSvgTW', symObjAddr: 0x3B4, symBinAddr: 0x9140, symSize: 0x4 } - - { offsetInCU: 0x3132, offset: 0xB82F7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP5_codeSivgTW', symObjAddr: 0x3B8, symBinAddr: 0x9144, symSize: 0x4 } - - { offsetInCU: 0x314E, offset: 0xB8313, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x3BC, symBinAddr: 0x9148, symSize: 0x4 } - - { offsetInCU: 0x316A, offset: 0xB832F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x3C0, symBinAddr: 0x914C, symSize: 0x4 } - - { offsetInCU: 0x326A, offset: 0xB842F, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg5100$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKFySS_SStXEfU0_10Foundation0J0VSSTf1cn_n', symObjAddr: 0xBC4, symBinAddr: 0x9950, symSize: 0x1A8 } - - { offsetInCU: 0x3451, offset: 0xB8616, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9Capacitor7JSValue_pTg5Tf4gd_n', symObjAddr: 0x4170, symBinAddr: 0xCEFC, symSize: 0x114 } - - { offsetInCU: 0x3592, offset: 0xB8757, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x4284, symBinAddr: 0xD010, symSize: 0xFC } - - { offsetInCU: 0x36C6, offset: 0xB888B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x4924, symBinAddr: 0xD670, symSize: 0x110 } - - { offsetInCU: 0x380D, offset: 0xB89D2, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSo38UIApplicationOpenExternalURLOptionsKeya_ypTg5Tf4gd_n', symObjAddr: 0x4A34, symBinAddr: 0xD780, symSize: 0x100 } - - { offsetInCU: 0x3954, offset: 0xB8B19, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SayypGTg5Tf4gd_n', symObjAddr: 0x4B34, symBinAddr: 0xD880, symSize: 0xEC } - - { offsetInCU: 0x3A9B, offset: 0xB8C60, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_10Foundation3URLVSgTg5Tf4gd_n', symObjAddr: 0x4C20, symBinAddr: 0xD96C, symSize: 0x16C } - - { offsetInCU: 0x3BD2, offset: 0xB8D97, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So42UIScrollViewContentInsetAdjustmentBehaviorVTg5Tf4gd_n', symObjAddr: 0x4D8C, symBinAddr: 0xDAD8, symSize: 0xE4 } - - { offsetInCU: 0x3CF5, offset: 0xB8EBA, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVySS9Capacitor7JSValue_p_G_Tg5076$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7F12_pKFySSXEfU_10Foundation13URLComponentsVSDySSAfG_pGTf1cn_nTf4nng_n', symObjAddr: 0x4E70, symBinAddr: 0xDBBC, symSize: 0x18C } - - { offsetInCU: 0x3DE6, offset: 0xB8FAB, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVyS2S_G_Tg556$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSFySSXEfU_SDySSypG9Capacitor0phI0CTf1cn_nTf4nng_n', symObjAddr: 0x5890, symBinAddr: 0xE598, symSize: 0x46C } - - { offsetInCU: 0x4093, offset: 0xB9258, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVyS2S_G_Tg559$s9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGFySSXEfU_SDyS2SG9Capacitor0qhI0CTf1cn_nTf4ngg_n', symObjAddr: 0x5D38, symBinAddr: 0xEA40, symSize: 0x3B0 } - - { offsetInCU: 0x42BC, offset: 0xB9481, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVySSyp_G_Tg560$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGFySSXEfU_SDySSypG9Capacitor0qhI0CTf1cn_nTf4ngg_n', symObjAddr: 0x60E8, symBinAddr: 0xEDF0, symSize: 0x18C } - - { offsetInCU: 0x44B2, offset: 0xB9677, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufCSS8UTF8ViewV_Tg5Tf4nd_n', symObjAddr: 0x52BC, symBinAddr: 0xE008, symSize: 0x4EC } - - { offsetInCU: 0x6D, offset: 0xB9A91, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg', symObjAddr: 0x0, symBinAddr: 0xF6E0, symSize: 0x30 } - - { offsetInCU: 0xD4, offset: 0xB9AF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg', symObjAddr: 0x98, symBinAddr: 0xF778, symSize: 0x50 } - - { offsetInCU: 0xF3, offset: 0xB9B17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg', symObjAddr: 0xE8, symBinAddr: 0xF7C8, symSize: 0x44 } - - { offsetInCU: 0x112, offset: 0xB9B36, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs', symObjAddr: 0x12C, symBinAddr: 0xF80C, symSize: 0x48 } - - { offsetInCU: 0x137, offset: 0xB9B5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM', symObjAddr: 0x174, symBinAddr: 0xF854, symSize: 0x44 } - - { offsetInCU: 0x166, offset: 0xB9B8A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM', symObjAddr: 0x1D0, symBinAddr: 0xF8B0, symSize: 0x44 } - - { offsetInCU: 0x195, offset: 0xB9BB9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM.resume.0', symObjAddr: 0x214, symBinAddr: 0xF8F4, symSize: 0x4 } - - { offsetInCU: 0x1C0, offset: 0xB9BE4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM', symObjAddr: 0x2B4, symBinAddr: 0xF994, symSize: 0x44 } - - { offsetInCU: 0x20D, offset: 0xB9C31, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvgTo', symObjAddr: 0x2F8, symBinAddr: 0xF9D8, symSize: 0x68 } - - { offsetInCU: 0x24A, offset: 0xB9C6E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvg', symObjAddr: 0x360, symBinAddr: 0xFA40, symSize: 0x48 } - - { offsetInCU: 0x293, offset: 0xB9CB7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvsTo', symObjAddr: 0x3A8, symBinAddr: 0xFA88, symSize: 0x64 } - - { offsetInCU: 0x2D8, offset: 0xB9CFC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvs', symObjAddr: 0x40C, symBinAddr: 0xFAEC, symSize: 0x50 } - - { offsetInCU: 0x301, offset: 0xB9D25, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM', symObjAddr: 0x4C4, symBinAddr: 0xFBA4, symSize: 0x44 } - - { offsetInCU: 0x320, offset: 0xB9D44, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg', symObjAddr: 0x508, symBinAddr: 0xFBE8, symSize: 0x40 } - - { offsetInCU: 0x34E, offset: 0xB9D72, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvgSbyXEfU_', symObjAddr: 0x558, symBinAddr: 0xFC38, symSize: 0x464 } - - { offsetInCU: 0x3DC, offset: 0xB9E00, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs', symObjAddr: 0x548, symBinAddr: 0xFC28, symSize: 0x10 } - - { offsetInCU: 0x3FF, offset: 0xB9E23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM', symObjAddr: 0x9BC, symBinAddr: 0x1009C, symSize: 0x38 } - - { offsetInCU: 0x458, offset: 0xB9E7C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM.resume.0', symObjAddr: 0x9F4, symBinAddr: 0x100D4, symSize: 0x18 } - - { offsetInCU: 0x4DF, offset: 0xB9F03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC04loadC0yyF', symObjAddr: 0xA0C, symBinAddr: 0x100EC, symSize: 0x4B0 } - - { offsetInCU: 0x6DD, offset: 0xBA101, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC04loadC0yyFTo', symObjAddr: 0x1808, symBinAddr: 0x10EE8, symSize: 0x2C } - - { offsetInCU: 0x706, offset: 0xBA12A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF', symObjAddr: 0x1878, symBinAddr: 0x10F14, symSize: 0x4A0 } - - { offsetInCU: 0x9E2, offset: 0xBA406, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11viewDidLoadyyFTo', symObjAddr: 0x1D18, symBinAddr: 0x113B4, symSize: 0x70 } - - { offsetInCU: 0xA56, offset: 0xBA47A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC27canPerformUnwindSegueAction_4from10withSenderSb10ObjectiveC8SelectorV_So06UIViewD0CyptFTo', symObjAddr: 0x1D90, symBinAddr: 0x11424, symSize: 0x78 } - - { offsetInCU: 0xA72, offset: 0xBA496, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF', symObjAddr: 0x1E08, symBinAddr: 0x1149C, symSize: 0x354 } - - { offsetInCU: 0xBE1, offset: 0xBA605, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF', symObjAddr: 0x215C, symBinAddr: 0x117F0, symSize: 0x20 } - - { offsetInCU: 0xC0C, offset: 0xBA630, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF', symObjAddr: 0x217C, symBinAddr: 0x11810, symSize: 0x378 } - - { offsetInCU: 0xE11, offset: 0xBA835, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF', symObjAddr: 0x24F4, symBinAddr: 0x11B88, symSize: 0x64 } - - { offsetInCU: 0xE86, offset: 0xBA8AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF', symObjAddr: 0x2558, symBinAddr: 0x11BEC, symSize: 0x4 } - - { offsetInCU: 0xF05, offset: 0xBA929, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF', symObjAddr: 0x255C, symBinAddr: 0x11BF0, symSize: 0x338 } - - { offsetInCU: 0x1054, offset: 0xBAA78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF', symObjAddr: 0x2894, symBinAddr: 0x11F28, symSize: 0x5BC } - - { offsetInCU: 0x179E, offset: 0xBB1C2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvgTo', symObjAddr: 0x2E50, symBinAddr: 0x124E4, symSize: 0x4C } - - { offsetInCU: 0x1818, offset: 0xBB23C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF', symObjAddr: 0x2F98, symBinAddr: 0x12588, symSize: 0xF4 } - - { offsetInCU: 0x1871, offset: 0xBB295, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF', symObjAddr: 0x30B8, symBinAddr: 0x126A8, symSize: 0xF4 } - - { offsetInCU: 0x191A, offset: 0xBB33E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF', symObjAddr: 0x31AC, symBinAddr: 0x1279C, symSize: 0x48 } - - { offsetInCU: 0x1981, offset: 0xBB3A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvgTo', symObjAddr: 0x31F4, symBinAddr: 0x127E4, symSize: 0x20 } - - { offsetInCU: 0x199D, offset: 0xBB3C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvg', symObjAddr: 0x3214, symBinAddr: 0x12804, symSize: 0xA4 } - - { offsetInCU: 0x1A05, offset: 0xBB429, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfC', symObjAddr: 0x33DC, symBinAddr: 0x129CC, symSize: 0x7C } - - { offsetInCU: 0x1A23, offset: 0xBB447, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc', symObjAddr: 0x3458, symBinAddr: 0x12A48, symSize: 0xEC } - - { offsetInCU: 0x1A6E, offset: 0xBB492, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfcTo', symObjAddr: 0x3544, symBinAddr: 0x12B34, symSize: 0x60 } - - { offsetInCU: 0x1A8A, offset: 0xBB4AE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfC', symObjAddr: 0x35A4, symBinAddr: 0x12B94, symSize: 0x44 } - - { offsetInCU: 0x1AA8, offset: 0xBB4CC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfc', symObjAddr: 0x35E8, symBinAddr: 0x12BD8, symSize: 0xB4 } - - { offsetInCU: 0x1AE5, offset: 0xBB509, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfcTo', symObjAddr: 0x369C, symBinAddr: 0x12C8C, symSize: 0x30 } - - { offsetInCU: 0x1B01, offset: 0xBB525, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCfD', symObjAddr: 0x36CC, symBinAddr: 0x12CBC, symSize: 0x30 } - - { offsetInCU: 0x1B4D, offset: 0xBB571, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvpACTk', symObjAddr: 0x30, symBinAddr: 0xF710, symSize: 0x68 } - - { offsetInCU: 0x1B83, offset: 0xBB5A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvpACTk', symObjAddr: 0x45C, symBinAddr: 0xFB3C, symSize: 0x68 } - - { offsetInCU: 0x1DF7, offset: 0xBB81B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcTf4nennnnn_nAA0nS10ControllerC_Tg5Tf4gggggnn_n', symObjAddr: 0x51EC, symBinAddr: 0x14754, symSize: 0x7A0 } - - { offsetInCU: 0x1FA3, offset: 0xBB9C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC19updateBinaryVersion33_0151BC8B8398CBA447E765B04F9447A0LLyyF', symObjAddr: 0xEBC, symBinAddr: 0x1059C, symSize: 0x404 } - - { offsetInCU: 0x2094, offset: 0xBBAB8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC010prepareWebC033_0151BC8B8398CBA447E765B04F9447A0LL4with12assetHandler010delegationP0ySo24CAPInstanceConfigurationC_AA0fc5AssetP0CAA0fc10DelegationP0CtF', symObjAddr: 0x12C0, symBinAddr: 0x109A0, symSize: 0x548 } - - { offsetInCU: 0x2367, offset: 0xBBD8B, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x308C, symBinAddr: 0x1267C, symSize: 0x2C } - - { offsetInCU: 0x246F, offset: 0xBBE93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCfETo', symObjAddr: 0x36FC, symBinAddr: 0x12CEC, symSize: 0x48 } - - { offsetInCU: 0x249E, offset: 0xBBEC2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyF', symObjAddr: 0x3744, symBinAddr: 0x12D34, symSize: 0xF4 } - - { offsetInCU: 0x250C, offset: 0xBBF30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyFTo', symObjAddr: 0x3838, symBinAddr: 0x12E28, symSize: 0x5C } - - { offsetInCU: 0x2528, offset: 0xBBF4C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tF', symObjAddr: 0x3894, symBinAddr: 0x12E84, symSize: 0x27C } - - { offsetInCU: 0x25CC, offset: 0xBBFF0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFyyScMYccfU_', symObjAddr: 0x3B10, symBinAddr: 0x13100, symSize: 0x1C4 } - - { offsetInCU: 0x264B, offset: 0xBC06F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFTo', symObjAddr: 0x3CD4, symBinAddr: 0x132C4, symSize: 0x58 } - - { offsetInCU: 0x2667, offset: 0xBC08B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14printLoadError33_0151BC8B8398CBA447E765B04F9447A0LLyyF', symObjAddr: 0x3D2C, symBinAddr: 0x1331C, symSize: 0x314 } - - { offsetInCU: 0x2969, offset: 0xBC38D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg', symObjAddr: 0x4040, symBinAddr: 0x13630, symSize: 0x50 } - - { offsetInCU: 0x29A7, offset: 0xBC3CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg', symObjAddr: 0x4090, symBinAddr: 0x13680, symSize: 0x1C } - - { offsetInCU: 0x29E4, offset: 0xBC408, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCAA0B8DelegateA2aDP010bridgedWebC0So05WKWebC0CSgvgTW', symObjAddr: 0x40AC, symBinAddr: 0x1369C, symSize: 0x50 } - - { offsetInCU: 0x2A5F, offset: 0xBC483, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCAA0B8DelegateA2aDP07bridgedcD0So06UIViewD0CSgvgTW', symObjAddr: 0x40FC, symBinAddr: 0x136EC, symSize: 0x1C } - - { offsetInCU: 0x2B14, offset: 0xBC538, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF10Foundation12URLQueryItemV_Tg5', symObjAddr: 0x4158, symBinAddr: 0x13708, symSize: 0x174 } - - { offsetInCU: 0x2CC4, offset: 0xBC6E8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi_Tg5', symObjAddr: 0x42CC, symBinAddr: 0x1387C, symSize: 0xFC } - - { offsetInCU: 0x2E5C, offset: 0xBC880, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x43C8, symBinAddr: 0x13978, symSize: 0x104 } - - { offsetInCU: 0x2FE4, offset: 0xBCA08, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor18PluginHeaderMethodV_Tg5', symObjAddr: 0x44CC, symBinAddr: 0x13A7C, symSize: 0x104 } - - { offsetInCU: 0x3177, offset: 0xBCB9B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo8NSObject_p_Tg5', symObjAddr: 0x45D0, symBinAddr: 0x13B80, symSize: 0x14C } - - { offsetInCU: 0x3362, offset: 0xBCD86, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0x471C, symBinAddr: 0x13CCC, symSize: 0x138 } - - { offsetInCU: 0x3526, offset: 0xBCF4A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x4854, symBinAddr: 0x13E04, symSize: 0xE8 } - - { offsetInCU: 0x36BE, offset: 0xBD0E2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSs_Tg5', symObjAddr: 0x493C, symBinAddr: 0x13EEC, symSize: 0x104 } - - { offsetInCU: 0x385C, offset: 0xBD280, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x4A40, symBinAddr: 0x13FF0, symSize: 0x138 } - - { offsetInCU: 0x39A7, offset: 0xBD3CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11logWarnings33_0151BC8B8398CBA447E765B04F9447A0LL3forySo21CAPInstanceDescriptorC_tFTf4nd_n', symObjAddr: 0x4B78, symBinAddr: 0x14128, symSize: 0x424 } - - { offsetInCU: 0x3CEB, offset: 0xBD70F, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x4F9C, symBinAddr: 0x1454C, symSize: 0x28 } - - { offsetInCU: 0x3CFF, offset: 0xBD723, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOf', symObjAddr: 0x500C, symBinAddr: 0x14574, symSize: 0x48 } - - { offsetInCU: 0x3D29, offset: 0xBD74D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo8NSObject_p_Tg5Tf4nnd_n', symObjAddr: 0x5054, symBinAddr: 0x145BC, symSize: 0x80 } - - { offsetInCU: 0x3DBE, offset: 0xBD7E2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo8NSObject_p_Tg5Tf4nng_n', symObjAddr: 0x50D4, symBinAddr: 0x1463C, symSize: 0x118 } - - { offsetInCU: 0x3EFC, offset: 0xBD920, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCMa', symObjAddr: 0x598C, symBinAddr: 0x14EF4, symSize: 0x20 } - - { offsetInCU: 0x3F10, offset: 0xBD934, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x5A48, symBinAddr: 0x14F74, symSize: 0x10 } - - { offsetInCU: 0x3F24, offset: 0xBD948, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x5A58, symBinAddr: 0x14F84, symSize: 0x8 } - - { offsetInCU: 0x3F38, offset: 0xBD95C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VFyycfU_TA', symObjAddr: 0x5A60, symBinAddr: 0x14F8C, symSize: 0x10 } - - { offsetInCU: 0x3F61, offset: 0xBD985, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFyyScMYccfU_TA', symObjAddr: 0x5A9C, symBinAddr: 0x14FC8, symSize: 0x8 } - - { offsetInCU: 0x3F75, offset: 0xBD999, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0x5FD4, symBinAddr: 0x15500, symSize: 0x20 } - - { offsetInCU: 0x3F89, offset: 0xBD9AD, size: 0x8, addend: 0x0, symName: ___swift_project_value_buffer, symObjAddr: 0x6080, symBinAddr: 0x155AC, symSize: 0x18 } - - { offsetInCU: 0x3F9D, offset: 0xBD9C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0x60BC, symBinAddr: 0x155E8, symSize: 0x8 } - - { offsetInCU: 0x4114, offset: 0xBDB38, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x32B8, symBinAddr: 0x128A8, symSize: 0x60 } - - { offsetInCU: 0x414C, offset: 0xBDB70, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x32B8, symBinAddr: 0x128A8, symSize: 0x60 } - - { offsetInCU: 0x4160, offset: 0xBDB84, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x32B8, symBinAddr: 0x128A8, symSize: 0x60 } - - { offsetInCU: 0x4174, offset: 0xBDB98, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x32B8, symBinAddr: 0x128A8, symSize: 0x60 } - - { offsetInCU: 0x4188, offset: 0xBDBAC, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x32B8, symBinAddr: 0x128A8, symSize: 0x60 } - - { offsetInCU: 0x423D, offset: 0xBDC61, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3318, symBinAddr: 0x12908, symSize: 0xC4 } - - { offsetInCU: 0x27, offset: 0xBE388, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC13viewDidAppearyySbFTo', symObjAddr: 0x0, symBinAddr: 0x15658, symSize: 0xF4 } - - { offsetInCU: 0x75, offset: 0xBE3D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC13viewDidAppearyySbFTo', symObjAddr: 0x0, symBinAddr: 0x15658, symSize: 0xF4 } - - { offsetInCU: 0xE9, offset: 0xBE44A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfcTo', symObjAddr: 0xF4, symBinAddr: 0x1574C, symSize: 0xB0 } - - { offsetInCU: 0x15A, offset: 0xBE4BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC5coderACSgSo7NSCoderC_tcfcTo', symObjAddr: 0x1A4, symBinAddr: 0x157FC, symSize: 0x44 } - - { offsetInCU: 0x19D, offset: 0xBE4FE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerCfD', symObjAddr: 0x1E8, symBinAddr: 0x15840, symSize: 0x30 } - - { offsetInCU: 0x1DC, offset: 0xBE53D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerCMa', symObjAddr: 0x218, symBinAddr: 0x15870, symSize: 0x20 } - - { offsetInCU: 0x97, offset: 0xBE723, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF', symObjAddr: 0x0, symBinAddr: 0x15890, symSize: 0x254 } - - { offsetInCU: 0x3A1, offset: 0xBEA2D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF', symObjAddr: 0x254, symBinAddr: 0x15AE4, symSize: 0x90 } - - { offsetInCU: 0x40A, offset: 0xBEA96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF', symObjAddr: 0x2E4, symBinAddr: 0x15B74, symSize: 0x14 } - - { offsetInCU: 0x453, offset: 0xBEADF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF', symObjAddr: 0x2F8, symBinAddr: 0x15B88, symSize: 0x14 } - - { offsetInCU: 0x49C, offset: 0xBEB28, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF', symObjAddr: 0x30C, symBinAddr: 0x15B9C, symSize: 0x14 } - - { offsetInCU: 0x4F1, offset: 0xBEB7D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ', symObjAddr: 0x320, symBinAddr: 0x15BB0, symSize: 0x8 } - - { offsetInCU: 0x519, offset: 0xBEBA5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x328, symBinAddr: 0x15BB8, symSize: 0x24 } - - { offsetInCU: 0x59F, offset: 0xBEC2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO9hashValueSivg', symObjAddr: 0x34C, symBinAddr: 0x15BDC, symSize: 0x40 } - - { offsetInCU: 0x665, offset: 0xBECF1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x38C, symBinAddr: 0x15C1C, symSize: 0x8 } - - { offsetInCU: 0x690, offset: 0xBED1C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x394, symBinAddr: 0x15C24, symSize: 0x40 } - - { offsetInCU: 0x773, offset: 0xBEDFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3D4, symBinAddr: 0x15C64, symSize: 0x24 } - - { offsetInCU: 0x7FB, offset: 0xBEE87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZ', symObjAddr: 0x48C, symBinAddr: 0x15D1C, symSize: 0x4 } - - { offsetInCU: 0x80F, offset: 0xBEE9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO9errorCodeSivg', symObjAddr: 0x490, symBinAddr: 0x15D20, symSize: 0x8 } - - { offsetInCU: 0x86F, offset: 0xBEEFB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg', symObjAddr: 0x498, symBinAddr: 0x15D28, symSize: 0xB8 } - - { offsetInCU: 0x952, offset: 0xBEFDE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP11errorDomainSSvgZTW', symObjAddr: 0x550, symBinAddr: 0x15DE0, symSize: 0x4 } - - { offsetInCU: 0x972, offset: 0xBEFFE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP11errorDomainSSvgZTW', symObjAddr: 0x550, symBinAddr: 0x15DE0, symSize: 0x4 } - - { offsetInCU: 0x984, offset: 0xBF010, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP9errorCodeSivgTW', symObjAddr: 0x554, symBinAddr: 0x15DE4, symSize: 0x8 } - - { offsetInCU: 0x9A0, offset: 0xBF02C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP13errorUserInfoSDySSypGvgTW', symObjAddr: 0x55C, symBinAddr: 0x15DEC, symSize: 0x14 } - - { offsetInCU: 0x9BC, offset: 0xBF048, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg', symObjAddr: 0x570, symBinAddr: 0x15E00, symSize: 0xB4 } - - { offsetInCU: 0x9F0, offset: 0xBF07C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP16errorDescriptionSSSgvgTW', symObjAddr: 0x624, symBinAddr: 0x15EB4, symSize: 0x14 } - - { offsetInCU: 0xA0C, offset: 0xBF098, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor18PluginHeaderMethodV_Tg5', symObjAddr: 0x644, symBinAddr: 0x15ED4, symSize: 0x2C } - - { offsetInCU: 0xA24, offset: 0xBF0B0, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0x670, symBinAddr: 0x15F00, symSize: 0x1C } - - { offsetInCU: 0xA3C, offset: 0xBF0C8, size: 0x8, addend: 0x0, symName: '_$sSaySSGSayxGSKsWl', symObjAddr: 0x728, symBinAddr: 0x15F1C, symSize: 0x48 } - - { offsetInCU: 0xA50, offset: 0xBF0DC, size: 0x8, addend: 0x0, symName: '_$sSaySSGMa', symObjAddr: 0x770, symBinAddr: 0x15F64, symSize: 0x54 } - - { offsetInCU: 0xA64, offset: 0xBF0F0, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0x7C4, symBinAddr: 0x15FB8, symSize: 0x1C } - - { offsetInCU: 0xA7C, offset: 0xBF108, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFyp_Tg5', symObjAddr: 0x7E0, symBinAddr: 0x15FD4, symSize: 0x30 } - - { offsetInCU: 0xA94, offset: 0xBF120, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor7JSValue_pSg_Tg5', symObjAddr: 0x810, symBinAddr: 0x16004, symSize: 0x1C } - - { offsetInCU: 0xAAC, offset: 0xBF138, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0x82C, symBinAddr: 0x16020, symSize: 0x1C } - - { offsetInCU: 0xAC4, offset: 0xBF150, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x848, symBinAddr: 0x1603C, symSize: 0x1C } - - { offsetInCU: 0xB34, offset: 0xBF1C0, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x864, symBinAddr: 0x16058, symSize: 0x104 } - - { offsetInCU: 0xCA2, offset: 0xBF32E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0x968, symBinAddr: 0x1615C, symSize: 0x130 } - - { offsetInCU: 0xE19, offset: 0xBF4A5, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_pSg_Tg5', symObjAddr: 0xBA0, symBinAddr: 0x16394, symSize: 0x138 } - - { offsetInCU: 0xF88, offset: 0xBF614, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0xCD8, symBinAddr: 0x164CC, symSize: 0x138 } - - { offsetInCU: 0x10F7, offset: 0xBF783, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0xE10, symBinAddr: 0x16604, symSize: 0x134 } - - { offsetInCU: 0x11F7, offset: 0xBF883, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZTf4d_n', symObjAddr: 0xF44, symBinAddr: 0x16738, symSize: 0x24 } - - { offsetInCU: 0x1215, offset: 0xBF8A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASQWb', symObjAddr: 0xF68, symBinAddr: 0x1675C, symSize: 0x4 } - - { offsetInCU: 0x1229, offset: 0xBF8B5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOACSQAAWl', symObjAddr: 0xF6C, symBinAddr: 0x16760, symSize: 0x44 } - - { offsetInCU: 0x123D, offset: 0xBF8C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAAs0C0PWb', symObjAddr: 0xFB0, symBinAddr: 0x167A4, symSize: 0x4 } - - { offsetInCU: 0x1251, offset: 0xBF8DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOACs0C0AAWl', symObjAddr: 0xFB4, symBinAddr: 0x167A8, symSize: 0x44 } - - { offsetInCU: 0x1265, offset: 0xBF8F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AAs0C0PWb', symObjAddr: 0xFF8, symBinAddr: 0x167EC, symSize: 0x4 } - - { offsetInCU: 0x1279, offset: 0xBF905, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0xFFC, symBinAddr: 0x167F0, symSize: 0x4 } - - { offsetInCU: 0x128D, offset: 0xBF919, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x1000, symBinAddr: 0x167F4, symSize: 0x4 } - - { offsetInCU: 0x12A1, offset: 0xBF92D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwet', symObjAddr: 0x1004, symBinAddr: 0x167F8, symSize: 0x50 } - - { offsetInCU: 0x12B5, offset: 0xBF941, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwst', symObjAddr: 0x1054, symBinAddr: 0x16848, symSize: 0x8C } - - { offsetInCU: 0x12C9, offset: 0xBF955, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwug', symObjAddr: 0x10E0, symBinAddr: 0x168D4, symSize: 0x8 } - - { offsetInCU: 0x12DD, offset: 0xBF969, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwup', symObjAddr: 0x10E8, symBinAddr: 0x168DC, symSize: 0x4 } - - { offsetInCU: 0x12F1, offset: 0xBF97D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwui', symObjAddr: 0x10EC, symBinAddr: 0x168E0, symSize: 0x4 } - - { offsetInCU: 0x1305, offset: 0xBF991, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOMa', symObjAddr: 0x10F0, symBinAddr: 0x168E4, symSize: 0x10 } - - { offsetInCU: 0x1319, offset: 0xBF9A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOAC10Foundation13CustomNSErrorAAWl', symObjAddr: 0x1100, symBinAddr: 0x168F4, symSize: 0x44 } - - { offsetInCU: 0x132D, offset: 0xBF9B9, size: 0x8, addend: 0x0, symName: '_$sSo12NSHTTPCookieCMa', symObjAddr: 0x1144, symBinAddr: 0x16938, symSize: 0x3C } - - { offsetInCU: 0x13E7, offset: 0xBFA73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x3F8, symBinAddr: 0x15C88, symSize: 0x3C } - - { offsetInCU: 0x1483, offset: 0xBFB0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x484, symBinAddr: 0x15D14, symSize: 0x4 } - - { offsetInCU: 0x149F, offset: 0xBFB2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x488, symBinAddr: 0x15D18, symSize: 0x4 } - - { offsetInCU: 0x1570, offset: 0xBFBFC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP7_domainSSvgTW', symObjAddr: 0x434, symBinAddr: 0x15CC4, symSize: 0x28 } - - { offsetInCU: 0x158C, offset: 0xBFC18, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP5_codeSivgTW', symObjAddr: 0x45C, symBinAddr: 0x15CEC, symSize: 0x28 } - - { offsetInCU: 0x15B7, offset: 0xBFC43, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP13failureReasonSSSgvgTW', symObjAddr: 0x638, symBinAddr: 0x15EC8, symSize: 0x4 } - - { offsetInCU: 0x15D3, offset: 0xBFC5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgvgTW', symObjAddr: 0x63C, symBinAddr: 0x15ECC, symSize: 0x4 } - - { offsetInCU: 0x15EF, offset: 0xBFC7B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP10helpAnchorSSSgvgTW', symObjAddr: 0x640, symBinAddr: 0x15ED0, symSize: 0x4 } - - { offsetInCU: 0x2B, offset: 0xBFEE6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF', symObjAddr: 0x0, symBinAddr: 0x16974, symSize: 0x90 } - - { offsetInCU: 0x4F, offset: 0xBFF0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor28associatedKeyboardFlagHandle33_3E0898892F6945378FAE8ABD0FA44A3BLLs5UInt8Vvp', symObjAddr: 0xAF8, symBinAddr: 0x7AB10, symSize: 0x0 } - - { offsetInCU: 0x5D, offset: 0xBFF18, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF', symObjAddr: 0x0, symBinAddr: 0x16974, symSize: 0x90 } - - { offsetInCU: 0xEF, offset: 0xBFFAA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg', symObjAddr: 0x90, symBinAddr: 0x16A04, symSize: 0xE0 } - - { offsetInCU: 0x119, offset: 0xBFFD4, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE27associatedKeyboardFlagValueypSgvs', symObjAddr: 0x170, symBinAddr: 0x16AE4, symSize: 0x118 } - - { offsetInCU: 0x17A, offset: 0xC0035, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE23_swizzleKeyboardMethodsyyFZTo', symObjAddr: 0x288, symBinAddr: 0x16BFC, symSize: 0x28 } - - { offsetInCU: 0x1B2, offset: 0xC006D, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzle_WZ', symObjAddr: 0x2B0, symBinAddr: 0x16C24, symSize: 0x4 } - - { offsetInCU: 0x23A, offset: 0xC00F5, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_', symObjAddr: 0x2B4, symBinAddr: 0x16C28, symSize: 0x11C } - - { offsetInCU: 0x308, offset: 0xC01C3, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ABSgypSgcfU_', symObjAddr: 0x3D0, symBinAddr: 0x16D44, symSize: 0xD8 } - - { offsetInCU: 0x35B, offset: 0xC0216, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ys13OpaquePointerV_10ObjectiveC8SelectorVtcfU0_yyp_SVS3bypSgtcfU_', symObjAddr: 0x4A8, symBinAddr: 0x16E1C, symSize: 0x38C } - - { offsetInCU: 0x454, offset: 0xC030F, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ys13OpaquePointerV_10ObjectiveC8SelectorVtcfU0_yyp_SVS3bypSgtcfU_TA', symObjAddr: 0x858, symBinAddr: 0x171CC, symSize: 0x28 } - - { offsetInCU: 0x468, offset: 0xC0323, size: 0x8, addend: 0x0, symName: '_$sypSVS3bypSgIegnyyyyn_yXlSVS3byXlSgIeyByyyyyy_TR', symObjAddr: 0x880, symBinAddr: 0x171F4, symSize: 0xD4 } - - { offsetInCU: 0x480, offset: 0xC033B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x954, symBinAddr: 0x172C8, symSize: 0x10 } - - { offsetInCU: 0x494, offset: 0xC034F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x964, symBinAddr: 0x172D8, symSize: 0x8 } - - { offsetInCU: 0x4A8, offset: 0xC0363, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x96C, symBinAddr: 0x172E0, symSize: 0x40 } - - { offsetInCU: 0x4BC, offset: 0xC0377, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0xA48, symBinAddr: 0x17320, symSize: 0x24 } - - { offsetInCU: 0x4D0, offset: 0xC038B, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0xA6C, symBinAddr: 0x17344, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0xC0613, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ', symObjAddr: 0x0, symBinAddr: 0x173C4, symSize: 0x27C } - - { offsetInCU: 0x6D, offset: 0xC0655, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ', symObjAddr: 0x0, symBinAddr: 0x173C4, symSize: 0x27C } - - { offsetInCU: 0x171, offset: 0xC0759, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0x498, symBinAddr: 0x17798, symSize: 0x120 } - - { offsetInCU: 0x1C2, offset: 0xC07AA, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlFSS_SSTg5', symObjAddr: 0x2BC, symBinAddr: 0x17640, symSize: 0x158 } - - { offsetInCU: 0x4F, offset: 0xC09A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfC', symObjAddr: 0x0, symBinAddr: 0x178B8, symSize: 0x30 } - - { offsetInCU: 0x97, offset: 0xC09EE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg', symObjAddr: 0x98, symBinAddr: 0x17950, symSize: 0x44 } - - { offsetInCU: 0xB6, offset: 0xC0A0D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc', symObjAddr: 0xDC, symBinAddr: 0x17994, symSize: 0x190 } - - { offsetInCU: 0x13D, offset: 0xC0A94, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC7cleanUpyyF', symObjAddr: 0x28C, symBinAddr: 0x17B44, symSize: 0x98 } - - { offsetInCU: 0x1DE, offset: 0xC0B35, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF', symObjAddr: 0x324, symBinAddr: 0x17BDC, symSize: 0x6C } - - { offsetInCU: 0x296, offset: 0xC0BED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtF', symObjAddr: 0x390, symBinAddr: 0x17C48, symSize: 0x84 } - - { offsetInCU: 0x35C, offset: 0xC0CB3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtFTo', symObjAddr: 0x414, symBinAddr: 0x17CCC, symSize: 0xBC } - - { offsetInCU: 0x406, offset: 0xC0D5D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctF', symObjAddr: 0x4D0, symBinAddr: 0x17D88, symSize: 0x24 } - - { offsetInCU: 0x49D, offset: 0xC0DF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctFTo', symObjAddr: 0x4F4, symBinAddr: 0x17DAC, symSize: 0xA8 } - - { offsetInCU: 0x4FD, offset: 0xC0E54, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctF', symObjAddr: 0x59C, symBinAddr: 0x17E54, symSize: 0x24 } - - { offsetInCU: 0x582, offset: 0xC0ED9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctFTo', symObjAddr: 0x5C0, symBinAddr: 0x17E78, symSize: 0xA8 } - - { offsetInCU: 0x5E2, offset: 0xC0F39, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF', symObjAddr: 0x668, symBinAddr: 0x17F20, symSize: 0x964 } - - { offsetInCU: 0x7DD, offset: 0xC1134, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctFTo', symObjAddr: 0x100C, symBinAddr: 0x18884, symSize: 0x9C } - - { offsetInCU: 0x80F, offset: 0xC1166, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtF', symObjAddr: 0x10A8, symBinAddr: 0x18920, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0xC1189, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtFTo', symObjAddr: 0x10AC, symBinAddr: 0x18924, symSize: 0x74 } - - { offsetInCU: 0x864, offset: 0xC11BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptF', symObjAddr: 0x1120, symBinAddr: 0x18998, symSize: 0x8 } - - { offsetInCU: 0x880, offset: 0xC11D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptF', symObjAddr: 0x1134, symBinAddr: 0x189AC, symSize: 0x8 } - - { offsetInCU: 0x89C, offset: 0xC11F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CF', symObjAddr: 0x11E4, symBinAddr: 0x18A5C, symSize: 0x24 } - - { offsetInCU: 0x8EB, offset: 0xC1242, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CFTo', symObjAddr: 0x1208, symBinAddr: 0x18A80, symSize: 0x68 } - - { offsetInCU: 0x920, offset: 0xC1277, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtF', symObjAddr: 0x1270, symBinAddr: 0x18AE8, symSize: 0x8 } - - { offsetInCU: 0x943, offset: 0xC129A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtFTo', symObjAddr: 0x1278, symBinAddr: 0x18AF0, symSize: 0x74 } - - { offsetInCU: 0x975, offset: 0xC12CC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF', symObjAddr: 0x12EC, symBinAddr: 0x18B64, symSize: 0x270 } - - { offsetInCU: 0xAAE, offset: 0xC1405, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctFTo', symObjAddr: 0x1560, symBinAddr: 0x18DD8, symSize: 0xC8 } - - { offsetInCU: 0xAE0, offset: 0xC1437, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctF', symObjAddr: 0x1628, symBinAddr: 0x18EA0, symSize: 0x14 } - - { offsetInCU: 0xB03, offset: 0xC145A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctFTo', symObjAddr: 0x163C, symBinAddr: 0x18EB4, symSize: 0xDC } - - { offsetInCU: 0xB35, offset: 0xC148C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF', symObjAddr: 0x1718, symBinAddr: 0x18F90, symSize: 0xBD8 } - - { offsetInCU: 0x1017, offset: 0xC196E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU_', symObjAddr: 0x22F0, symBinAddr: 0x19B68, symSize: 0x50 } - - { offsetInCU: 0x1054, offset: 0xC19AB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo13UIAlertActionCcfU1_', symObjAddr: 0x2394, symBinAddr: 0x19C0C, symSize: 0x184 } - - { offsetInCU: 0x11F3, offset: 0xC1B4A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFTo', symObjAddr: 0x2518, symBinAddr: 0x19D90, symSize: 0x100 } - - { offsetInCU: 0x1225, offset: 0xC1B7C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtF', symObjAddr: 0x265C, symBinAddr: 0x19ED4, symSize: 0x8 } - - { offsetInCU: 0x1248, offset: 0xC1B9F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtFTo', symObjAddr: 0x2664, symBinAddr: 0x19EDC, symSize: 0xA8 } - - { offsetInCU: 0x127B, offset: 0xC1BD2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtF', symObjAddr: 0x270C, symBinAddr: 0x19F84, symSize: 0x54 } - - { offsetInCU: 0x12E0, offset: 0xC1C37, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtFTo', symObjAddr: 0x2760, symBinAddr: 0x19FD8, symSize: 0xA4 } - - { offsetInCU: 0x1320, offset: 0xC1C77, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfC', symObjAddr: 0x2850, symBinAddr: 0x1A0C8, symSize: 0x20 } - - { offsetInCU: 0x133E, offset: 0xC1C95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfc', symObjAddr: 0x2870, symBinAddr: 0x1A0E8, symSize: 0x2C } - - { offsetInCU: 0x13A1, offset: 0xC1CF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfcTo', symObjAddr: 0x289C, symBinAddr: 0x1A114, symSize: 0x2C } - - { offsetInCU: 0x1408, offset: 0xC1D5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCfD', symObjAddr: 0x28C8, symBinAddr: 0x1A140, symSize: 0x30 } - - { offsetInCU: 0x1435, offset: 0xC1D8C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF06$sSo24lmH16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4dnng_n', symObjAddr: 0x298C, symBinAddr: 0x1A204, symSize: 0x964 } - - { offsetInCU: 0x1681, offset: 0xC1FD8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtFTf4ndn_n', symObjAddr: 0x32F0, symBinAddr: 0x1AB68, symSize: 0xD8 } - - { offsetInCU: 0x17C5, offset: 0xC211C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptFTf4ndnn_n', symObjAddr: 0x33C8, symBinAddr: 0x1AC40, symSize: 0x500 } - - { offsetInCU: 0x19CA, offset: 0xC2321, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptFTf4ndnn_n', symObjAddr: 0x38C8, symBinAddr: 0x1B140, symSize: 0x4D8 } - - { offsetInCU: 0x1B71, offset: 0xC24C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC10logJSError33_F9163AD9166938F8B4F54F28D02AA29FLLyySDySSypGFTf4nd_n', symObjAddr: 0x3DA0, symBinAddr: 0x1B618, symSize: 0x7BC } - - { offsetInCU: 0x20FF, offset: 0xC2A56, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtFTf4dnn_n', symObjAddr: 0x455C, symBinAddr: 0x1BDD4, symSize: 0xC8C } - - { offsetInCU: 0x2638, offset: 0xC2F8F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nnncn_nTf4dndng_n', symObjAddr: 0x5228, symBinAddr: 0x1CAA0, symSize: 0x2D8 } - - { offsetInCU: 0x2755, offset: 0xC30AC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctFTf4dndnn_n', symObjAddr: 0x5500, symBinAddr: 0x1CD78, symSize: 0x2FC } - - { offsetInCU: 0x284B, offset: 0xC31A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF019$sSo8NSStringCSgIeyQ12_SSSgIegg_TRSo0Y0CSgIeyBy_Tf1nnnncn_nTf4dnndng_n', symObjAddr: 0x58D0, symBinAddr: 0x1D0C0, symSize: 0xC98 } - - { offsetInCU: 0x2D3F, offset: 0xC3696, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtFTf4ddndd_n', symObjAddr: 0x6568, symBinAddr: 0x1DD58, symSize: 0x22C } - - { offsetInCU: 0x2D9F, offset: 0xC36F6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0CvpACTk', symObjAddr: 0x30, symBinAddr: 0x178E8, symSize: 0x68 } - - { offsetInCU: 0x2DD5, offset: 0xC372C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCMa', symObjAddr: 0x26C, symBinAddr: 0x17B24, symSize: 0x20 } - - { offsetInCU: 0x301E, offset: 0xC3975, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TR', symObjAddr: 0x2618, symBinAddr: 0x19E90, symSize: 0x44 } - - { offsetInCU: 0x308A, offset: 0xC39E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCfETo', symObjAddr: 0x28F8, symBinAddr: 0x1A170, symSize: 0x4C } - - { offsetInCU: 0x30B9, offset: 0xC3A10, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaABSHSCWl', symObjAddr: 0x2944, symBinAddr: 0x1A1BC, symSize: 0x48 } - - { offsetInCU: 0x31A9, offset: 0xC3B00, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x5210, symBinAddr: 0x1CA88, symSize: 0x10 } - - { offsetInCU: 0x31BD, offset: 0xC3B14, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x5220, symBinAddr: 0x1CA98, symSize: 0x8 } - - { offsetInCU: 0x31DC, offset: 0xC3B33, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU_TA', symObjAddr: 0x5864, symBinAddr: 0x1D098, symSize: 0x8 } - - { offsetInCU: 0x31F0, offset: 0xC3B47, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x5878, symBinAddr: 0x1D0AC, symSize: 0x14 } - - { offsetInCU: 0x320F, offset: 0xC3B66, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x69D8, symBinAddr: 0x1E1C8, symSize: 0xC } - - { offsetInCU: 0x3223, offset: 0xC3B7A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwet', symObjAddr: 0x69E8, symBinAddr: 0x1E1D4, symSize: 0xA8 } - - { offsetInCU: 0x3237, offset: 0xC3B8E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwst', symObjAddr: 0x6A90, symBinAddr: 0x1E27C, symSize: 0xC4 } - - { offsetInCU: 0x324B, offset: 0xC3BA2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwug', symObjAddr: 0x6B54, symBinAddr: 0x1E340, symSize: 0x1C } - - { offsetInCU: 0x325F, offset: 0xC3BB6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwup', symObjAddr: 0x6B70, symBinAddr: 0x1E35C, symSize: 0x4 } - - { offsetInCU: 0x3273, offset: 0xC3BCA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwui', symObjAddr: 0x6B74, symBinAddr: 0x1E360, symSize: 0x18 } - - { offsetInCU: 0x3287, offset: 0xC3BDE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOMa', symObjAddr: 0x6B8C, symBinAddr: 0x1E378, symSize: 0x10 } - - { offsetInCU: 0x329B, offset: 0xC3BF2, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TRTA', symObjAddr: 0x6BC0, symBinAddr: 0x1E3AC, symSize: 0x8 } - - { offsetInCU: 0x32BA, offset: 0xC3C11, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x6C40, symBinAddr: 0x1E42C, symSize: 0x14 } - - { offsetInCU: 0x32E3, offset: 0xC3C3A, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x6C54, symBinAddr: 0x1E440, symSize: 0x8 } - - { offsetInCU: 0x345D, offset: 0xC3DB4, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTg5', symObjAddr: 0x2804, symBinAddr: 0x1A07C, symSize: 0x4C } - - { offsetInCU: 0x4F, offset: 0xC4368, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19dateStringFormatter33_883E0F63E6283FEB7FEBC7F75A4BFDE5LLSo013NSISO8601DateD0Cvp', symObjAddr: 0x27B8, symBinAddr: 0x7ABE8, symSize: 0x0 } - - { offsetInCU: 0x68, offset: 0xC4381, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSF', symObjAddr: 0x0, symBinAddr: 0x1E580, symSize: 0x114 } - - { offsetInCU: 0xD7, offset: 0xC43F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF', symObjAddr: 0x114, symBinAddr: 0x1E694, symSize: 0x58 } - - { offsetInCU: 0x134, offset: 0xC444D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF', symObjAddr: 0x16C, symBinAddr: 0x1E6EC, symSize: 0x110 } - - { offsetInCU: 0x1A3, offset: 0xC44BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSStringContainerP9getStringyS2S_SStF', symObjAddr: 0x27C, symBinAddr: 0x1E7FC, symSize: 0x4 } - - { offsetInCU: 0x1BF, offset: 0xC44D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF', symObjAddr: 0x280, symBinAddr: 0x1E800, symSize: 0x4 } - - { offsetInCU: 0x1DB, offset: 0xC44F4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF', symObjAddr: 0x284, symBinAddr: 0x1E804, symSize: 0x3C } - - { offsetInCU: 0x238, offset: 0xC4551, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14JSIntContainerP6getIntySiSS_SitF', symObjAddr: 0x2C0, symBinAddr: 0x1E840, symSize: 0x4 } - - { offsetInCU: 0x254, offset: 0xC456D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF', symObjAddr: 0x2C4, symBinAddr: 0x1E844, symSize: 0x34 } - - { offsetInCU: 0x2B1, offset: 0xC45CA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSFloatContainerP8getFloatySfSS_SftF', symObjAddr: 0x2F8, symBinAddr: 0x1E878, symSize: 0x4 } - - { offsetInCU: 0x2CD, offset: 0xC45E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF', symObjAddr: 0x2FC, symBinAddr: 0x1E87C, symSize: 0x30 } - - { offsetInCU: 0x329, offset: 0xC4642, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF', symObjAddr: 0x32C, symBinAddr: 0x1E8AC, symSize: 0x4 } - - { offsetInCU: 0x345, offset: 0xC465E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF', symObjAddr: 0x330, symBinAddr: 0x1E8B0, symSize: 0x30 } - - { offsetInCU: 0x3A1, offset: 0xC46BA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF', symObjAddr: 0x360, symBinAddr: 0x1E8E0, symSize: 0x4 } - - { offsetInCU: 0x3BD, offset: 0xC46D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF', symObjAddr: 0x364, symBinAddr: 0x1E8E4, symSize: 0x170 } - - { offsetInCU: 0x41A, offset: 0xC4733, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF', symObjAddr: 0x4D4, symBinAddr: 0x1EA54, symSize: 0x4 } - - { offsetInCU: 0x436, offset: 0xC474F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF', symObjAddr: 0x4D8, symBinAddr: 0x1EA58, symSize: 0x40 } - - { offsetInCU: 0x493, offset: 0xC47AC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF', symObjAddr: 0x518, symBinAddr: 0x1EA98, symSize: 0x10 } - - { offsetInCU: 0x4AF, offset: 0xC47C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF', symObjAddr: 0x528, symBinAddr: 0x1EAA8, symSize: 0x60 } - - { offsetInCU: 0x516, offset: 0xC482F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF', symObjAddr: 0x588, symBinAddr: 0x1EB08, symSize: 0x4 } - - { offsetInCU: 0x532, offset: 0xC484B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF', symObjAddr: 0x58C, symBinAddr: 0x1EB0C, symSize: 0x40 } - - { offsetInCU: 0x58F, offset: 0xC48A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF', symObjAddr: 0x5CC, symBinAddr: 0x1EB4C, symSize: 0xA4 } - - { offsetInCU: 0x5FE, offset: 0xC4917, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF', symObjAddr: 0x670, symBinAddr: 0x1EBF0, symSize: 0x90 } - - { offsetInCU: 0x64B, offset: 0xC4964, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE6getIntySiSgSSF', symObjAddr: 0x700, symBinAddr: 0x1EC80, symSize: 0x118 } - - { offsetInCU: 0x6BA, offset: 0xC49D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF', symObjAddr: 0x818, symBinAddr: 0x1ED98, symSize: 0x21C } - - { offsetInCU: 0x760, offset: 0xC4A79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF', symObjAddr: 0xA34, symBinAddr: 0x1EFB4, symSize: 0x118 } - - { offsetInCU: 0x7CF, offset: 0xC4AE8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF', symObjAddr: 0xB4C, symBinAddr: 0x1F0CC, symSize: 0x348 } - - { offsetInCU: 0x877, offset: 0xC4B90, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ', symObjAddr: 0xFC4, symBinAddr: 0x1F544, symSize: 0xE0 } - - { offsetInCU: 0x8DF, offset: 0xC4BF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15coerceToJSValue33_883E0F63E6283FEB7FEBC7F75A4BFDE5LL_15formattingDatesAA0D0_pSgypSg_SbtF', symObjAddr: 0x10A4, symBinAddr: 0x1F624, symSize: 0xB74 } - - { offsetInCU: 0x11EC, offset: 0xC5505, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ', symObjAddr: 0x1C18, symBinAddr: 0x20198, symSize: 0x4 } - - { offsetInCU: 0x1229, offset: 0xC5542, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ', symObjAddr: 0x1C1C, symBinAddr: 0x2019C, symSize: 0x18C } - - { offsetInCU: 0x1491, offset: 0xC57AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19dateStringFormatter33_883E0F63E6283FEB7FEBC7F75A4BFDE5LL_WZ', symObjAddr: 0x1DA8, symBinAddr: 0x20328, symSize: 0x30 } - - { offsetInCU: 0x14D6, offset: 0xC57EF, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSStringContainerA2cDP9getStringyS2S_SStFTW', symObjAddr: 0x1DD8, symBinAddr: 0x20358, symSize: 0x4 } - - { offsetInCU: 0x14F2, offset: 0xC580B, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSStringContainerA2cDP9getStringySSSgSSFTW', symObjAddr: 0x1DDC, symBinAddr: 0x2035C, symSize: 0xC } - - { offsetInCU: 0x150E, offset: 0xC5827, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSBoolContainerA2cDP7getBoolySbSS_SbtFTW', symObjAddr: 0x1DE8, symBinAddr: 0x20368, symSize: 0x4 } - - { offsetInCU: 0x152A, offset: 0xC5843, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSBoolContainerA2cDP7getBoolySbSgSSFTW', symObjAddr: 0x1DEC, symBinAddr: 0x2036C, symSize: 0xC } - - { offsetInCU: 0x1546, offset: 0xC585F, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor14JSIntContainerA2cDP6getIntySiSS_SitFTW', symObjAddr: 0x1DF8, symBinAddr: 0x20378, symSize: 0x4 } - - { offsetInCU: 0x1562, offset: 0xC587B, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor14JSIntContainerA2cDP6getIntySiSgSSFTW', symObjAddr: 0x1DFC, symBinAddr: 0x2037C, symSize: 0x20 } - - { offsetInCU: 0x157E, offset: 0xC5897, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSFloatContainerA2cDP8getFloatySfSS_SftFTW', symObjAddr: 0x1E1C, symBinAddr: 0x2039C, symSize: 0x4 } - - { offsetInCU: 0x159A, offset: 0xC58B3, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSFloatContainerA2cDP8getFloatySfSgSSFTW', symObjAddr: 0x1E20, symBinAddr: 0x203A0, symSize: 0x30 } - - { offsetInCU: 0x15B6, offset: 0xC58CF, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSDoubleContainerA2cDP9getDoubleySdSS_SdtFTW', symObjAddr: 0x1E50, symBinAddr: 0x203D0, symSize: 0x4 } - - { offsetInCU: 0x15D2, offset: 0xC58EB, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSDoubleContainerA2cDP9getDoubleySdSgSSFTW', symObjAddr: 0x1E54, symBinAddr: 0x203D4, symSize: 0x20 } - - { offsetInCU: 0x15EE, offset: 0xC5907, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSDateContainerA2cDP7getDatey10Foundation0G0VSS_AItFTW', symObjAddr: 0x1E74, symBinAddr: 0x203F4, symSize: 0x4 } - - { offsetInCU: 0x160A, offset: 0xC5923, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSDateContainerA2cDP7getDatey10Foundation0G0VSgSSFTW', symObjAddr: 0x1E78, symBinAddr: 0x203F8, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0xC593F, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayAC7JSValue_pGSS_AHtFTW', symObjAddr: 0x1E84, symBinAddr: 0x20404, symSize: 0x4 } - - { offsetInCU: 0x1642, offset: 0xC595B, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayqd__GSgSS_qd__mtlFTW', symObjAddr: 0x1E88, symBinAddr: 0x20408, symSize: 0x10 } - - { offsetInCU: 0x165E, offset: 0xC5977, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayAC7JSValue_pGSgSSFTW', symObjAddr: 0x1E98, symBinAddr: 0x20418, symSize: 0xC } - - { offsetInCU: 0x167A, offset: 0xC5993, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSObjectContainerA2cDP9getObjectySDySSAC7JSValue_pGSS_AHtFTW', symObjAddr: 0x1EA4, symBinAddr: 0x20424, symSize: 0x4 } - - { offsetInCU: 0x1696, offset: 0xC59AF, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSObjectContainerA2cDP9getObjectySDySSAC7JSValue_pGSgSSFTW', symObjAddr: 0x1EA8, symBinAddr: 0x20428, symSize: 0xC } - - { offsetInCU: 0x16C8, offset: 0xC59E1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1EB4, symBinAddr: 0x20434, symSize: 0xE0 } - - { offsetInCU: 0x1707, offset: 0xC5A20, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x1F94, symBinAddr: 0x20514, symSize: 0x174 } - - { offsetInCU: 0x178F, offset: 0xC5AA8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x2108, symBinAddr: 0x20688, symSize: 0xC4 } - - { offsetInCU: 0x17D2, offset: 0xC5AEB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x21CC, symBinAddr: 0x2074C, symSize: 0x64 } - - { offsetInCU: 0x1814, offset: 0xC5B2D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOb', symObjAddr: 0x22B4, symBinAddr: 0x207B0, symSize: 0x48 } - - { offsetInCU: 0x1828, offset: 0xC5B41, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x235C, symBinAddr: 0x20834, symSize: 0x80 } - - { offsetInCU: 0x18D1, offset: 0xC5BEA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x23DC, symBinAddr: 0x208B4, symSize: 0x30 } - - { offsetInCU: 0x18FE, offset: 0xC5C17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZTf4nnd_n', symObjAddr: 0x240C, symBinAddr: 0x208E4, symSize: 0xD4 } - - { offsetInCU: 0x193D, offset: 0xC5C56, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pWOb', symObjAddr: 0x253C, symBinAddr: 0x209D8, symSize: 0x18 } - - { offsetInCU: 0x1951, offset: 0xC5C6A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesOMa', symObjAddr: 0x2618, symBinAddr: 0x20AB4, symSize: 0x10 } - - { offsetInCU: 0x1965, offset: 0xC5C7E, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x2628, symBinAddr: 0x20AC4, symSize: 0x3C } - - { offsetInCU: 0x1979, offset: 0xC5C92, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x2664, symBinAddr: 0x20B00, symSize: 0x34 } - - { offsetInCU: 0x198D, offset: 0xC5CA6, size: 0x8, addend: 0x0, symName: '_$s10Foundation25NSFastEnumerationIteratorVACStAAWl', symObjAddr: 0x2728, symBinAddr: 0x20B6C, symSize: 0x48 } - - { offsetInCU: 0x4F, offset: 0xC63C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13tmpVCAppeared10Foundation12NotificationVvpZ', symObjAddr: 0x33E28, symBinAddr: 0x7DB08, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xC63E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultSchemeSSvpZ', symObjAddr: 0xC6F0, symBinAddr: 0x7AC20, symSize: 0x0 } - - { offsetInCU: 0x83, offset: 0xC63FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ', symObjAddr: 0x0, symBinAddr: 0x20BFC, symSize: 0x8 } - - { offsetInCU: 0xCC, offset: 0xC6444, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfC', symObjAddr: 0x8, symBinAddr: 0x20C04, symSize: 0xC0 } - - { offsetInCU: 0x152, offset: 0xC64CA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvgTo', symObjAddr: 0xC8, symBinAddr: 0x20CC4, symSize: 0xAC } - - { offsetInCU: 0x19B, offset: 0xC6513, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvg', symObjAddr: 0x174, symBinAddr: 0x20D70, symSize: 0x7C } - - { offsetInCU: 0x1F0, offset: 0xC6568, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvgTo', symObjAddr: 0x1F0, symBinAddr: 0x20DEC, symSize: 0x10 } - - { offsetInCU: 0x210, offset: 0xC6588, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvgTo', symObjAddr: 0x1F0, symBinAddr: 0x20DEC, symSize: 0x10 } - - { offsetInCU: 0x22B, offset: 0xC65A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvg', symObjAddr: 0x200, symBinAddr: 0x20DFC, symSize: 0x10 } - - { offsetInCU: 0x248, offset: 0xC65C0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM', symObjAddr: 0x240, symBinAddr: 0x20E3C, symSize: 0x44 } - - { offsetInCU: 0x277, offset: 0xC65EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM.resume.0', symObjAddr: 0x284, symBinAddr: 0x20E80, symSize: 0x4 } - - { offsetInCU: 0x2A2, offset: 0xC661A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isSimEnvironmentSbvgTo', symObjAddr: 0x288, symBinAddr: 0x20E84, symSize: 0x8 } - - { offsetInCU: 0x2BE, offset: 0xC6636, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isSimEnvironmentSbvg', symObjAddr: 0x290, symBinAddr: 0x20E8C, symSize: 0x8 } - - { offsetInCU: 0x2E9, offset: 0xC6661, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgTo', symObjAddr: 0x298, symBinAddr: 0x20E94, symSize: 0x8 } - - { offsetInCU: 0x305, offset: 0xC667D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvg', symObjAddr: 0x2A0, symBinAddr: 0x20E9C, symSize: 0x8 } - - { offsetInCU: 0x330, offset: 0xC66A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0VvgTo', symObjAddr: 0x2A8, symBinAddr: 0x20EA4, symSize: 0x38 } - - { offsetInCU: 0x36A, offset: 0xC66E2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvg', symObjAddr: 0x2E0, symBinAddr: 0x20EDC, symSize: 0xC0 } - - { offsetInCU: 0x3DF, offset: 0xC6757, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvgTo', symObjAddr: 0x3A0, symBinAddr: 0x20F9C, symSize: 0xD4 } - - { offsetInCU: 0x442, offset: 0xC67BA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvg', symObjAddr: 0x474, symBinAddr: 0x21070, symSize: 0x9C } - - { offsetInCU: 0x499, offset: 0xC6811, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsTo', symObjAddr: 0x510, symBinAddr: 0x2110C, symSize: 0x3C } - - { offsetInCU: 0x4B5, offset: 0xC682D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvs', symObjAddr: 0x54C, symBinAddr: 0x21148, symSize: 0x238 } - - { offsetInCU: 0x519, offset: 0xC6891, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsyyScMYccfU_', symObjAddr: 0x834, symBinAddr: 0x21430, symSize: 0xF8 } - - { offsetInCU: 0x589, offset: 0xC6901, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvM', symObjAddr: 0x92C, symBinAddr: 0x21528, symSize: 0xC4 } - - { offsetInCU: 0x607, offset: 0xC697F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvM.resume.0', symObjAddr: 0x9F0, symBinAddr: 0x215EC, symSize: 0x2C } - - { offsetInCU: 0x650, offset: 0xC69C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvgTo', symObjAddr: 0xA1C, symBinAddr: 0x21618, symSize: 0xD4 } - - { offsetInCU: 0x6B3, offset: 0xC6A2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvg', symObjAddr: 0xAF0, symBinAddr: 0x216EC, symSize: 0xA0 } - - { offsetInCU: 0x70A, offset: 0xC6A82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsTo', symObjAddr: 0xB90, symBinAddr: 0x2178C, symSize: 0x3C } - - { offsetInCU: 0x728, offset: 0xC6AA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsyyScMYccfU_', symObjAddr: 0xC98, symBinAddr: 0x21894, symSize: 0xF8 } - - { offsetInCU: 0x76E, offset: 0xC6AE6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM', symObjAddr: 0xD90, symBinAddr: 0x2198C, symSize: 0xC4 } - - { offsetInCU: 0x7EC, offset: 0xC6B64, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM.resume.0', symObjAddr: 0xE54, symBinAddr: 0x21A50, symSize: 0x28 } - - { offsetInCU: 0x817, offset: 0xC6B8F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvgTo', symObjAddr: 0xE7C, symBinAddr: 0x21A78, symSize: 0x38 } - - { offsetInCU: 0x833, offset: 0xC6BAB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvg', symObjAddr: 0xEB4, symBinAddr: 0x21AB0, symSize: 0xD0 } - - { offsetInCU: 0x8AA, offset: 0xC6C22, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsTo', symObjAddr: 0xF84, symBinAddr: 0x21B80, symSize: 0x3C } - - { offsetInCU: 0x8C8, offset: 0xC6C40, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsyyScMYccfU_', symObjAddr: 0x120C, symBinAddr: 0x21E08, symSize: 0xF8 } - - { offsetInCU: 0x92C, offset: 0xC6CA4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM', symObjAddr: 0x1304, symBinAddr: 0x21F00, symSize: 0x104 } - - { offsetInCU: 0x9CA, offset: 0xC6D42, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM.resume.0', symObjAddr: 0x1408, symBinAddr: 0x22004, symSize: 0x28 } - - { offsetInCU: 0x9F5, offset: 0xC6D6D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13capacitorSiteSSvgZ', symObjAddr: 0x14B0, symBinAddr: 0x220AC, symSize: 0x1C } - - { offsetInCU: 0xA20, offset: 0xC6D98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ', symObjAddr: 0x14CC, symBinAddr: 0x220C8, symSize: 0x1C } - - { offsetInCU: 0xA4B, offset: 0xC6DC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultSchemeSSvgZ', symObjAddr: 0x1510, symBinAddr: 0x2210C, symSize: 0x5C } - - { offsetInCU: 0xAAC, offset: 0xC6E24, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg', symObjAddr: 0x163C, symBinAddr: 0x22238, symSize: 0x4C } - - { offsetInCU: 0xACB, offset: 0xC6E43, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvgTo', symObjAddr: 0x1688, symBinAddr: 0x22284, symSize: 0xAC } - - { offsetInCU: 0xB14, offset: 0xC6E8C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvg', symObjAddr: 0x1734, symBinAddr: 0x22330, symSize: 0x7C } - - { offsetInCU: 0xB4B, offset: 0xC6EC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM', symObjAddr: 0x1974, symBinAddr: 0x22570, symSize: 0x44 } - - { offsetInCU: 0xB7A, offset: 0xC6EF2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyF', symObjAddr: 0x19B8, symBinAddr: 0x225B4, symSize: 0x7C } - - { offsetInCU: 0xBEF, offset: 0xC6F67, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyFTo', symObjAddr: 0x1A34, symBinAddr: 0x22630, symSize: 0xAC } - - { offsetInCU: 0xC4E, offset: 0xC6FC6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11isSimulatorSbyF', symObjAddr: 0x1AE0, symBinAddr: 0x226DC, symSize: 0x8 } - - { offsetInCU: 0xC79, offset: 0xC6FF1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11isSimulatorSbyFTo', symObjAddr: 0x1AE8, symBinAddr: 0x226E4, symSize: 0x8 } - - { offsetInCU: 0xC95, offset: 0xC700D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9isDevModeSbyF', symObjAddr: 0x1AF0, symBinAddr: 0x226EC, symSize: 0x8 } - - { offsetInCU: 0xCC0, offset: 0xC7038, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9isDevModeSbyFTo', symObjAddr: 0x1AF8, symBinAddr: 0x226F4, symSize: 0x8 } - - { offsetInCU: 0xCDC, offset: 0xC7054, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyF', symObjAddr: 0x1B00, symBinAddr: 0x226FC, symSize: 0x9C } - - { offsetInCU: 0xD69, offset: 0xC70E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyFTo', symObjAddr: 0x1B9C, symBinAddr: 0x22798, symSize: 0xD4 } - - { offsetInCU: 0xDE4, offset: 0xC715C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19setStatusBarVisibleyySbF', symObjAddr: 0x1C70, symBinAddr: 0x2286C, symSize: 0x4 } - - { offsetInCU: 0xE1F, offset: 0xC7197, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyF', symObjAddr: 0x1C74, symBinAddr: 0x22870, symSize: 0xA0 } - - { offsetInCU: 0xEAC, offset: 0xC7224, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyFTo', symObjAddr: 0x1D14, symBinAddr: 0x22910, symSize: 0xD4 } - - { offsetInCU: 0xF27, offset: 0xC729F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF', symObjAddr: 0x1DE8, symBinAddr: 0x229E4, symSize: 0x4 } - - { offsetInCU: 0xF80, offset: 0xC72F8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyF', symObjAddr: 0x1DEC, symBinAddr: 0x229E8, symSize: 0xC0 } - - { offsetInCU: 0xFFF, offset: 0xC7377, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyFTo', symObjAddr: 0x1EAC, symBinAddr: 0x22AA8, symSize: 0x38 } - - { offsetInCU: 0x1039, offset: 0xC73B1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11getLocalUrlSSyF', symObjAddr: 0x1EE4, symBinAddr: 0x22AE0, symSize: 0xDC } - - { offsetInCU: 0x1096, offset: 0xC740E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11getLocalUrlSSyFTo', symObjAddr: 0x1FC0, symBinAddr: 0x22BBC, symSize: 0x10C } - - { offsetInCU: 0x10E9, offset: 0xC7461, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF', symObjAddr: 0x20CC, symBinAddr: 0x22CC8, symSize: 0x4 } - - { offsetInCU: 0x116C, offset: 0xC74E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setServerBasePathyySSF', symObjAddr: 0x20D0, symBinAddr: 0x22CCC, symSize: 0x248 } - - { offsetInCU: 0x1251, offset: 0xC75C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc', symObjAddr: 0x2324, symBinAddr: 0x22F20, symSize: 0xB4 } - - { offsetInCU: 0x12A5, offset: 0xC761D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_', symObjAddr: 0x23D8, symBinAddr: 0x22FD4, symSize: 0x60 } - - { offsetInCU: 0x1305, offset: 0xC767D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfD', symObjAddr: 0x24DC, symBinAddr: 0x230D8, symSize: 0x208 } - - { offsetInCU: 0x1477, offset: 0xC77EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfDTo', symObjAddr: 0x26E4, symBinAddr: 0x232E0, symSize: 0x24 } - - { offsetInCU: 0x14C0, offset: 0xC7838, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12exportCoreJS8localUrlySS_tF', symObjAddr: 0x27F0, symBinAddr: 0x233EC, symSize: 0x148 } - - { offsetInCU: 0x1621, offset: 0xC7999, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyF', symObjAddr: 0x2938, symBinAddr: 0x23534, symSize: 0x3A8 } - - { offsetInCU: 0x192D, offset: 0xC7CA5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC15registerPluginsyyF', symObjAddr: 0x2D64, symBinAddr: 0x23960, symSize: 0x3F8 } - - { offsetInCU: 0x1D2F, offset: 0xC80A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmF', symObjAddr: 0x315C, symBinAddr: 0x23D58, symSize: 0x1A8 } - - { offsetInCU: 0x1E4C, offset: 0xC81C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmFTo', symObjAddr: 0x3304, symBinAddr: 0x23F00, symSize: 0x48 } - - { offsetInCU: 0x1EA4, offset: 0xC821C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCF', symObjAddr: 0x334C, symBinAddr: 0x23F48, symSize: 0x40C } - - { offsetInCU: 0x218D, offset: 0xC8505, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCFTo', symObjAddr: 0x3758, symBinAddr: 0x24354, symSize: 0x50 } - - { offsetInCU: 0x21A9, offset: 0xC8521, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10loadPlugin4typeSo010CAPBridgedD0_So9CAPPluginCXcSgAHm_tF', symObjAddr: 0x37A8, symBinAddr: 0x243A4, symSize: 0x214 } - - { offsetInCU: 0x2386, offset: 0xC86FE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC6plugin8withNameSo9CAPPluginCSgSS_tF', symObjAddr: 0x39BC, symBinAddr: 0x245B8, symSize: 0xC4 } - - { offsetInCU: 0x242A, offset: 0xC87A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CF', symObjAddr: 0x3A8C, symBinAddr: 0x24688, symSize: 0xAC } - - { offsetInCU: 0x24C5, offset: 0xC883D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CFTo', symObjAddr: 0x3B38, symBinAddr: 0x24734, symSize: 0xDC } - - { offsetInCU: 0x2553, offset: 0xC88CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9savedCall6withIDSo09CAPPluginD0CSgSS_tF', symObjAddr: 0x3C14, symBinAddr: 0x24810, symSize: 0xC4 } - - { offsetInCU: 0x25C0, offset: 0xC8938, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CF', symObjAddr: 0x3CE4, symBinAddr: 0x248E0, symSize: 0x64 } - - { offsetInCU: 0x262C, offset: 0xC89A4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CFTo', symObjAddr: 0x3D48, symBinAddr: 0x24944, symSize: 0x98 } - - { offsetInCU: 0x2682, offset: 0xC89FA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCall6withIDySS_tF', symObjAddr: 0x3DE0, symBinAddr: 0x249DC, symSize: 0xF0 } - - { offsetInCU: 0x278A, offset: 0xC8B02, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12getSavedCallySo09CAPPluginE0CSgSSF', symObjAddr: 0x3EDC, symBinAddr: 0x24AD8, symSize: 0xC4 } - - { offsetInCU: 0x2856, offset: 0xC8BCE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCall10callbackIdySS_tF', symObjAddr: 0x401C, symBinAddr: 0x24C18, symSize: 0xF0 } - - { offsetInCU: 0x29D3, offset: 0xC8D4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerCordovaPluginsyyF', symObjAddr: 0x4118, symBinAddr: 0x24D14, symSize: 0x3B0 } - - { offsetInCU: 0x2BD5, offset: 0xC8F4D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setupWebDebugging33_B558F97FDDF7E6D98578814FFB110E95LL13configurationySo24CAPInstanceConfigurationC_tF', symObjAddr: 0x44C8, symBinAddr: 0x250C4, symSize: 0x168 } - - { offsetInCU: 0x2D39, offset: 0xC90B1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tF', symObjAddr: 0x4630, symBinAddr: 0x2522C, symSize: 0xB28 } - - { offsetInCU: 0x3798, offset: 0xC9B10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_', symObjAddr: 0x5158, symBinAddr: 0x25D54, symSize: 0x320 } - - { offsetInCU: 0x38C2, offset: 0xC9C3A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA19CAPPluginCallResultCSg_So0fG0CSgtcfU_', symObjAddr: 0x5478, symBinAddr: 0x26074, symSize: 0x218 } - - { offsetInCU: 0x39BF, offset: 0xC9D37, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA18CAPPluginCallErrorCSgcfU0_', symObjAddr: 0x5690, symBinAddr: 0x2628C, symSize: 0x104 } - - { offsetInCU: 0x3AD0, offset: 0xC9E48, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19handleCordovaJSCall4callyAA0E0V_tF', symObjAddr: 0x57C0, symBinAddr: 0x263BC, symSize: 0x5B4 } - - { offsetInCU: 0x3E49, offset: 0xCA1C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFyyScMYccfU_', symObjAddr: 0x5D74, symBinAddr: 0x26970, symSize: 0x2FC } - - { offsetInCU: 0x418E, offset: 0xCA506, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFyyScMYccfU_', symObjAddr: 0x6118, symBinAddr: 0x26D14, symSize: 0x2AC } - - { offsetInCU: 0x445B, offset: 0xCA7D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStF', symObjAddr: 0x648C, symBinAddr: 0x27088, symSize: 0x35C } - - { offsetInCU: 0x46C8, offset: 0xCAA40, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStFTo', symObjAddr: 0x67EC, symBinAddr: 0x273E8, symSize: 0x7C } - - { offsetInCU: 0x46E4, offset: 0xCAA5C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4eval2jsySS_tF', symObjAddr: 0x6868, symBinAddr: 0x27464, symSize: 0x22C } - - { offsetInCU: 0x4752, offset: 0xCAACA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStF', symObjAddr: 0x6D7C, symBinAddr: 0x27978, symSize: 0xD4 } - - { offsetInCU: 0x48E5, offset: 0xCAC5D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStFTo', symObjAddr: 0x6E50, symBinAddr: 0x27A4C, symSize: 0x84 } - - { offsetInCU: 0x4901, offset: 0xCAC79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6target4dataySS_S2StF', symObjAddr: 0x6ED4, symBinAddr: 0x27AD0, symSize: 0x108 } - - { offsetInCU: 0x4B25, offset: 0xCAE9D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventNameySS_tF', symObjAddr: 0x6FE8, symBinAddr: 0x27BE4, symSize: 0x14 } - - { offsetInCU: 0x4B65, offset: 0xCAEDD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventName4dataySS_SStF', symObjAddr: 0x7010, symBinAddr: 0x27C0C, symSize: 0x1C } - - { offsetInCU: 0x4BB6, offset: 0xCAF2E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventNameySS_tF', symObjAddr: 0x7040, symBinAddr: 0x27C3C, symSize: 0x18 } - - { offsetInCU: 0x4BF6, offset: 0xCAF6E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventName4dataySS_SStF', symObjAddr: 0x70E4, symBinAddr: 0x27CE0, symSize: 0x20 } - - { offsetInCU: 0x4C47, offset: 0xCAFBF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStF', symObjAddr: 0x71BC, symBinAddr: 0x27DB8, symSize: 0x240 } - - { offsetInCU: 0x4CC5, offset: 0xCB03D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_', symObjAddr: 0x73FC, symBinAddr: 0x27FF8, symSize: 0x19C } - - { offsetInCU: 0x4EAD, offset: 0xCB225, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_yypSg_s5Error_pSgtcfU_', symObjAddr: 0x7598, symBinAddr: 0x28194, symSize: 0xD0 } - - { offsetInCU: 0x4FC0, offset: 0xCB338, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8localURL07fromWebD010Foundation0D0VSgAI_tF', symObjAddr: 0x7668, symBinAddr: 0x28264, symSize: 0x2C8 } - - { offsetInCU: 0x50A7, offset: 0xCB41F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12portablePath12fromLocalURL10Foundation0G0VSgAI_tF', symObjAddr: 0x793C, symBinAddr: 0x28538, symSize: 0x21C } - - { offsetInCU: 0x5122, offset: 0xCB49A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13showAlertWith5title7message11buttonTitleySS_S2StF', symObjAddr: 0x7CC4, symBinAddr: 0x288C0, symSize: 0x1CC } - - { offsetInCU: 0x5211, offset: 0xCB589, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF', symObjAddr: 0x7F5C, symBinAddr: 0x28B58, symSize: 0x2A8 } - - { offsetInCU: 0x536F, offset: 0xCB6E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtFTo', symObjAddr: 0x8204, symBinAddr: 0x28E00, symSize: 0xBC } - - { offsetInCU: 0x538B, offset: 0xCB703, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtF', symObjAddr: 0x82C0, symBinAddr: 0x28EBC, symSize: 0x1D0 } - - { offsetInCU: 0x545C, offset: 0xCB7D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtFTo', symObjAddr: 0x8490, symBinAddr: 0x2908C, symSize: 0x98 } - - { offsetInCU: 0x5478, offset: 0xCB7F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfC', symObjAddr: 0x8528, symBinAddr: 0x29124, symSize: 0x20 } - - { offsetInCU: 0x5496, offset: 0xCB80E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfc', symObjAddr: 0x8548, symBinAddr: 0x29144, symSize: 0x2C } - - { offsetInCU: 0x54F9, offset: 0xCB871, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfcTo', symObjAddr: 0x8574, symBinAddr: 0x29170, symSize: 0x2C } - - { offsetInCU: 0x5560, offset: 0xCB8D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFTf4enn_nAA0G0V_TB5', symObjAddr: 0x9DB4, symBinAddr: 0x2A9B0, symSize: 0x420 } - - { offsetInCU: 0x56C5, offset: 0xCBA3D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFTf4en_nAA0gE0V_TB5', symObjAddr: 0xA1D4, symBinAddr: 0x2ADD0, symSize: 0x298 } - - { offsetInCU: 0x5734, offset: 0xCBAAC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10fatalErroryys0D0_p_sAE_ptFZTf4nnd_n', symObjAddr: 0xA46C, symBinAddr: 0x2B068, symSize: 0x518 } - - { offsetInCU: 0x5ABA, offset: 0xCBE32, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcTf4nennnnn_nTf4gggggnn_n', symObjAddr: 0xA9F8, symBinAddr: 0x2B5F4, symSize: 0x770 } - - { offsetInCU: 0x5C74, offset: 0xCBFEC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvpACTK', symObjAddr: 0x784, symBinAddr: 0x21380, symSize: 0xB0 } - - { offsetInCU: 0x5CBD, offset: 0xCC035, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvpACTK', symObjAddr: 0xBE8, symBinAddr: 0x217E4, symSize: 0xB0 } - - { offsetInCU: 0x5D31, offset: 0xCC0A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13tmpVCAppeared_WZ', symObjAddr: 0x1430, symBinAddr: 0x2202C, symSize: 0x80 } - - { offsetInCU: 0x5D4B, offset: 0xCC0C3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultScheme_WZ', symObjAddr: 0x14E8, symBinAddr: 0x220E4, symSize: 0x28 } - - { offsetInCU: 0x5D76, offset: 0xCC0EE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvpACTK', symObjAddr: 0x1584, symBinAddr: 0x22180, symSize: 0x58 } - - { offsetInCU: 0x5DA3, offset: 0xCC11B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvpACTk', symObjAddr: 0x15DC, symBinAddr: 0x221D8, symSize: 0x60 } - - { offsetInCU: 0x5E30, offset: 0xCC1A8, size: 0x8, addend: 0x0, symName: '_$s10Foundation12NotificationVIeghn_So14NSNotificationCIeyBhy_TR', symObjAddr: 0x2438, symBinAddr: 0x23034, symSize: 0xA4 } - - { offsetInCU: 0x5F55, offset: 0xCC2CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfETo', symObjAddr: 0x2708, symBinAddr: 0x23304, symSize: 0xE8 } - - { offsetInCU: 0x6232, offset: 0xCC5AA, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x5794, symBinAddr: 0x26390, symSize: 0x2C } - - { offsetInCU: 0x626B, offset: 0xCC5E3, size: 0x8, addend: 0x0, symName: '_$sypSgs5Error_pSgIegng_yXlSgSo7NSErrorCSgIeyByy_TR', symObjAddr: 0x6074, symBinAddr: 0x26C70, symSize: 0xA4 } - - { offsetInCU: 0x62A4, offset: 0xCC61C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCSgSo0bC0CSgIeggg_AdGIeyByy_TR', symObjAddr: 0x872C, symBinAddr: 0x29328, symSize: 0x78 } - - { offsetInCU: 0x62BC, offset: 0xCC634, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCSgIegg_ADIeyBy_TR', symObjAddr: 0x87A4, symBinAddr: 0x293A0, symSize: 0x50 } - - { offsetInCU: 0x6300, offset: 0xCC678, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x87F4, symBinAddr: 0x293F0, symSize: 0x1C8 } - - { offsetInCU: 0x637B, offset: 0xCC6F3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0x89BC, symBinAddr: 0x295B8, symSize: 0x1F4 } - - { offsetInCU: 0x6412, offset: 0xCC78A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x8BB0, symBinAddr: 0x297AC, symSize: 0x1C4 } - - { offsetInCU: 0x64B4, offset: 0xCC82C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x8D74, symBinAddr: 0x29970, symSize: 0x1F8 } - - { offsetInCU: 0x6540, offset: 0xCC8B8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So13CAPPluginCallCTg5', symObjAddr: 0x8F6C, symBinAddr: 0x29B68, symSize: 0x1C4 } - - { offsetInCU: 0x65E2, offset: 0xCC95A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_SSTg5', symObjAddr: 0x9130, symBinAddr: 0x29D2C, symSize: 0x1DC } - - { offsetInCU: 0x665F, offset: 0xCC9D7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0x930C, symBinAddr: 0x29F08, symSize: 0x1E4 } - - { offsetInCU: 0x66F0, offset: 0xCCA68, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x94F0, symBinAddr: 0x2A0EC, symSize: 0x1F4 } - - { offsetInCU: 0x6781, offset: 0xCCAF9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So13CAPPluginCallCTg5', symObjAddr: 0x96E4, symBinAddr: 0x2A2E0, symSize: 0x204 } - - { offsetInCU: 0x6807, offset: 0xCCB7F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo8NSObject_p_Tg5', symObjAddr: 0x98FC, symBinAddr: 0x2A4F8, symSize: 0x1F0 } - - { offsetInCU: 0x6864, offset: 0xCCBDC, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo8NSObject_p_Tg5', symObjAddr: 0x9D24, symBinAddr: 0x2A920, symSize: 0x90 } - - { offsetInCU: 0x6908, offset: 0xCCC80, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo9CAPPluginCm_Tg5Tf4d_n', symObjAddr: 0xA984, symBinAddr: 0x2B580, symSize: 0x68 } - - { offsetInCU: 0x6949, offset: 0xCCCC1, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo8NSObject_p_Tg5Tf4d_n', symObjAddr: 0xA9EC, symBinAddr: 0x2B5E8, symSize: 0xC } - - { offsetInCU: 0x6972, offset: 0xCCCEA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsyyScMYccfU_TA', symObjAddr: 0xB1B0, symBinAddr: 0x2BDAC, symSize: 0xC } - - { offsetInCU: 0x6986, offset: 0xCCCFE, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xB1BC, symBinAddr: 0x2BDB8, symSize: 0x10 } - - { offsetInCU: 0x699A, offset: 0xCCD12, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xB1CC, symBinAddr: 0x2BDC8, symSize: 0x8 } - - { offsetInCU: 0x69AE, offset: 0xCCD26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsyyScMYccfU_TA', symObjAddr: 0xB254, symBinAddr: 0x2BE10, symSize: 0x8 } - - { offsetInCU: 0x69C2, offset: 0xCCD3A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsyyScMYccfU_TA', symObjAddr: 0xB280, symBinAddr: 0x2BE3C, symSize: 0x8 } - - { offsetInCU: 0x69D6, offset: 0xCCD4E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCMa', symObjAddr: 0xB2B0, symBinAddr: 0x2BE44, symSize: 0x20 } - - { offsetInCU: 0x69EA, offset: 0xCCD62, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStFyyScMYccfU_TA', symObjAddr: 0xB2D4, symBinAddr: 0x2BE68, symSize: 0x2C } - - { offsetInCU: 0x69FE, offset: 0xCCD76, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4eval2jsySS_tFyyScMYccfU_TA', symObjAddr: 0xB330, symBinAddr: 0x2BEC4, symSize: 0x2C } - - { offsetInCU: 0x6A12, offset: 0xCCD8A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_TA', symObjAddr: 0xB390, symBinAddr: 0x2BF24, symSize: 0x10 } - - { offsetInCU: 0x6A26, offset: 0xCCD9E, size: 0x8, addend: 0x0, symName: '_$sSDySSypGWOs', symObjAddr: 0xBBB0, symBinAddr: 0x2C744, symSize: 0x28 } - - { offsetInCU: 0x6A3A, offset: 0xCCDB2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVWOr', symObjAddr: 0xBC14, symBinAddr: 0x2C76C, symSize: 0x54 } - - { offsetInCU: 0x6A4E, offset: 0xCCDC6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVWOs', symObjAddr: 0xBC68, symBinAddr: 0x2C7C0, symSize: 0x54 } - - { offsetInCU: 0x6A62, offset: 0xCCDDA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_TA', symObjAddr: 0xBD08, symBinAddr: 0x2C860, symSize: 0x10 } - - { offsetInCU: 0x6A76, offset: 0xCCDEE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA19CAPPluginCallResultCSg_So0fG0CSgtcfU_TA', symObjAddr: 0xBD58, symBinAddr: 0x2C8B0, symSize: 0xC } - - { offsetInCU: 0x6A8A, offset: 0xCCE02, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA18CAPPluginCallErrorCSgcfU0_TA', symObjAddr: 0xBDAC, symBinAddr: 0x2C904, symSize: 0xC } - - { offsetInCU: 0x6A9E, offset: 0xCCE16, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVWOs', symObjAddr: 0xBDB8, symBinAddr: 0x2C910, symSize: 0x90 } - - { offsetInCU: 0x6AB2, offset: 0xCCE2A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVWOr', symObjAddr: 0xBEA4, symBinAddr: 0x2C9FC, symSize: 0x94 } - - { offsetInCU: 0x6AC6, offset: 0xCCE3E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSResultProtocol_pWOb', symObjAddr: 0xBF64, symBinAddr: 0x2CABC, symSize: 0x18 } - - { offsetInCU: 0x6ADA, offset: 0xCCE52, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFyyScMYccfU_TA', symObjAddr: 0xBF7C, symBinAddr: 0x2CAD4, symSize: 0xC } - - { offsetInCU: 0x6AEE, offset: 0xCCE66, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0xBFAC, symBinAddr: 0x2CAE0, symSize: 0x3C } - - { offsetInCU: 0x6B02, offset: 0xCCE7A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVWOs', symObjAddr: 0xBFE8, symBinAddr: 0x2CB1C, symSize: 0x68 } - - { offsetInCU: 0x6B16, offset: 0xCCE8E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVWOr', symObjAddr: 0xC094, symBinAddr: 0x2CBC8, symSize: 0x64 } - - { offsetInCU: 0x6B2A, offset: 0xCCEA2, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo12NSHTTPCookieC_Tg5Tf4d_n', symObjAddr: 0xC11C, symBinAddr: 0x2CC50, symSize: 0x64 } - - { offsetInCU: 0x6B83, offset: 0xCCEFB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFyyScMYccfU_TA', symObjAddr: 0xC23C, symBinAddr: 0x2CD70, symSize: 0x14 } - - { offsetInCU: 0x6B97, offset: 0xCCF0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyFy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0xC2C0, symBinAddr: 0x2CDE4, symSize: 0x28 } - - { offsetInCU: 0x6BAB, offset: 0xCCF23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyFy10Foundation12NotificationVYbcfU0_TA', symObjAddr: 0xC2E8, symBinAddr: 0x2CE0C, symSize: 0x28 } - - { offsetInCU: 0x6BBF, offset: 0xCCF37, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xC310, symBinAddr: 0x2CE34, symSize: 0x10 } - - { offsetInCU: 0x6BD3, offset: 0xCCF4B, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xC344, symBinAddr: 0x2CE68, symSize: 0x8 } - - { offsetInCU: 0x6BE7, offset: 0xCCF5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeDelegate_pSgXwWOh', symObjAddr: 0xC34C, symBinAddr: 0x2CE70, symSize: 0x24 } - - { offsetInCU: 0x6BFB, offset: 0xCCF73, size: 0x8, addend: 0x0, symName: ___swift_allocate_value_buffer, symObjAddr: 0xC370, symBinAddr: 0x2CE94, symSize: 0x40 } - - { offsetInCU: 0x6C0F, offset: 0xCCF87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0xC4D4, symBinAddr: 0x2CFE0, symSize: 0x8 } - - { offsetInCU: 0x6F98, offset: 0xCD310, size: 0x8, addend: 0x0, symName: '_$sSlsE6prefixy11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0xC180, symBinAddr: 0x2CCB4, symSize: 0x88 } - - { offsetInCU: 0x7331, offset: 0xCD6A9, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC10callbackId7options7success5errorABSgSSSg_SDys11AnyHashableVypGSgy9Capacitor0aB6ResultCSg_AGtcSgyAM0aB5ErrorCSgcSgtcfcTO', symObjAddr: 0x85A0, symBinAddr: 0x2919C, symSize: 0x18C } - - { offsetInCU: 0x27, offset: 0xCD9C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x0, symBinAddr: 0x2D0A8, symSize: 0xB4 } - - { offsetInCU: 0x4B, offset: 0xCD9E5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x0, symBinAddr: 0x2D0A8, symSize: 0xB4 } - - { offsetInCU: 0x69, offset: 0xCDA03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0xB4, symBinAddr: 0x2D15C, symSize: 0xB4 } - - { offsetInCU: 0xE2, offset: 0xCDA7C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x188, symBinAddr: 0x2D230, symSize: 0xD8 } - - { offsetInCU: 0x139, offset: 0xCDAD3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfC', symObjAddr: 0x260, symBinAddr: 0x2D308, symSize: 0x20 } - - { offsetInCU: 0x157, offset: 0xCDAF1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfc', symObjAddr: 0x280, symBinAddr: 0x2D328, symSize: 0x30 } - - { offsetInCU: 0x192, offset: 0xCDB2C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfcTo', symObjAddr: 0x2B0, symBinAddr: 0x2D358, symSize: 0x3C } - - { offsetInCU: 0x1CD, offset: 0xCDB67, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCfD', symObjAddr: 0x2EC, symBinAddr: 0x2D394, symSize: 0x30 } - - { offsetInCU: 0x1FB, offset: 0xCDB95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCMa', symObjAddr: 0x168, symBinAddr: 0x2D210, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0xCDCCE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfC', symObjAddr: 0x0, symBinAddr: 0x2D3C4, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0xCDCEC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tF', symObjAddr: 0x28, symBinAddr: 0x2D3EC, symSize: 0x4 } - - { offsetInCU: 0x81, offset: 0xCDD00, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_', symObjAddr: 0x2C, symBinAddr: 0x2D3F0, symSize: 0x84 } - - { offsetInCU: 0xCC, offset: 0xCDD4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_ySaySo12NSHTTPCookieCGcfU_', symObjAddr: 0xB0, symBinAddr: 0x2D474, symSize: 0x114 } - - { offsetInCU: 0x234, offset: 0xCDEB3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFTo', symObjAddr: 0x230, symBinAddr: 0x2D5F4, symSize: 0x4C } - - { offsetInCU: 0x266, offset: 0xCDEE5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfc', symObjAddr: 0x27C, symBinAddr: 0x2D640, symSize: 0x30 } - - { offsetInCU: 0x2A1, offset: 0xCDF20, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfcTo', symObjAddr: 0x2AC, symBinAddr: 0x2D670, symSize: 0x3C } - - { offsetInCU: 0x2DC, offset: 0xCDF5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCfD', symObjAddr: 0x2E8, symBinAddr: 0x2D6AC, symSize: 0x30 } - - { offsetInCU: 0x309, offset: 0xCDF88, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFTf4nd_n', symObjAddr: 0x27A8, symBinAddr: 0x2FB6C, symSize: 0x21C } - - { offsetInCU: 0x408, offset: 0xCE087, size: 0x8, addend: 0x0, symName: '_$sSaySo12NSHTTPCookieCGIegg_So7NSArrayCIeyBy_TR', symObjAddr: 0x1C4, symBinAddr: 0x2D588, symSize: 0x6C } - - { offsetInCU: 0x44A, offset: 0xCE0C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF', symObjAddr: 0x318, symBinAddr: 0x2D6DC, symSize: 0x1CC } - - { offsetInCU: 0x4B5, offset: 0xCE134, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC14isUrlSanitized33_9693F7733192184D77E45ECC2FDF6960LLySbSSF', symObjAddr: 0x4E4, symBinAddr: 0x2D8A8, symSize: 0x1D8 } - - { offsetInCU: 0x533, offset: 0xCE1B2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF', symObjAddr: 0x6BC, symBinAddr: 0x2DA80, symSize: 0x188 } - - { offsetInCU: 0x61E, offset: 0xCE29D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC6encodeyS2SF', symObjAddr: 0x844, symBinAddr: 0x2DC08, symSize: 0xC0 } - - { offsetInCU: 0x66E, offset: 0xCE2ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC6decodeyS2SF', symObjAddr: 0x904, symBinAddr: 0x2DCC8, symSize: 0x44 } - - { offsetInCU: 0x6CD, offset: 0xCE34C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yySS_SStF', symObjAddr: 0x948, symBinAddr: 0x2DD0C, symSize: 0x2BC } - - { offsetInCU: 0x833, offset: 0xCE4B2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF', symObjAddr: 0xC04, symBinAddr: 0x2DFC8, symSize: 0xC } - - { offsetInCU: 0x84F, offset: 0xCE4CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF', symObjAddr: 0xC10, symBinAddr: 0x2DFD4, symSize: 0x4 } - - { offsetInCU: 0x86B, offset: 0xCE4EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC10getCookiesSSyF', symObjAddr: 0xC14, symBinAddr: 0x2DFD8, symSize: 0x4F0 } - - { offsetInCU: 0xD68, offset: 0xCE9E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF', symObjAddr: 0x1104, symBinAddr: 0x2E4C8, symSize: 0x4 } - - { offsetInCU: 0xDB1, offset: 0xCEA30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF', symObjAddr: 0x1108, symBinAddr: 0x2E4CC, symSize: 0x4 } - - { offsetInCU: 0xDFA, offset: 0xCEA79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15clearAllCookiesyyF', symObjAddr: 0x110C, symBinAddr: 0x2E4D0, symSize: 0x4 } - - { offsetInCU: 0xE43, offset: 0xCEAC2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF', symObjAddr: 0x1110, symBinAddr: 0x2E4D4, symSize: 0x4 } - - { offsetInCU: 0xE57, offset: 0xCEAD6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCfd', symObjAddr: 0x1198, symBinAddr: 0x2E55C, symSize: 0x1C } - - { offsetInCU: 0xE92, offset: 0xCEB11, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCfD', symObjAddr: 0x11B4, symBinAddr: 0x2E578, symSize: 0x24 } - - { offsetInCU: 0xEDD, offset: 0xCEB5C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyFTf4d_n', symObjAddr: 0x11D8, symBinAddr: 0x2E59C, symSize: 0x350 } - - { offsetInCU: 0x1070, offset: 0xCECEF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVFTf4nd_n', symObjAddr: 0x1528, symBinAddr: 0x2E8EC, symSize: 0x374 } - - { offsetInCU: 0x1319, offset: 0xCEF98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtFTf4nnnnnd_n', symObjAddr: 0x189C, symBinAddr: 0x2EC60, symSize: 0x2FC } - - { offsetInCU: 0x160C, offset: 0xCF28B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFTf4nnd_n', symObjAddr: 0x1D44, symBinAddr: 0x2F108, symSize: 0x328 } - - { offsetInCU: 0x16B8, offset: 0xCF337, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVFTf4nd_n', symObjAddr: 0x206C, symBinAddr: 0x2F430, symSize: 0x3AC } - - { offsetInCU: 0x185F, offset: 0xCF4DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15clearAllCookiesyyFTf4d_n', symObjAddr: 0x2418, symBinAddr: 0x2F7DC, symSize: 0x390 } - - { offsetInCU: 0x1BC5, offset: 0xCF844, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCMa', symObjAddr: 0x29C4, symBinAddr: 0x2FD88, symSize: 0x20 } - - { offsetInCU: 0x1BD9, offset: 0xCF858, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCMa', symObjAddr: 0x2B6C, symBinAddr: 0x2FDD0, symSize: 0x20 } - - { offsetInCU: 0x1BED, offset: 0xCF86C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2C8C, symBinAddr: 0x2FEF0, symSize: 0x10 } - - { offsetInCU: 0x1C01, offset: 0xCF880, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2C9C, symBinAddr: 0x2FF00, symSize: 0x8 } - - { offsetInCU: 0x1C15, offset: 0xCF894, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x2CE4, symBinAddr: 0x2FF48, symSize: 0x54 } - - { offsetInCU: 0x1C29, offset: 0xCF8A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFyyScMYccfU0_TA', symObjAddr: 0x2D38, symBinAddr: 0x2FF9C, symSize: 0x20 } - - { offsetInCU: 0x1C3D, offset: 0xCF8BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyFyyScMYccfU_TA', symObjAddr: 0x2D58, symBinAddr: 0x2FFBC, symSize: 0x20 } - - { offsetInCU: 0x1C51, offset: 0xCF8D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_TA', symObjAddr: 0x2D78, symBinAddr: 0x2FFDC, symSize: 0x8 } - - { offsetInCU: 0x1C76, offset: 0xCF8F5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x20, symBinAddr: 0x2D3E4, symSize: 0x4 } - - { offsetInCU: 0x1C92, offset: 0xCF911, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_So42UIScrollViewContentInsetAdjustmentBehaviorVt_Tg5', symObjAddr: 0x24, symBinAddr: 0x2D3E8, symSize: 0x4 } - - { offsetInCU: 0x1DAA, offset: 0xCFA29, size: 0x8, addend: 0x0, symName: '_$sSTsE5first5where7ElementQzSgSbADKXE_tKFSaySo12NSHTTPCookieCG_Tg5070$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFSbSo12D6CXEfU_SSTf1cn_nTf4ng_n', symObjAddr: 0x1B98, symBinAddr: 0x2EF5C, symSize: 0x1AC } - - { offsetInCU: 0x27, offset: 0xCFDF2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ', symObjAddr: 0x0, symBinAddr: 0x30024, symSize: 0x204 } - - { offsetInCU: 0x4B, offset: 0xCFE16, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ', symObjAddr: 0x0, symBinAddr: 0x30024, symSize: 0x204 } - - { offsetInCU: 0xF6, offset: 0xCFEC1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfC', symObjAddr: 0x310, symBinAddr: 0x30228, symSize: 0x20 } - - { offsetInCU: 0x114, offset: 0xCFEDF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfc', symObjAddr: 0x330, symBinAddr: 0x30248, symSize: 0x30 } - - { offsetInCU: 0x14F, offset: 0xCFF1A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfcTo', symObjAddr: 0x380, symBinAddr: 0x30298, symSize: 0x3C } - - { offsetInCU: 0x18A, offset: 0xCFF55, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCfD', symObjAddr: 0x3BC, symBinAddr: 0x302D4, symSize: 0x30 } - - { offsetInCU: 0x1B8, offset: 0xCFF83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCMa', symObjAddr: 0x360, symBinAddr: 0x30278, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0xD00F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification_WZ', symObjAddr: 0x0, symBinAddr: 0x30304, symSize: 0x98 } - - { offsetInCU: 0x4B, offset: 0xD0115, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvpZ', symObjAddr: 0x4D8, symBinAddr: 0x7AED8, symSize: 0x0 } - - { offsetInCU: 0x6A, offset: 0xD0134, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification_WZ', symObjAddr: 0x0, symBinAddr: 0x30304, symSize: 0x98 } - - { offsetInCU: 0xAF, offset: 0xD0179, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZ', symObjAddr: 0x98, symBinAddr: 0x3039C, symSize: 0x70 } - - { offsetInCU: 0xF4, offset: 0xD01BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZTo', symObjAddr: 0x120, symBinAddr: 0x3040C, symSize: 0x5C } - - { offsetInCU: 0x12B, offset: 0xD01F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ', symObjAddr: 0x17C, symBinAddr: 0x30468, symSize: 0x84 } - - { offsetInCU: 0x178, offset: 0xD0242, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ', symObjAddr: 0x200, symBinAddr: 0x304EC, symSize: 0x98 } - - { offsetInCU: 0x1E5, offset: 0xD02AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ', symObjAddr: 0x298, symBinAddr: 0x30584, symSize: 0x90 } - - { offsetInCU: 0x24E, offset: 0xD0318, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ', symObjAddr: 0x328, symBinAddr: 0x30614, symSize: 0x4 } - - { offsetInCU: 0x285, offset: 0xD034F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfC', symObjAddr: 0x32C, symBinAddr: 0x30618, symSize: 0x20 } - - { offsetInCU: 0x2A3, offset: 0xD036D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfc', symObjAddr: 0x34C, symBinAddr: 0x30638, symSize: 0x30 } - - { offsetInCU: 0x2DE, offset: 0xD03A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfcTo', symObjAddr: 0x37C, symBinAddr: 0x30668, symSize: 0x3C } - - { offsetInCU: 0x319, offset: 0xD03E3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCfD', symObjAddr: 0x3B8, symBinAddr: 0x306A4, symSize: 0x30 } - - { offsetInCU: 0x3A1, offset: 0xD046B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCfETo', symObjAddr: 0x3E8, symBinAddr: 0x306D4, symSize: 0x4 } - - { offsetInCU: 0x3CC, offset: 0xD0496, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCMa', symObjAddr: 0x474, symBinAddr: 0x306D8, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0xD067E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ', symObjAddr: 0x0, symBinAddr: 0x306F8, symSize: 0x70 } - - { offsetInCU: 0x3F, offset: 0xD0696, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ', symObjAddr: 0x0, symBinAddr: 0x306F8, symSize: 0x70 } - - { offsetInCU: 0x137, offset: 0xD078E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ', symObjAddr: 0x70, symBinAddr: 0x30768, symSize: 0x64 } - - { offsetInCU: 0x1FF, offset: 0xD0856, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ', symObjAddr: 0xD4, symBinAddr: 0x307CC, symSize: 0x2B4 } - - { offsetInCU: 0x4F, offset: 0xD0B73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO9formatter031_F806BC7C3B9E74076D863322397580I0LLSo22NSISO8601DateFormatterCvpZ', symObjAddr: 0x35C0, symBinAddr: 0x7AF38, symSize: 0x0 } - - { offsetInCU: 0x70, offset: 0xD0B94, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x30AC0, symSize: 0x8 } - - { offsetInCU: 0xC4, offset: 0xD0BE8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x48, symBinAddr: 0x30AC8, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0xD0CCB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x30B08, symSize: 0x24 } - - { offsetInCU: 0x237, offset: 0xD0D5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18jsonRepresentation15includingFieldsSSSgSDySSypGSg_tKF', symObjAddr: 0xF8, symBinAddr: 0x30B78, symSize: 0x2DC } - - { offsetInCU: 0x45A, offset: 0xD0F7E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO9formatter031_F806BC7C3B9E74076D863322397580I0LL_WZ', symObjAddr: 0x3D4, symBinAddr: 0x30E54, symSize: 0x30 } - - { offsetInCU: 0x4AB, offset: 0xD0FCF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvg', symObjAddr: 0x41C, symBinAddr: 0x30E9C, symSize: 0x10 } - - { offsetInCU: 0x52F, offset: 0xD1053, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfC', symObjAddr: 0x42C, symBinAddr: 0x30EAC, symSize: 0x4C } - - { offsetInCU: 0x576, offset: 0xD109A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfc', symObjAddr: 0x478, symBinAddr: 0x30EF8, symSize: 0x3C } - - { offsetInCU: 0x59D, offset: 0xD10C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfcTo', symObjAddr: 0x4D4, symBinAddr: 0x30F54, symSize: 0x7C } - - { offsetInCU: 0x5CF, offset: 0xD10F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCACycfc', symObjAddr: 0x55C, symBinAddr: 0x30FDC, symSize: 0x2C } - - { offsetInCU: 0x632, offset: 0xD1156, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCACycfcTo', symObjAddr: 0x588, symBinAddr: 0x31008, symSize: 0x2C } - - { offsetInCU: 0x6A3, offset: 0xD11C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCMa', symObjAddr: 0x4B4, symBinAddr: 0x30F34, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0xD11F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCfETo', symObjAddr: 0x5C0, symBinAddr: 0x31040, symSize: 0x10 } - - { offsetInCU: 0x726, offset: 0xD124A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7messageSSvgTo', symObjAddr: 0x5D0, symBinAddr: 0x31050, symSize: 0x4C } - - { offsetInCU: 0x761, offset: 0xD1285, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7messageSSvg', symObjAddr: 0x61C, symBinAddr: 0x3109C, symSize: 0x38 } - - { offsetInCU: 0x79E, offset: 0xD12C2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4codeSSSgvgTo', symObjAddr: 0x654, symBinAddr: 0x310D4, symSize: 0x5C } - - { offsetInCU: 0x7D1, offset: 0xD12F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4codeSSSgvg', symObjAddr: 0x6B0, symBinAddr: 0x31130, symSize: 0x38 } - - { offsetInCU: 0x80E, offset: 0xD1332, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvgTo', symObjAddr: 0x6E8, symBinAddr: 0x31168, symSize: 0x50 } - - { offsetInCU: 0x849, offset: 0xD136D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvg', symObjAddr: 0x738, symBinAddr: 0x311B8, symSize: 0x30 } - - { offsetInCU: 0x868, offset: 0xD138C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvg', symObjAddr: 0x7F4, symBinAddr: 0x31274, symSize: 0x10 } - - { offsetInCU: 0x8A4, offset: 0xD13C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfC', symObjAddr: 0x804, symBinAddr: 0x31284, symSize: 0x98 } - - { offsetInCU: 0x8D8, offset: 0xD13FC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfc', symObjAddr: 0x89C, symBinAddr: 0x3131C, symSize: 0x64 } - - { offsetInCU: 0x8EC, offset: 0xD1410, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfcTo', symObjAddr: 0x900, symBinAddr: 0x31380, symSize: 0xEC } - - { offsetInCU: 0x91E, offset: 0xD1442, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCACycfc', symObjAddr: 0xA28, symBinAddr: 0x314A8, symSize: 0x2C } - - { offsetInCU: 0x981, offset: 0xD14A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCACycfcTo', symObjAddr: 0xA54, symBinAddr: 0x314D4, symSize: 0x2C } - - { offsetInCU: 0x9E8, offset: 0xD150C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfcTf4ggggn_n', symObjAddr: 0x2D6C, symBinAddr: 0x337EC, symSize: 0x17C } - - { offsetInCU: 0xB17, offset: 0xD163B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCfETo', symObjAddr: 0xABC, symBinAddr: 0x3153C, symSize: 0x60 } - - { offsetInCU: 0xB67, offset: 0xD168B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_SSTg5', symObjAddr: 0xB1C, symBinAddr: 0x3159C, symSize: 0x54 } - - { offsetInCU: 0xBE9, offset: 0xD170D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0xB70, symBinAddr: 0x315F0, symSize: 0x6C } - - { offsetInCU: 0xC83, offset: 0xD17A7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0xBDC, symBinAddr: 0x3165C, symSize: 0x4C } - - { offsetInCU: 0xD21, offset: 0xD1845, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So13CAPPluginCallCTg5', symObjAddr: 0xC28, symBinAddr: 0x316A8, symSize: 0x4C } - - { offsetInCU: 0xDD5, offset: 0xD18F9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0xDAC, symBinAddr: 0x3182C, symSize: 0x3AC } - - { offsetInCU: 0xED0, offset: 0xD19F4, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0x1158, symBinAddr: 0x31BD8, symSize: 0x3A0 } - - { offsetInCU: 0xFF0, offset: 0xD1B14, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x14F8, symBinAddr: 0x31F78, symSize: 0x398 } - - { offsetInCU: 0x1128, offset: 0xD1C4C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x1890, symBinAddr: 0x32310, symSize: 0x3B4 } - - { offsetInCU: 0x1248, offset: 0xD1D6C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So13CAPPluginCallCTg5', symObjAddr: 0x1C44, symBinAddr: 0x326C4, symSize: 0x398 } - - { offsetInCU: 0x135F, offset: 0xD1E83, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1FDC, symBinAddr: 0x32A5C, symSize: 0x40 } - - { offsetInCU: 0x1404, offset: 0xD1F28, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV5merge_8isUnique16uniquingKeysWithyqd__n_Sbq_q__q_tKXEtKSTRd__x_q_t7ElementRtd__lFSS_yps15LazyMapSequenceVySDySSypGSS_yptGTg599$s9Capacitor16PluginCallResultO18jsonRepresentation15includingFieldsSSSgSDySSypGSg_tKFypyp_yptXEfU_Tf1nncn_n', symObjAddr: 0x201C, symBinAddr: 0x32A9C, symSize: 0x264 } - - { offsetInCU: 0x158D, offset: 0xD20B1, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x2280, symBinAddr: 0x32D00, symSize: 0x138 } - - { offsetInCU: 0x1630, offset: 0xD2154, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x23B8, symBinAddr: 0x32E38, symSize: 0xAC } - - { offsetInCU: 0x1660, offset: 0xD2184, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV9mapValuesyAByxqd__Gqd__q_KXEKlFSS_ypypTg5111$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL10dictionarySDySSypGAG_tFypypXEfU_9Capacitor0ghI0OTf1cn_nTf4ng_n', symObjAddr: 0x2464, symBinAddr: 0x32EE4, symSize: 0x520 } - - { offsetInCU: 0x1885, offset: 0xD23A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCMa', symObjAddr: 0x2EE8, symBinAddr: 0x33968, symSize: 0x20 } - - { offsetInCU: 0x1899, offset: 0xD23BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwCP', symObjAddr: 0x2F08, symBinAddr: 0x33988, symSize: 0x2C } - - { offsetInCU: 0x18AD, offset: 0xD23D1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwxx', symObjAddr: 0x2F34, symBinAddr: 0x339B4, symSize: 0x8 } - - { offsetInCU: 0x18C1, offset: 0xD23E5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwcp', symObjAddr: 0x2F3C, symBinAddr: 0x339BC, symSize: 0x2C } - - { offsetInCU: 0x18D5, offset: 0xD23F9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwca', symObjAddr: 0x2F68, symBinAddr: 0x339E8, symSize: 0x38 } - - { offsetInCU: 0x18E9, offset: 0xD240D, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x2FA0, symBinAddr: 0x33A20, symSize: 0xC } - - { offsetInCU: 0x18FD, offset: 0xD2421, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwta', symObjAddr: 0x2FAC, symBinAddr: 0x33A2C, symSize: 0x30 } - - { offsetInCU: 0x1911, offset: 0xD2435, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwet', symObjAddr: 0x2FDC, symBinAddr: 0x33A5C, symSize: 0x48 } - - { offsetInCU: 0x1925, offset: 0xD2449, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwst', symObjAddr: 0x3024, symBinAddr: 0x33AA4, symSize: 0x3C } - - { offsetInCU: 0x1939, offset: 0xD245D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwug', symObjAddr: 0x3060, symBinAddr: 0x33AE0, symSize: 0x8 } - - { offsetInCU: 0x194D, offset: 0xD2471, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwup', symObjAddr: 0x3068, symBinAddr: 0x33AE8, symSize: 0x4 } - - { offsetInCU: 0x1961, offset: 0xD2485, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwui', symObjAddr: 0x306C, symBinAddr: 0x33AEC, symSize: 0x4 } - - { offsetInCU: 0x1975, offset: 0xD2499, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOMa', symObjAddr: 0x3070, symBinAddr: 0x33AF0, symSize: 0x10 } - - { offsetInCU: 0x1989, offset: 0xD24AD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOAEs0F0AAWl', symObjAddr: 0x30E0, symBinAddr: 0x33B60, symSize: 0x44 } - - { offsetInCU: 0x199D, offset: 0xD24C1, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOc', symObjAddr: 0x3224, symBinAddr: 0x33BA4, symSize: 0x48 } - - { offsetInCU: 0x19B1, offset: 0xD24D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwet', symObjAddr: 0x330C, symBinAddr: 0x33C28, symSize: 0x50 } - - { offsetInCU: 0x19C5, offset: 0xD24E9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwst', symObjAddr: 0x335C, symBinAddr: 0x33C78, symSize: 0x8C } - - { offsetInCU: 0x19D9, offset: 0xD24FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwug', symObjAddr: 0x33E8, symBinAddr: 0x33D04, symSize: 0x8 } - - { offsetInCU: 0x19ED, offset: 0xD2511, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwup', symObjAddr: 0x33F0, symBinAddr: 0x33D0C, symSize: 0x4 } - - { offsetInCU: 0x1A01, offset: 0xD2525, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwui', symObjAddr: 0x33F4, symBinAddr: 0x33D10, symSize: 0x4 } - - { offsetInCU: 0x1A15, offset: 0xD2539, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOMa', symObjAddr: 0x33F8, symBinAddr: 0x33D14, symSize: 0x10 } - - { offsetInCU: 0x1A29, offset: 0xD254D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASQWb', symObjAddr: 0x3408, symBinAddr: 0x33D24, symSize: 0x4 } - - { offsetInCU: 0x1A3D, offset: 0xD2561, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOAESQAAWl', symObjAddr: 0x340C, symBinAddr: 0x33D28, symSize: 0x44 } - - { offsetInCU: 0x1A7F, offset: 0xD25A3, size: 0x8, addend: 0x0, symName: '_$sSlsE3mapySayqd__Gqd__7ElementQzKXEKlFSayypG_ypTg5103$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL5arraySayypGAG_tFypypXEfU_9Capacitor0efG0OTf1cn_n', symObjAddr: 0x0, symBinAddr: 0x30A80, symSize: 0x40 } - - { offsetInCU: 0x1AC0, offset: 0xD25E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC, symBinAddr: 0x30B2C, symSize: 0x3C } - - { offsetInCU: 0x1B5C, offset: 0xD2680, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP7_domainSSvgTW', symObjAddr: 0xE8, symBinAddr: 0x30B68, symSize: 0x4 } - - { offsetInCU: 0x1B78, offset: 0xD269C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP5_codeSivgTW', symObjAddr: 0xEC, symBinAddr: 0x30B6C, symSize: 0x4 } - - { offsetInCU: 0x1B94, offset: 0xD26B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0xF0, symBinAddr: 0x30B70, symSize: 0x4 } - - { offsetInCU: 0x1BB0, offset: 0xD26D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xF4, symBinAddr: 0x30B74, symSize: 0x4 } - - { offsetInCU: 0x1CC1, offset: 0xD27E5, size: 0x8, addend: 0x0, symName: '_$sSlsE3mapySayqd__Gqd__7ElementQzKXEKlFSayypG_ypTg5103$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL5arraySayypGAG_tFypypXEfU_9Capacitor0efG0OTf1cn_nTf4ng_n', symObjAddr: 0x2984, symBinAddr: 0x33404, symSize: 0x3E8 } - - { offsetInCU: 0x4B, offset: 0xD2BF3, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ', symObjAddr: 0x978, symBinAddr: 0x7AFD8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0xD2C0D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ', symObjAddr: 0x980, symBinAddr: 0x7AFE0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0xD2C27, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ', symObjAddr: 0x988, symBinAddr: 0x7AFE8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0xD2C41, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ', symObjAddr: 0x990, symBinAddr: 0x7AFF0, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0xD2C5B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ', symObjAddr: 0x998, symBinAddr: 0x7AFF8, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0xD2C75, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ', symObjAddr: 0x9A0, symBinAddr: 0x7B000, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0xD2C8F, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ', symObjAddr: 0x9A8, symBinAddr: 0x7B008, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0xD2CA9, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavpZ', symObjAddr: 0x9B0, symBinAddr: 0x7B010, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0xD2CC3, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavpZ', symObjAddr: 0x9B8, symBinAddr: 0x7B018, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0xD2CDD, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavpZ', symObjAddr: 0x9C0, symBinAddr: 0x7B020, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0xD2CF7, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavpZ', symObjAddr: 0x9C8, symBinAddr: 0x7B028, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0xD2D11, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavpZ', symObjAddr: 0x9D0, symBinAddr: 0x7B030, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0xD2D2B, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavpZ', symObjAddr: 0x9D8, symBinAddr: 0x7B038, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0xD2D45, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavpZ', symObjAddr: 0x9E0, symBinAddr: 0x7B040, symSize: 0x0 } - - { offsetInCU: 0x1AB, offset: 0xD2D53, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURL_WZ', symObjAddr: 0x0, symBinAddr: 0x33D6C, symSize: 0x34 } - - { offsetInCU: 0x1C5, offset: 0xD2D6D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLink_WZ', symObjAddr: 0x50, symBinAddr: 0x33DBC, symSize: 0x34 } - - { offsetInCU: 0x1DF, offset: 0xD2D87, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivity_WZ', symObjAddr: 0xA0, symBinAddr: 0x33E0C, symSize: 0x34 } - - { offsetInCU: 0x1F9, offset: 0xD2DA1, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotifications_WZ', symObjAddr: 0xF0, symBinAddr: 0x33E5C, symSize: 0x34 } - - { offsetInCU: 0x213, offset: 0xD2DBB, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotifications_WZ', symObjAddr: 0x140, symBinAddr: 0x33EAC, symSize: 0x34 } - - { offsetInCU: 0x22D, offset: 0xD2DD5, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationAction_WZ', symObjAddr: 0x190, symBinAddr: 0x33EFC, symSize: 0x34 } - - { offsetInCU: 0x247, offset: 0xD2DEF, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTapped_WZ', symObjAddr: 0x1E0, symBinAddr: 0x33F4C, symSize: 0x34 } - - { offsetInCU: 0x2D3, offset: 0xD2E7B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO4nameSSyF', symObjAddr: 0x5A4, symBinAddr: 0x34310, symSize: 0x194 } - - { offsetInCU: 0x350, offset: 0xD2EF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfC', symObjAddr: 0x738, symBinAddr: 0x344A4, symSize: 0x14 } - - { offsetInCU: 0x36F, offset: 0xD2F17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO8rawValueSivg', symObjAddr: 0x74C, symBinAddr: 0x344B8, symSize: 0x4 } - - { offsetInCU: 0x3B2, offset: 0xD2F5A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSYAASY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x858, symBinAddr: 0x345C4, symSize: 0x20 } - - { offsetInCU: 0x3E3, offset: 0xD2F8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSYAASY8rawValue03RawD0QzvgTW', symObjAddr: 0x878, symBinAddr: 0x345E4, symSize: 0xC } - - { offsetInCU: 0x40B, offset: 0xD2FB3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASQWb', symObjAddr: 0x764, symBinAddr: 0x344D0, symSize: 0x4 } - - { offsetInCU: 0x41F, offset: 0xD2FC7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOACSQAAWl', symObjAddr: 0x768, symBinAddr: 0x344D4, symSize: 0x44 } - - { offsetInCU: 0x449, offset: 0xD2FF1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOMa', symObjAddr: 0x884, symBinAddr: 0x345F0, symSize: 0x10 } - - { offsetInCU: 0x4BC, offset: 0xD3064, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x750, symBinAddr: 0x344BC, symSize: 0x14 } - - { offsetInCU: 0x54D, offset: 0xD30F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH9hashValueSivgTW', symObjAddr: 0x7AC, symBinAddr: 0x34518, symSize: 0x44 } - - { offsetInCU: 0x5FC, offset: 0xD31A4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x7F0, symBinAddr: 0x3455C, symSize: 0x28 } - - { offsetInCU: 0x64F, offset: 0xD31F7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x818, symBinAddr: 0x34584, symSize: 0x40 } - - { offsetInCU: 0x43, offset: 0xD337A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorV4call0dC0AcA6JSCallV_AA013CAPPluginCallC0CtcfC', symObjAddr: 0x0, symBinAddr: 0x34600, symSize: 0x284 } - - { offsetInCU: 0xB3, offset: 0xD33EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCfd', symObjAddr: 0x284, symBinAddr: 0x34884, symSize: 0x8 } - - { offsetInCU: 0xE2, offset: 0xD3419, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCfD', symObjAddr: 0x28C, symBinAddr: 0x3488C, symSize: 0x10 } - - { offsetInCU: 0x112, offset: 0xD3449, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCMa', symObjAddr: 0x29C, symBinAddr: 0x3489C, symSize: 0x20 } - - { offsetInCU: 0x1B1, offset: 0xD34E8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultV11jsonPayloadSSyF', symObjAddr: 0x344, symBinAddr: 0x348C8, symSize: 0x390 } - - { offsetInCU: 0x4F9, offset: 0xD3830, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP11jsonPayloadSSyFTW', symObjAddr: 0x758, symBinAddr: 0x34CDC, symSize: 0x4 } - - { offsetInCU: 0x527, offset: 0xD385E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP10callbackIDSSvgTW', symObjAddr: 0x6D4, symBinAddr: 0x34C58, symSize: 0x2C } - - { offsetInCU: 0x56A, offset: 0xD38A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP8pluginIDSSvgTW', symObjAddr: 0x700, symBinAddr: 0x34C84, symSize: 0x2C } - - { offsetInCU: 0x5AD, offset: 0xD38E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP10methodNameSSvgTW', symObjAddr: 0x72C, symBinAddr: 0x34CB0, symSize: 0x2C } - - { offsetInCU: 0x659, offset: 0xD3990, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorV11jsonPayloadSSyF', symObjAddr: 0x75C, symBinAddr: 0x34CE0, symSize: 0x640 } - - { offsetInCU: 0xB2E, offset: 0xD3E65, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP11jsonPayloadSSyFTW', symObjAddr: 0xE20, symBinAddr: 0x353A4, symSize: 0x4 } - - { offsetInCU: 0xB5C, offset: 0xD3E93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP10callbackIDSSvgTW', symObjAddr: 0xD9C, symBinAddr: 0x35320, symSize: 0x2C } - - { offsetInCU: 0xB9F, offset: 0xD3ED6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP8pluginIDSSvgTW', symObjAddr: 0xDC8, symBinAddr: 0x3534C, symSize: 0x2C } - - { offsetInCU: 0xBE2, offset: 0xD3F19, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP10methodNameSSvgTW', symObjAddr: 0xDF4, symBinAddr: 0x35378, symSize: 0x2C } - - { offsetInCU: 0xC14, offset: 0xD3F4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwxx', symObjAddr: 0xEB8, symBinAddr: 0x353A8, symSize: 0x40 } - - { offsetInCU: 0xC28, offset: 0xD3F5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwcp', symObjAddr: 0xEF8, symBinAddr: 0x353E8, symSize: 0x74 } - - { offsetInCU: 0xC3C, offset: 0xD3F73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwca', symObjAddr: 0xF6C, symBinAddr: 0x3545C, symSize: 0xBC } - - { offsetInCU: 0xC50, offset: 0xD3F87, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x1028, symBinAddr: 0x35518, symSize: 0x14 } - - { offsetInCU: 0xC64, offset: 0xD3F9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwta', symObjAddr: 0x103C, symBinAddr: 0x3552C, symSize: 0x74 } - - { offsetInCU: 0xC78, offset: 0xD3FAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwet', symObjAddr: 0x10B0, symBinAddr: 0x355A0, symSize: 0x48 } - - { offsetInCU: 0xC8C, offset: 0xD3FC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwst', symObjAddr: 0x10F8, symBinAddr: 0x355E8, symSize: 0x50 } - - { offsetInCU: 0xCA0, offset: 0xD3FD7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVMa', symObjAddr: 0x1148, symBinAddr: 0x35638, symSize: 0x10 } - - { offsetInCU: 0xCB4, offset: 0xD3FEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwCP', symObjAddr: 0x1158, symBinAddr: 0x35648, symSize: 0x30 } - - { offsetInCU: 0xCC8, offset: 0xD3FFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwxx', symObjAddr: 0x1188, symBinAddr: 0x35678, symSize: 0x58 } - - { offsetInCU: 0xCDC, offset: 0xD4013, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwcp', symObjAddr: 0x11E0, symBinAddr: 0x356D0, symSize: 0xAC } - - { offsetInCU: 0xCF0, offset: 0xD4027, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwca', symObjAddr: 0x128C, symBinAddr: 0x3577C, symSize: 0x11C } - - { offsetInCU: 0xD04, offset: 0xD403B, size: 0x8, addend: 0x0, symName: ___swift_memcpy112_8, symObjAddr: 0x13A8, symBinAddr: 0x35898, symSize: 0x24 } - - { offsetInCU: 0xD18, offset: 0xD404F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwta', symObjAddr: 0x13CC, symBinAddr: 0x358BC, symSize: 0xA4 } - - { offsetInCU: 0xD2C, offset: 0xD4063, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwet', symObjAddr: 0x1470, symBinAddr: 0x35960, symSize: 0x48 } - - { offsetInCU: 0xD40, offset: 0xD4077, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwst', symObjAddr: 0x14B8, symBinAddr: 0x359A8, symSize: 0x5C } - - { offsetInCU: 0xD54, offset: 0xD408B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVMa', symObjAddr: 0x1514, symBinAddr: 0x35A04, symSize: 0x10 } - - { offsetInCU: 0xD68, offset: 0xD409F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwxx', symObjAddr: 0x15B8, symBinAddr: 0x35A38, symSize: 0x38 } - - { offsetInCU: 0xD7C, offset: 0xD40B3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwcp', symObjAddr: 0x15F0, symBinAddr: 0x35A70, symSize: 0x64 } - - { offsetInCU: 0xD90, offset: 0xD40C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwca', symObjAddr: 0x1654, symBinAddr: 0x35AD4, symSize: 0xA4 } - - { offsetInCU: 0xDA4, offset: 0xD40DB, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x16F8, symBinAddr: 0x35B78, symSize: 0x1C } - - { offsetInCU: 0xDB8, offset: 0xD40EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwta', symObjAddr: 0x1714, symBinAddr: 0x35B94, symSize: 0x64 } - - { offsetInCU: 0xDCC, offset: 0xD4103, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwet', symObjAddr: 0x1778, symBinAddr: 0x35BF8, symSize: 0x48 } - - { offsetInCU: 0xDE0, offset: 0xD4117, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwst', symObjAddr: 0x17C0, symBinAddr: 0x35C40, symSize: 0x4C } - - { offsetInCU: 0xDF4, offset: 0xD412B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVMa', symObjAddr: 0x180C, symBinAddr: 0x35C8C, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0xD4342, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TR', symObjAddr: 0x0, symBinAddr: 0x35CA4, symSize: 0x8 } - - { offsetInCU: 0x63, offset: 0xD4362, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfC', symObjAddr: 0x8, symBinAddr: 0x35CAC, symSize: 0x20 } - - { offsetInCU: 0x81, offset: 0xD4380, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC30handleApplicationNotificationsSbvs', symObjAddr: 0x28, symBinAddr: 0x35CCC, symSize: 0xA4 } - - { offsetInCU: 0xD5, offset: 0xD43D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM', symObjAddr: 0x140, symBinAddr: 0x35DA4, symSize: 0x70 } - - { offsetInCU: 0x104, offset: 0xD4403, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM', symObjAddr: 0x3B0, symBinAddr: 0x36014, symSize: 0x70 } - - { offsetInCU: 0x16F, offset: 0xD446E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF', symObjAddr: 0x480, symBinAddr: 0x360E4, symSize: 0x11C } - - { offsetInCU: 0x206, offset: 0xD4505, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF', symObjAddr: 0x5A8, symBinAddr: 0x3620C, symSize: 0x130 } - - { offsetInCU: 0x29D, offset: 0xD459C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfc', symObjAddr: 0x78C, symBinAddr: 0x363F0, symSize: 0x58 } - - { offsetInCU: 0x2D8, offset: 0xD45D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfcTo', symObjAddr: 0x7E4, symBinAddr: 0x36448, symSize: 0x64 } - - { offsetInCU: 0x313, offset: 0xD4612, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCfD', symObjAddr: 0x848, symBinAddr: 0x364AC, symSize: 0x30 } - - { offsetInCU: 0x340, offset: 0xD463F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF06$sSo33lmN16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4dnng_n', symObjAddr: 0xAA4, symBinAddr: 0x36708, symSize: 0x11C } - - { offsetInCU: 0x3CE, offset: 0xD46CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_nTf4dnng_n', symObjAddr: 0xBC0, symBinAddr: 0x36824, symSize: 0x130 } - - { offsetInCU: 0x45D, offset: 0xD475C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCfETo', symObjAddr: 0x878, symBinAddr: 0x364DC, symSize: 0x38 } - - { offsetInCU: 0x48C, offset: 0xD478B, size: 0x8, addend: 0x0, symName: '_$sSo25UNPushNotificationTriggerCMa', symObjAddr: 0x8B0, symBinAddr: 0x36514, symSize: 0x3C } - - { offsetInCU: 0x4A0, offset: 0xD479F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCMa', symObjAddr: 0x8EC, symBinAddr: 0x36550, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0xD47C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor27NotificationHandlerProtocol_pSgXwWOh', symObjAddr: 0xCF0, symBinAddr: 0x36954, symSize: 0x24 } - - { offsetInCU: 0x4B, offset: 0xD4981, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvpZ', symObjAddr: 0x1948, symBinAddr: 0x7B138, symSize: 0x0 } - - { offsetInCU: 0x59, offset: 0xD498F, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg', symObjAddr: 0x0, symBinAddr: 0x36978, symSize: 0x94 } - - { offsetInCU: 0x135, offset: 0xD4A6B, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSValueContainerA2cDP15jsDateFormatterSo09NSISO8601gH0CvgZTW', symObjAddr: 0x4B4, symBinAddr: 0x36E2C, symSize: 0x68 } - - { offsetInCU: 0x174, offset: 0xD4AAA, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZ', symObjAddr: 0x51C, symBinAddr: 0x36E94, symSize: 0x68 } - - { offsetInCU: 0x1B9, offset: 0xD4AEF, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSValueContainerA2cDP22jsObjectRepresentationSDySSAC0D0_pGvgTW', symObjAddr: 0x584, symBinAddr: 0x36EFC, symSize: 0x94 } - - { offsetInCU: 0x217, offset: 0xD4B4D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvgTo', symObjAddr: 0x618, symBinAddr: 0x36F90, symSize: 0x4C } - - { offsetInCU: 0x257, offset: 0xD4B8D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvg', symObjAddr: 0x664, symBinAddr: 0x36FDC, symSize: 0x30 } - - { offsetInCU: 0x298, offset: 0xD4BCE, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatter_WZ', symObjAddr: 0x694, symBinAddr: 0x3700C, symSize: 0x30 } - - { offsetInCU: 0x2F3, offset: 0xD4C29, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZTo', symObjAddr: 0x6C4, symBinAddr: 0x3703C, symSize: 0x6C } - - { offsetInCU: 0x32A, offset: 0xD4C60, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZ', symObjAddr: 0x730, symBinAddr: 0x370A8, symSize: 0x74 } - - { offsetInCU: 0x385, offset: 0xD4CBB, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZTo', symObjAddr: 0x7A4, symBinAddr: 0x3711C, symSize: 0x7C } - - { offsetInCU: 0x3C6, offset: 0xD4CFC, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ', symObjAddr: 0x820, symBinAddr: 0x37198, symSize: 0x6C } - - { offsetInCU: 0x3FD, offset: 0xD4D33, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ.resume.0', symObjAddr: 0x88C, symBinAddr: 0x37204, symSize: 0x4 } - - { offsetInCU: 0x428, offset: 0xD4D5E, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSF', symObjAddr: 0x890, symBinAddr: 0x37208, symSize: 0x178 } - - { offsetInCU: 0x4C9, offset: 0xD4DFF, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSFTo', symObjAddr: 0xA08, symBinAddr: 0x37380, symSize: 0x64 } - - { offsetInCU: 0x58F, offset: 0xD4EC5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7successyyF', symObjAddr: 0xA6C, symBinAddr: 0x373E4, symSize: 0xB8 } - - { offsetInCU: 0x658, offset: 0xD4F8E, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7successyyFTo', symObjAddr: 0xB24, symBinAddr: 0x3749C, symSize: 0xC4 } - - { offsetInCU: 0x70F, offset: 0xD5045, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7resolveyyF', symObjAddr: 0xBF0, symBinAddr: 0x37568, symSize: 0xA8 } - - { offsetInCU: 0x7AC, offset: 0xD50E2, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7resolveyyFTo', symObjAddr: 0xC98, symBinAddr: 0x37610, symSize: 0xB4 } - - { offsetInCU: 0x86A, offset: 0xD51A0, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtF', symObjAddr: 0xF08, symBinAddr: 0x37880, symSize: 0xE0 } - - { offsetInCU: 0x936, offset: 0xD526C, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtFTo', symObjAddr: 0xFE8, symBinAddr: 0x37960, symSize: 0x154 } - - { offsetInCU: 0x9D6, offset: 0xD530C, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtF', symObjAddr: 0x113C, symBinAddr: 0x37AB4, symSize: 0x100 } - - { offsetInCU: 0xAB8, offset: 0xD53EE, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtFTo', symObjAddr: 0x123C, symBinAddr: 0x37BB4, symSize: 0x19C } - - { offsetInCU: 0xB62, offset: 0xD5498, size: 0x8, addend: 0x0, symName: '_$sSo6NSNullCMa', symObjAddr: 0x180C, symBinAddr: 0x38100, symSize: 0x3C } - - { offsetInCU: 0xB76, offset: 0xD54AC, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x18E8, symBinAddr: 0x3813C, symSize: 0x20 } - - { offsetInCU: 0xC33, offset: 0xD5569, size: 0x8, addend: 0x0, symName: '_$ss30_dictionaryDownCastConditionalySDyq0_q1_GSgSDyxq_GSHRzSHR0_r2_lFs11AnyHashableV_ypSS9Capacitor7JSValue_pTg5', symObjAddr: 0x94, symBinAddr: 0x36A0C, symSize: 0x420 } - - { offsetInCU: 0xBE, offset: 0xD595D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg', symObjAddr: 0x0, symBinAddr: 0x38198, symSize: 0x80 } - - { offsetInCU: 0x122, offset: 0xD59C1, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9Capacitor0C9ExtensionA2cDP9capacitor0C4TypeQzmvgZTW', symObjAddr: 0x80, symBinAddr: 0x38218, symSize: 0xC } - - { offsetInCU: 0x13E, offset: 0xD59DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ', symObjAddr: 0x8C, symBinAddr: 0x38224, symSize: 0x4 } - - { offsetInCU: 0x197, offset: 0xD5A36, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9Capacitor0C9ExtensionA2dEP9capacitor0C4TypeQzvgTW', symObjAddr: 0x90, symBinAddr: 0x38228, symSize: 0xC } - - { offsetInCU: 0x1F4, offset: 0xD5A93, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9Capacitor0C9ExtensionA2dEP9capacitor0C4TypeQzmvgZTW', symObjAddr: 0x9C, symBinAddr: 0x38234, symSize: 0xC } - - { offsetInCU: 0x234, offset: 0xD5AD3, size: 0x8, addend: 0x0, symName: '_$sSo7UIColorC9Capacitor0B9ExtensionA2cDP9capacitor0B4TypeQzvgTW', symObjAddr: 0xA8, symBinAddr: 0x38240, symSize: 0xC } - - { offsetInCU: 0x28D, offset: 0xD5B2C, size: 0x8, addend: 0x0, symName: '_$sSo7UIColorC9Capacitor0B9ExtensionA2cDP9capacitor0B4TypeQzmvgZTW', symObjAddr: 0xB4, symBinAddr: 0x3824C, symSize: 0xC } - - { offsetInCU: 0x2A9, offset: 0xD5B48, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMi', symObjAddr: 0xE8, symBinAddr: 0x38268, symSize: 0x8 } - - { offsetInCU: 0x2BD, offset: 0xD5B5C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMr', symObjAddr: 0xF0, symBinAddr: 0x38270, symSize: 0x6C } - - { offsetInCU: 0x2D1, offset: 0xD5B70, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwCP', symObjAddr: 0x15C, symBinAddr: 0x382DC, symSize: 0x70 } - - { offsetInCU: 0x2E5, offset: 0xD5B84, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwxx', symObjAddr: 0x1CC, symBinAddr: 0x3834C, symSize: 0x10 } - - { offsetInCU: 0x2F9, offset: 0xD5B98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwcp', symObjAddr: 0x1DC, symBinAddr: 0x3835C, symSize: 0x30 } - - { offsetInCU: 0x30D, offset: 0xD5BAC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwca', symObjAddr: 0x20C, symBinAddr: 0x3838C, symSize: 0x30 } - - { offsetInCU: 0x321, offset: 0xD5BC0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwtk', symObjAddr: 0x23C, symBinAddr: 0x383BC, symSize: 0x30 } - - { offsetInCU: 0x335, offset: 0xD5BD4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwta', symObjAddr: 0x26C, symBinAddr: 0x383EC, symSize: 0x30 } - - { offsetInCU: 0x349, offset: 0xD5BE8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwet', symObjAddr: 0x29C, symBinAddr: 0x3841C, symSize: 0x10C } - - { offsetInCU: 0x35D, offset: 0xD5BFC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwst', symObjAddr: 0x3A8, symBinAddr: 0x38528, symSize: 0x1B8 } - - { offsetInCU: 0x371, offset: 0xD5C10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMa', symObjAddr: 0x560, symBinAddr: 0x386E0, symSize: 0xC } - - { offsetInCU: 0x385, offset: 0xD5C24, size: 0x8, addend: 0x0, symName: '_$sSayxG9Capacitor0A9ExtensionA2bCP9capacitor0A4TypeQzvgTW', symObjAddr: 0x56C, symBinAddr: 0x386EC, symSize: 0x14 } - - { offsetInCU: 0x3A1, offset: 0xD5C40, size: 0x8, addend: 0x0, symName: '_$sSayxG9Capacitor0A9ExtensionA2bCP9capacitor0A4TypeQzmvgZTW', symObjAddr: 0x580, symBinAddr: 0x38700, symSize: 0xC } - - { offsetInCU: 0x3BD, offset: 0xD5C5C, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x61C, symBinAddr: 0x3870C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0xD5E0C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7defaultACvpZ', symObjAddr: 0x6268, symBinAddr: 0x7B1E8, symSize: 0x0 } - - { offsetInCU: 0x8E, offset: 0xD5E4F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7defaultACvgZ', symObjAddr: 0x1A08, symBinAddr: 0x3A154, symSize: 0x50 } - - { offsetInCU: 0xC6, offset: 0xD5E87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO6stringACSSSg_tcfC', symObjAddr: 0x1A58, symBinAddr: 0x3A1A4, symSize: 0xBC } - - { offsetInCU: 0x169, offset: 0xD5F2A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO8rawValueACSgSS_tcfC', symObjAddr: 0x1B14, symBinAddr: 0x3A260, symSize: 0x6C } - - { offsetInCU: 0x194, offset: 0xD5F55, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO8rawValueSSvg', symObjAddr: 0x1BC0, symBinAddr: 0x3A2CC, symSize: 0x24 } - - { offsetInCU: 0x1AF, offset: 0xD5F70, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x1C08, symBinAddr: 0x3A314, symSize: 0xC } - - { offsetInCU: 0x1CB, offset: 0xD5F8C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x1C14, symBinAddr: 0x3A320, symSize: 0x24 } - - { offsetInCU: 0x218, offset: 0xD5FD9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x0, symBinAddr: 0x3874C, symSize: 0x18C } - - { offsetInCU: 0x3E8, offset: 0xD61A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x14E8, symBinAddr: 0x39C34, symSize: 0x190 } - - { offsetInCU: 0x484, offset: 0xD6245, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x1678, symBinAddr: 0x39DC4, symSize: 0x190 } - - { offsetInCU: 0x578, offset: 0xD6339, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7default_WZ', symObjAddr: 0x19F8, symBinAddr: 0x3A144, symSize: 0x10 } - - { offsetInCU: 0x5E5, offset: 0xD63A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg', symObjAddr: 0x1CF8, symBinAddr: 0x3A404, symSize: 0x58 } - - { offsetInCU: 0x604, offset: 0xD63C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs', symObjAddr: 0x1D50, symBinAddr: 0x3A45C, symSize: 0x68 } - - { offsetInCU: 0x62D, offset: 0xD63EE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM', symObjAddr: 0x1E00, symBinAddr: 0x3A4C4, symSize: 0x44 } - - { offsetInCU: 0x65C, offset: 0xD641D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM.resume.0', symObjAddr: 0x1E44, symBinAddr: 0x3A508, symSize: 0x4 } - - { offsetInCU: 0x6CF, offset: 0xD6490, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg', symObjAddr: 0x1F04, symBinAddr: 0x3A5C8, symSize: 0x54 } - - { offsetInCU: 0x6EE, offset: 0xD64AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs', symObjAddr: 0x1F58, symBinAddr: 0x3A61C, symSize: 0x5C } - - { offsetInCU: 0x717, offset: 0xD64D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM', symObjAddr: 0x1FB4, symBinAddr: 0x3A678, symSize: 0x44 } - - { offsetInCU: 0x770, offset: 0xD6531, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg', symObjAddr: 0x2060, symBinAddr: 0x3A724, symSize: 0x48 } - - { offsetInCU: 0x78F, offset: 0xD6550, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs', symObjAddr: 0x20A8, symBinAddr: 0x3A76C, symSize: 0x50 } - - { offsetInCU: 0x7B8, offset: 0xD6579, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM', symObjAddr: 0x20F8, symBinAddr: 0x3A7BC, symSize: 0x44 } - - { offsetInCU: 0x7E7, offset: 0xD65A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg', symObjAddr: 0x213C, symBinAddr: 0x3A800, symSize: 0x50 } - - { offsetInCU: 0x816, offset: 0xD65D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs', symObjAddr: 0x218C, symBinAddr: 0x3A850, symSize: 0x50 } - - { offsetInCU: 0x855, offset: 0xD6616, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM', symObjAddr: 0x21DC, symBinAddr: 0x3A8A0, symSize: 0x44 } - - { offsetInCU: 0x8A2, offset: 0xD6663, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfC', symObjAddr: 0x2220, symBinAddr: 0x3A8E4, symSize: 0x88 } - - { offsetInCU: 0x8D5, offset: 0xD6696, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc', symObjAddr: 0x22A8, symBinAddr: 0x3A96C, symSize: 0x74 } - - { offsetInCU: 0x8F4, offset: 0xD66B5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF', symObjAddr: 0x231C, symBinAddr: 0x3A9E0, symSize: 0x24 } - - { offsetInCU: 0x908, offset: 0xD66C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF', symObjAddr: 0x2340, symBinAddr: 0x3AA04, symSize: 0x78 } - - { offsetInCU: 0x959, offset: 0xD671A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF', symObjAddr: 0x23B8, symBinAddr: 0x3AA7C, symSize: 0x9D8 } - - { offsetInCU: 0xE1A, offset: 0xD6BDB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF', symObjAddr: 0x2F60, symBinAddr: 0x3B624, symSize: 0x150 } - - { offsetInCU: 0xECA, offset: 0xD6C8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF', symObjAddr: 0x30B0, symBinAddr: 0x3B774, symSize: 0x24 } - - { offsetInCU: 0xEFC, offset: 0xD6CBD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCfd', symObjAddr: 0x30D4, symBinAddr: 0x3B798, symSize: 0x60 } - - { offsetInCU: 0xF37, offset: 0xD6CF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCfD', symObjAddr: 0x3134, symBinAddr: 0x3B7F8, symSize: 0x6C } - - { offsetInCU: 0xFE9, offset: 0xD6DAA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKFTf4nn_g', symObjAddr: 0x4560, symBinAddr: 0x3CC24, symSize: 0x290 } - - { offsetInCU: 0x10B7, offset: 0xD6E78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ', symObjAddr: 0x31A0, symBinAddr: 0x3B864, symSize: 0x4 } - - { offsetInCU: 0x10CB, offset: 0xD6E8C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ', symObjAddr: 0x31A4, symBinAddr: 0x3B868, symSize: 0x4 } - - { offsetInCU: 0x10DF, offset: 0xD6EA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ', symObjAddr: 0x31A8, symBinAddr: 0x3B86C, symSize: 0xD64 } - - { offsetInCU: 0x1538, offset: 0xD72F9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0x3F0C, symBinAddr: 0x3C5D0, symSize: 0x2B8 } - - { offsetInCU: 0x1671, offset: 0xD7432, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCfd', symObjAddr: 0x4290, symBinAddr: 0x3C954, symSize: 0x8 } - - { offsetInCU: 0x16A0, offset: 0xD7461, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCfD', symObjAddr: 0x4298, symBinAddr: 0x3C95C, symSize: 0x10 } - - { offsetInCU: 0x16CF, offset: 0xD7490, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZTf4nnd_n', symObjAddr: 0x483C, symBinAddr: 0x3CEB4, symSize: 0x3C8 } - - { offsetInCU: 0x1A41, offset: 0xD7802, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZTf4nnnd_n', symObjAddr: 0x4C04, symBinAddr: 0x3D27C, symSize: 0xC14 } - - { offsetInCU: 0x1EFC, offset: 0xD7CBD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvpAETk', symObjAddr: 0x1C38, symBinAddr: 0x3A344, symSize: 0xC0 } - - { offsetInCU: 0x1F33, offset: 0xD7CF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvpAETK', symObjAddr: 0x1E48, symBinAddr: 0x3A50C, symSize: 0x54 } - - { offsetInCU: 0x1F60, offset: 0xD7D21, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvpAETk', symObjAddr: 0x1E9C, symBinAddr: 0x3A560, symSize: 0x68 } - - { offsetInCU: 0x1F98, offset: 0xD7D59, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvpAETk', symObjAddr: 0x1FF8, symBinAddr: 0x3A6BC, symSize: 0x68 } - - { offsetInCU: 0x2335, offset: 0xD80F6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x41C4, symBinAddr: 0x3C888, symSize: 0xCC } - - { offsetInCU: 0x234D, offset: 0xD810E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tgq5', symObjAddr: 0x42A8, symBinAddr: 0x3C96C, symSize: 0x64 } - - { offsetInCU: 0x2365, offset: 0xD8126, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tgq5', symObjAddr: 0x430C, symBinAddr: 0x3C9D0, symSize: 0x144 } - - { offsetInCU: 0x23AD, offset: 0xD816E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgq5Tf4gd_n', symObjAddr: 0x4450, symBinAddr: 0x3CB14, symSize: 0x110 } - - { offsetInCU: 0x24F7, offset: 0xD82B8, size: 0x8, addend: 0x0, symName: '_$s10Foundation8URLErrorVAcA21_BridgedStoredNSErrorAAWl', symObjAddr: 0x5878, symBinAddr: 0x3DEF0, symSize: 0x48 } - - { offsetInCU: 0x250B, offset: 0xD82CC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMa', symObjAddr: 0x5904, symBinAddr: 0x3DF38, symSize: 0x3C } - - { offsetInCU: 0x251F, offset: 0xD82E0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x59B0, symBinAddr: 0x3DFB0, symSize: 0x2C } - - { offsetInCU: 0x2533, offset: 0xD82F4, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x59DC, symBinAddr: 0x3DFDC, symSize: 0x10 } - - { offsetInCU: 0x2547, offset: 0xD8308, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x59EC, symBinAddr: 0x3DFEC, symSize: 0x8 } - - { offsetInCU: 0x255B, offset: 0xD831C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASQWb', symObjAddr: 0x5A2C, symBinAddr: 0x3E014, symSize: 0x4 } - - { offsetInCU: 0x256F, offset: 0xD8330, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOACSQAAWl', symObjAddr: 0x5A30, symBinAddr: 0x3E018, symSize: 0x44 } - - { offsetInCU: 0x2583, offset: 0xD8344, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwet', symObjAddr: 0x5BB4, symBinAddr: 0x3E18C, symSize: 0x90 } - - { offsetInCU: 0x2597, offset: 0xD8358, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwst', symObjAddr: 0x5C44, symBinAddr: 0x3E21C, symSize: 0xBC } - - { offsetInCU: 0x25AB, offset: 0xD836C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwug', symObjAddr: 0x5D00, symBinAddr: 0x3E2D8, symSize: 0x8 } - - { offsetInCU: 0x25BF, offset: 0xD8380, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwup', symObjAddr: 0x5D08, symBinAddr: 0x3E2E0, symSize: 0x4 } - - { offsetInCU: 0x25D3, offset: 0xD8394, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwui', symObjAddr: 0x5D0C, symBinAddr: 0x3E2E4, symSize: 0x8 } - - { offsetInCU: 0x25E7, offset: 0xD83A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOMa', symObjAddr: 0x5D14, symBinAddr: 0x3E2EC, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0xD83BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCMa', symObjAddr: 0x5D24, symBinAddr: 0x3E2FC, symSize: 0x20 } - - { offsetInCU: 0x260F, offset: 0xD83D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMU', symObjAddr: 0x5D50, symBinAddr: 0x3E328, symSize: 0x8 } - - { offsetInCU: 0x2623, offset: 0xD83E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMr', symObjAddr: 0x5D58, symBinAddr: 0x3E330, symSize: 0x80 } - - { offsetInCU: 0x2637, offset: 0xD83F8, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgMa', symObjAddr: 0x5EC8, symBinAddr: 0x3E4A0, symSize: 0x54 } - - { offsetInCU: 0x26BE, offset: 0xD847F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_S2SypTg5', symObjAddr: 0x18C, symBinAddr: 0x388D8, symSize: 0x37C } - - { offsetInCU: 0x281A, offset: 0xD85DB, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_SayypGSSypTg5', symObjAddr: 0x508, symBinAddr: 0x38C54, symSize: 0x37C } - - { offsetInCU: 0x298E, offset: 0xD874F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x884, symBinAddr: 0x38FD0, symSize: 0x408 } - - { offsetInCU: 0x2AD6, offset: 0xD8897, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_9Capacitor7JSValue_ps11AnyHashableVypTg5', symObjAddr: 0xC8C, symBinAddr: 0x393D8, symSize: 0x43C } - - { offsetInCU: 0x2C09, offset: 0xD89CA, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_9Capacitor7JSValue_pSSypTg5', symObjAddr: 0x10C8, symBinAddr: 0x39814, symSize: 0x39C } - - { offsetInCU: 0x2D5F, offset: 0xD8B20, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1464, symBinAddr: 0x39BB0, symSize: 0x84 } - - { offsetInCU: 0x2DEC, offset: 0xD8BAD, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x1808, symBinAddr: 0x39F54, symSize: 0xE4 } - - { offsetInCU: 0x2ECF, offset: 0xD8C90, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x18EC, symBinAddr: 0x3A038, symSize: 0x68 } - - { offsetInCU: 0x2F6D, offset: 0xD8D2E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1954, symBinAddr: 0x3A0A0, symSize: 0x40 } - - { offsetInCU: 0x2FCA, offset: 0xD8D8B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1994, symBinAddr: 0x3A0E0, symSize: 0x64 } - - { offsetInCU: 0x3046, offset: 0xD8E07, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BE4, symBinAddr: 0x3A2F0, symSize: 0xC } - - { offsetInCU: 0x3062, offset: 0xD8E23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1BF0, symBinAddr: 0x3A2FC, symSize: 0x8 } - - { offsetInCU: 0x307E, offset: 0xD8E3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x3A304, symSize: 0x8 } - - { offsetInCU: 0x3092, offset: 0xD8E53, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C00, symBinAddr: 0x3A30C, symSize: 0x8 } - - { offsetInCU: 0x3194, offset: 0xD8F55, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lF9Capacitor18PluginHeaderMethodV_SayAGGTg5', symObjAddr: 0x2D90, symBinAddr: 0x3B454, symSize: 0xDC } - - { offsetInCU: 0x33A5, offset: 0xD9166, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lF10Foundation12URLQueryItemV_SayAGGTg5', symObjAddr: 0x2E6C, symBinAddr: 0x3B530, symSize: 0xF4 } - - { offsetInCU: 0x27, offset: 0xD97B4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF', symObjAddr: 0x0, symBinAddr: 0x3E5C4, symSize: 0x17C } - - { offsetInCU: 0x81, offset: 0xD980E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF', symObjAddr: 0x0, symBinAddr: 0x3E5C4, symSize: 0x17C } - - { offsetInCU: 0x25E, offset: 0xD99EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF', symObjAddr: 0x17C, symBinAddr: 0x3E740, symSize: 0x8 } - - { offsetInCU: 0x2BE, offset: 0xD9A4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF', symObjAddr: 0x184, symBinAddr: 0x3E748, symSize: 0x188 } - - { offsetInCU: 0x4F4, offset: 0xD9C81, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOb', symObjAddr: 0x3EC, symBinAddr: 0x3E8D0, symSize: 0x48 } - - { offsetInCU: 0x508, offset: 0xD9C95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOc', symObjAddr: 0x434, symBinAddr: 0x3E918, symSize: 0x48 } - - { offsetInCU: 0x51C, offset: 0xD9CA9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOh', symObjAddr: 0x47C, symBinAddr: 0x3E960, symSize: 0x40 } - - { offsetInCU: 0x4F, offset: 0xD9E98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24catchallOptionsParameterSSvpZ', symObjAddr: 0x13FB0, symBinAddr: 0x7DB40, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xD9EB2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC17callbackParameterSSvpZ', symObjAddr: 0x13FC0, symBinAddr: 0x7DB50, symSize: 0x0 } - - { offsetInCU: 0xDB, offset: 0xD9F24, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC14exportBridgeJS21userContentControllerySo06WKUsergH0C_tKFZ', symObjAddr: 0x0, symBinAddr: 0x3E9A4, symSize: 0x3C8 } - - { offsetInCU: 0x250, offset: 0xDA099, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC22exportCordovaPluginsJS21userContentControllerySo06WKUserhI0C_tKFZ', symObjAddr: 0x3C8, symBinAddr: 0x3ED6C, symSize: 0x210 } - - { offsetInCU: 0x2AC, offset: 0xDA0F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC20injectFilesForFolder6folder21userContentControllery10Foundation3URLV_So06WKUseriJ0CtFZ', symObjAddr: 0xB8C, symBinAddr: 0x3F530, symSize: 0x544 } - - { offsetInCU: 0x58B, offset: 0xDA3D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportCfD', symObjAddr: 0x10D0, symBinAddr: 0x3FA74, symSize: 0x10 } - - { offsetInCU: 0x5BA, offset: 0xDA403, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC06exportA8GlobalJS21userContentController7isDebug14loggingEnabled8localUrlySo06WKUsergH0C_S2bSStKFZTf4nnnnd_n', symObjAddr: 0x1180, symBinAddr: 0x3FAA4, symSize: 0x1B8 } - - { offsetInCU: 0x7F1, offset: 0xDA63A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC10injectFile7fileURL21userContentControllery10Foundation0F0V_So06WKUserhI0CtKFZTf4nnd_n', symObjAddr: 0x1338, symBinAddr: 0x3FC5C, symSize: 0x1B0 } - - { offsetInCU: 0x933, offset: 0xDA77C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC14generateMethod33_35B4C07ABE18CB14DB9A3F920E64F657LL15pluginClassName6methodS2S_So09CAPPluginD0CtFZTf4nnd_n', symObjAddr: 0x14E8, symBinAddr: 0x3FE0C, symSize: 0x880 } - - { offsetInCU: 0x14D1, offset: 0xDB31A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24createPluginHeaderMethod33_35B4C07ABE18CB14DB9A3F920E64F657LL6methodAA0deF0VSo09CAPPluginF0C_tFZTf4nd_n', symObjAddr: 0x1D68, symBinAddr: 0x4068C, symSize: 0xF0 } - - { offsetInCU: 0x158F, offset: 0xDB3D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC18createPluginHeader33_35B4C07ABE18CB14DB9A3F920E64F657LL3forAA0dE0VSgSo010CAPBridgedD0_So9CAPPluginCXc_tFZTf4nd_n', symObjAddr: 0x1E58, symBinAddr: 0x4077C, symSize: 0x2F0 } - - { offsetInCU: 0x185E, offset: 0xDB6A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC8exportJS3for2inySo16CAPBridgedPlugin_So9CAPPluginCXc_So23WKUserContentControllerCtFZTf4nnd_n', symObjAddr: 0x2148, symBinAddr: 0x40A6C, symSize: 0x60C } - - { offsetInCU: 0x1F00, offset: 0xDBD49, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC15exportCordovaJS21userContentControllerySo06WKUsergH0C_tKFZTf4nd_n', symObjAddr: 0x2754, symBinAddr: 0x41078, symSize: 0x66C } - - { offsetInCU: 0x214F, offset: 0xDBF98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueSSvg', symObjAddr: 0x5D8, symBinAddr: 0x3EF7C, symSize: 0x2C } - - { offsetInCU: 0x2176, offset: 0xDBFBF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x60C, symBinAddr: 0x3EFB0, symSize: 0x8 } - - { offsetInCU: 0x21A1, offset: 0xDBFEA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x614, symBinAddr: 0x3EFB8, symSize: 0x24 } - - { offsetInCU: 0x21D2, offset: 0xDC01B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x638, symBinAddr: 0x3EFDC, symSize: 0xC } - - { offsetInCU: 0x21EE, offset: 0xDC037, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x349C, symBinAddr: 0x41CB4, symSize: 0xD0 } - - { offsetInCU: 0x2234, offset: 0xDC07D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV6encode2toys7Encoder_p_tKF', symObjAddr: 0x694, symBinAddr: 0x3F038, symSize: 0x128 } - - { offsetInCU: 0x2289, offset: 0xDC0D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x950, symBinAddr: 0x3F2F4, symSize: 0x2C } - - { offsetInCU: 0x22C0, offset: 0xDC109, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x97C, symBinAddr: 0x3F320, symSize: 0x1C } - - { offsetInCU: 0x22E3, offset: 0xDC12C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x356C, symBinAddr: 0x41D84, symSize: 0x1B0 } - - { offsetInCU: 0x2333, offset: 0xDC17C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueSSvg', symObjAddr: 0x7BC, symBinAddr: 0x3F160, symSize: 0x30 } - - { offsetInCU: 0x237E, offset: 0xDC1C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x998, symBinAddr: 0x3F33C, symSize: 0x18 } - - { offsetInCU: 0x23E6, offset: 0xDC22F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x9F8, symBinAddr: 0x3F39C, symSize: 0x28 } - - { offsetInCU: 0x2460, offset: 0xDC2A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xA64, symBinAddr: 0x3F408, symSize: 0x8 } - - { offsetInCU: 0x248B, offset: 0xDC2D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xA6C, symBinAddr: 0x3F410, symSize: 0x24 } - - { offsetInCU: 0x24BC, offset: 0xDC305, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xA90, symBinAddr: 0x3F434, symSize: 0xC } - - { offsetInCU: 0x24D8, offset: 0xDC321, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xA9C, symBinAddr: 0x3F440, symSize: 0xC } - - { offsetInCU: 0x24F4, offset: 0xDC33D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3780, symBinAddr: 0x41F78, symSize: 0xD8 } - - { offsetInCU: 0x253A, offset: 0xDC383, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7EC, symBinAddr: 0x3F190, symSize: 0x164 } - - { offsetInCU: 0x258F, offset: 0xDC3D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xAF8, symBinAddr: 0x3F49C, symSize: 0x2C } - - { offsetInCU: 0x25C6, offset: 0xDC40F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xB24, symBinAddr: 0x3F4C8, symSize: 0x1C } - - { offsetInCU: 0x25E9, offset: 0xDC432, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3858, symBinAddr: 0x42050, symSize: 0x1D0 } - - { offsetInCU: 0x2631, offset: 0xDC47A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24catchallOptionsParameter_WZ', symObjAddr: 0xB40, symBinAddr: 0x3F4E4, symSize: 0x24 } - - { offsetInCU: 0x264B, offset: 0xDC494, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC17callbackParameter_WZ', symObjAddr: 0xB64, symBinAddr: 0x3F508, symSize: 0x28 } - - { offsetInCU: 0x26BD, offset: 0xDC506, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportCMa', symObjAddr: 0x10E0, symBinAddr: 0x3FA84, symSize: 0x20 } - - { offsetInCU: 0x28E2, offset: 0xDC72B, size: 0x8, addend: 0x0, symName: '_$sSo15CAPPluginMethodCMa', symObjAddr: 0x2E04, symBinAddr: 0x416E4, symSize: 0x3C } - - { offsetInCU: 0x28F6, offset: 0xDC73F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSgxSgSEsSERzlWl', symObjAddr: 0x2E40, symBinAddr: 0x41720, symSize: 0x78 } - - { offsetInCU: 0x290A, offset: 0xDC753, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVACSEAAWl', symObjAddr: 0x2EB8, symBinAddr: 0x41798, symSize: 0x44 } - - { offsetInCU: 0x291E, offset: 0xDC767, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSgWOe', symObjAddr: 0x2EFC, symBinAddr: 0x417DC, symSize: 0x30 } - - { offsetInCU: 0x2932, offset: 0xDC77B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwCP', symObjAddr: 0x2FD0, symBinAddr: 0x4180C, symSize: 0x30 } - - { offsetInCU: 0x2946, offset: 0xDC78F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwxx', symObjAddr: 0x3000, symBinAddr: 0x4183C, symSize: 0x28 } - - { offsetInCU: 0x295A, offset: 0xDC7A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwcp', symObjAddr: 0x3028, symBinAddr: 0x41864, symSize: 0x3C } - - { offsetInCU: 0x296E, offset: 0xDC7B7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwca', symObjAddr: 0x3064, symBinAddr: 0x418A0, symSize: 0x6C } - - { offsetInCU: 0x2982, offset: 0xDC7CB, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x30D0, symBinAddr: 0x4190C, symSize: 0xC } - - { offsetInCU: 0x2996, offset: 0xDC7DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwta', symObjAddr: 0x30DC, symBinAddr: 0x41918, symSize: 0x44 } - - { offsetInCU: 0x29AA, offset: 0xDC7F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwet', symObjAddr: 0x3120, symBinAddr: 0x4195C, symSize: 0x48 } - - { offsetInCU: 0x29BE, offset: 0xDC807, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwst', symObjAddr: 0x3168, symBinAddr: 0x419A4, symSize: 0x40 } - - { offsetInCU: 0x29D2, offset: 0xDC81B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVMa', symObjAddr: 0x31A8, symBinAddr: 0x419E4, symSize: 0x10 } - - { offsetInCU: 0x29E6, offset: 0xDC82F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwCP', symObjAddr: 0x31B8, symBinAddr: 0x419F4, symSize: 0x3C } - - { offsetInCU: 0x29FA, offset: 0xDC843, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwxx', symObjAddr: 0x31F4, symBinAddr: 0x41A30, symSize: 0x28 } - - { offsetInCU: 0x2A0E, offset: 0xDC857, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwcp', symObjAddr: 0x321C, symBinAddr: 0x41A58, symSize: 0x3C } - - { offsetInCU: 0x2A22, offset: 0xDC86B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwca', symObjAddr: 0x3258, symBinAddr: 0x41A94, symSize: 0x64 } - - { offsetInCU: 0x2A36, offset: 0xDC87F, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x32BC, symBinAddr: 0x41AF8, symSize: 0x14 } - - { offsetInCU: 0x2A4A, offset: 0xDC893, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwta', symObjAddr: 0x32D0, symBinAddr: 0x41B0C, symSize: 0x44 } - - { offsetInCU: 0x2A5E, offset: 0xDC8A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwet', symObjAddr: 0x3314, symBinAddr: 0x41B50, symSize: 0x48 } - - { offsetInCU: 0x2A72, offset: 0xDC8BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwst', symObjAddr: 0x335C, symBinAddr: 0x41B98, symSize: 0x40 } - - { offsetInCU: 0x2A86, offset: 0xDC8CF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVMa', symObjAddr: 0x339C, symBinAddr: 0x41BD8, symSize: 0x10 } - - { offsetInCU: 0x2A9A, offset: 0xDC8E3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs0D3KeyAAWl', symObjAddr: 0x33D0, symBinAddr: 0x41BE8, symSize: 0x44 } - - { offsetInCU: 0x2AAE, offset: 0xDC8F7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVACSEAAWl', symObjAddr: 0x3458, symBinAddr: 0x41C70, symSize: 0x44 } - - { offsetInCU: 0x2AC2, offset: 0xDC90B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs0E3KeyAAWl', symObjAddr: 0x371C, symBinAddr: 0x41F34, symSize: 0x44 } - - { offsetInCU: 0x2AD6, offset: 0xDC91F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVACSeAAWl', symObjAddr: 0x3AA4, symBinAddr: 0x4229C, symSize: 0x44 } - - { offsetInCU: 0x2AEA, offset: 0xDC933, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwup', symObjAddr: 0x3B00, symBinAddr: 0x422E8, symSize: 0x4 } - - { offsetInCU: 0x2AFE, offset: 0xDC947, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOMa', symObjAddr: 0x3B04, symBinAddr: 0x422EC, symSize: 0x10 } - - { offsetInCU: 0x2B12, offset: 0xDC95B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwug', symObjAddr: 0x3C68, symBinAddr: 0x42450, symSize: 0x8 } - - { offsetInCU: 0x2B26, offset: 0xDC96F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwup', symObjAddr: 0x3C70, symBinAddr: 0x42458, symSize: 0x4 } - - { offsetInCU: 0x2B3A, offset: 0xDC983, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwui', symObjAddr: 0x3C74, symBinAddr: 0x4245C, symSize: 0xC } - - { offsetInCU: 0x2B4E, offset: 0xDC997, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOMa', symObjAddr: 0x3C80, symBinAddr: 0x42468, symSize: 0x10 } - - { offsetInCU: 0x2B62, offset: 0xDC9AB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASQWb', symObjAddr: 0x3C90, symBinAddr: 0x42478, symSize: 0x4 } - - { offsetInCU: 0x2B76, offset: 0xDC9BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFSQAAWl', symObjAddr: 0x3C94, symBinAddr: 0x4247C, symSize: 0x44 } - - { offsetInCU: 0x2B8A, offset: 0xDC9D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASQWb', symObjAddr: 0x3CD8, symBinAddr: 0x424C0, symSize: 0x4 } - - { offsetInCU: 0x2B9E, offset: 0xDC9E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFSQAAWl', symObjAddr: 0x3CDC, symBinAddr: 0x424C4, symSize: 0x44 } - - { offsetInCU: 0x2BB2, offset: 0xDC9FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3D20, symBinAddr: 0x42508, symSize: 0x4 } - - { offsetInCU: 0x2BC6, offset: 0xDCA0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3D24, symBinAddr: 0x4250C, symSize: 0x44 } - - { offsetInCU: 0x2BDA, offset: 0xDCA23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3D68, symBinAddr: 0x42550, symSize: 0x4 } - - { offsetInCU: 0x2BEE, offset: 0xDCA37, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3D6C, symBinAddr: 0x42554, symSize: 0x44 } - - { offsetInCU: 0x2C02, offset: 0xDCA4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3DB0, symBinAddr: 0x42598, symSize: 0x4 } - - { offsetInCU: 0x2C16, offset: 0xDCA5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3DB4, symBinAddr: 0x4259C, symSize: 0x44 } - - { offsetInCU: 0x2C2A, offset: 0xDCA73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3DF8, symBinAddr: 0x425E0, symSize: 0x4 } - - { offsetInCU: 0x2C3E, offset: 0xDCA87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3DFC, symBinAddr: 0x425E4, symSize: 0x44 } - - { offsetInCU: 0x2C83, offset: 0xDCACC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x644, symBinAddr: 0x3EFE8, symSize: 0x28 } - - { offsetInCU: 0x2C9F, offset: 0xDCAE8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x66C, symBinAddr: 0x3F010, symSize: 0x28 } - - { offsetInCU: 0x2CC1, offset: 0xDCB0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xAA8, symBinAddr: 0x3F44C, symSize: 0x28 } - - { offsetInCU: 0x2CDD, offset: 0xDCB26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xAD0, symBinAddr: 0x3F474, symSize: 0x28 } - - { offsetInCU: 0xE8, offset: 0xDCFC9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9hexString33_750E6D65F9E101F235B3FD4952DBE776LLySSs16IndexingIteratorVySays5UInt8VGGF', symObjAddr: 0x0, symBinAddr: 0x4264C, symSize: 0x1A0 } - - { offsetInCU: 0x41B, offset: 0xDD2FC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9CapacitorE6sha256SSvg', symObjAddr: 0x1A0, symBinAddr: 0x427EC, symSize: 0x144 } - - { offsetInCU: 0x502, offset: 0xDD3E3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9CapacitorE6sha256SSvgySWXEfU_', symObjAddr: 0x2F4, symBinAddr: 0x42940, symSize: 0xDC } - - { offsetInCU: 0x738, offset: 0xDD619, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC03getbC0SSyFZ', symObjAddr: 0x3E0, symBinAddr: 0x42A2C, symSize: 0xD0 } - - { offsetInCU: 0x795, offset: 0xDD676, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC010regeneratebC0yyFZ', symObjAddr: 0x4B0, symBinAddr: 0x42AFC, symSize: 0x4 } - - { offsetInCU: 0x7A9, offset: 0xDD68A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCfd', symObjAddr: 0x4B4, symBinAddr: 0x42B00, symSize: 0x8 } - - { offsetInCU: 0x7D8, offset: 0xDD6B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCfD', symObjAddr: 0x4BC, symBinAddr: 0x42B08, symSize: 0x10 } - - { offsetInCU: 0x855, offset: 0xDD736, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC010regeneratebC0yyFZTf4d_n', symObjAddr: 0x6D4, symBinAddr: 0x42CD0, symSize: 0x1D4 } - - { offsetInCU: 0x905, offset: 0xDD7E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC06assertbC033_750E6D65F9E101F235B3FD4952DBE776LLyyFZTf4d_n', symObjAddr: 0x8A8, symBinAddr: 0x42EA4, symSize: 0xF8 } - - { offsetInCU: 0x9A5, offset: 0xDD886, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0V15withUnsafeBytesyxxSWKXEKlFyt_Tg5015$s10Foundation4B31V9CapacitorE6sha256SSvgySWXEfU_ACSays5UInt8VGTf1ncn_n', symObjAddr: 0x4CC, symBinAddr: 0x42B18, symSize: 0xEC } - - { offsetInCU: 0x9ED, offset: 0xDD8CE, size: 0x8, addend: 0x0, symName: '_$s10Foundation13__DataStorageC15withUnsafeBytes2in5applyxSnySiG_xSWKXEtKlFyt_Tg5015$s10Foundation4B31V9CapacitorE6sha256SSvgySWXEfU_AA0B0VSays5UInt8VGTf1nncn_n', symObjAddr: 0x5B8, symBinAddr: 0x42C04, symSize: 0xCC } - - { offsetInCU: 0xA23, offset: 0xDD904, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCMa', symObjAddr: 0x9A0, symBinAddr: 0x42F9C, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0xDDBEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfC', symObjAddr: 0x0, symBinAddr: 0x42FC8, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0xDDC09, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc', symObjAddr: 0x30, symBinAddr: 0x42FF8, symSize: 0x320C } - - { offsetInCU: 0x123, offset: 0xDDCBF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03setD4PathyySSF', symObjAddr: 0x327C, symBinAddr: 0x46204, symSize: 0x94 } - - { offsetInCU: 0x1A4, offset: 0xDDD40, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF', symObjAddr: 0x3310, symBinAddr: 0x46298, symSize: 0xAC } - - { offsetInCU: 0x20A, offset: 0xDDDA6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptF', symObjAddr: 0x33BC, symBinAddr: 0x46344, symSize: 0x8 } - - { offsetInCU: 0x22D, offset: 0xDDDC9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptFTo', symObjAddr: 0x34E8, symBinAddr: 0x46470, symSize: 0x6C } - - { offsetInCU: 0x25F, offset: 0xDDDFB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptF', symObjAddr: 0x3554, symBinAddr: 0x464DC, symSize: 0xAC } - - { offsetInCU: 0x363, offset: 0xDDEFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptFTo', symObjAddr: 0x3600, symBinAddr: 0x46588, symSize: 0x104 } - - { offsetInCU: 0x451, offset: 0xDDFED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC20mimeTypeForExtension04pathI0S2S_tF', symObjAddr: 0x3704, symBinAddr: 0x4668C, symSize: 0x168 } - - { offsetInCU: 0x501, offset: 0xDE09D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfC', symObjAddr: 0x386C, symBinAddr: 0x467F4, symSize: 0x20 } - - { offsetInCU: 0x51F, offset: 0xDE0BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfc', symObjAddr: 0x388C, symBinAddr: 0x46814, symSize: 0x2C } - - { offsetInCU: 0x582, offset: 0xDE11E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfcTo', symObjAddr: 0x38B8, symBinAddr: 0x46840, symSize: 0x2C } - - { offsetInCU: 0x5E9, offset: 0xDE185, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCfD', symObjAddr: 0x38E4, symBinAddr: 0x4686C, symSize: 0x34 } - - { offsetInCU: 0x616, offset: 0xDE1B2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC16isMediaExtension04pathH0SbSS_tFTf4nd_n', symObjAddr: 0x47BC, symBinAddr: 0x4762C, symSize: 0x12C } - - { offsetInCU: 0x739, offset: 0xDE2D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptFTf4dnn_n', symObjAddr: 0x48E8, symBinAddr: 0x47758, symSize: 0x183C } - - { offsetInCU: 0x1252, offset: 0xDEDEE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCfETo', symObjAddr: 0x3918, symBinAddr: 0x468A0, symSize: 0x48 } - - { offsetInCU: 0x12C3, offset: 0xDEE5F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_SSTg5', symObjAddr: 0x3960, symBinAddr: 0x468E8, symSize: 0xDC } - - { offsetInCU: 0x13DF, offset: 0xDEF7B, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_SiTg5', symObjAddr: 0x3A3C, symBinAddr: 0x469C4, symSize: 0xE0 } - - { offsetInCU: 0x14FA, offset: 0xDF096, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFSi_Tg5', symObjAddr: 0x3B1C, symBinAddr: 0x46AA4, symSize: 0x298 } - - { offsetInCU: 0x1571, offset: 0xDF10D, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0x3DB4, symBinAddr: 0x46D3C, symSize: 0x8C } - - { offsetInCU: 0x1589, offset: 0xDF125, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0x3E40, symBinAddr: 0x46DC8, symSize: 0x4C } - - { offsetInCU: 0x15DE, offset: 0xDF17A, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0x3E8C, symBinAddr: 0x46E14, symSize: 0x154 } - - { offsetInCU: 0x164C, offset: 0xDF1E8, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0x3FE0, symBinAddr: 0x46F68, symSize: 0xF0 } - - { offsetInCU: 0x1671, offset: 0xDF20D, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0x40D0, symBinAddr: 0x47058, symSize: 0x214 } - - { offsetInCU: 0x16AA, offset: 0xDF246, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0x42E4, symBinAddr: 0x4726C, symSize: 0x78 } - - { offsetInCU: 0x16C2, offset: 0xDF25E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6Router_pWOc', symObjAddr: 0x435C, symBinAddr: 0x472E4, symSize: 0x44 } - - { offsetInCU: 0x16D6, offset: 0xDF272, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMa', symObjAddr: 0x43A0, symBinAddr: 0x47328, symSize: 0x3C } - - { offsetInCU: 0x16EA, offset: 0xDF286, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x44F4, symBinAddr: 0x47364, symSize: 0x64 } - - { offsetInCU: 0x17A4, offset: 0xDF340, size: 0x8, addend: 0x0, symName: '_$sSh21_nonEmptyArrayLiteralShyxGSayxG_tcfCSo16NSURLResourceKeya_Tg5Tf4gd_n', symObjAddr: 0x4558, symBinAddr: 0x473C8, symSize: 0x264 } - - { offsetInCU: 0x1A9B, offset: 0xDF637, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMU', symObjAddr: 0x6144, symBinAddr: 0x48FB4, symSize: 0x8 } - - { offsetInCU: 0x1AAF, offset: 0xDF64B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMr', symObjAddr: 0x614C, symBinAddr: 0x48FBC, symSize: 0x84 } - - { offsetInCU: 0x1D21, offset: 0xDF8BD, size: 0x8, addend: 0x0, symName: '_$sSo12NSFileHandleC14forReadingFromAB10Foundation3URLV_tKcfCTO', symObjAddr: 0x33C4, symBinAddr: 0x4634C, symSize: 0x124 } - - { offsetInCU: 0x8D, offset: 0xDFC50, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC4httpyySo13CAPPluginCallC_SSSgtF', symObjAddr: 0x0, symBinAddr: 0x490FC, symSize: 0x3C0 } - - { offsetInCU: 0x1B2, offset: 0xDFD75, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC4httpyySo13CAPPluginCallC_SSSgtFTo', symObjAddr: 0x3C0, symBinAddr: 0x494BC, symSize: 0x8C } - - { offsetInCU: 0x1F8, offset: 0xDFDBB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC7requestyySo13CAPPluginCallCFTo', symObjAddr: 0x44C, symBinAddr: 0x49548, symSize: 0x58 } - - { offsetInCU: 0x23B, offset: 0xDFDFE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x568, symBinAddr: 0x49664, symSize: 0xB4 } - - { offsetInCU: 0x259, offset: 0xDFE1C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x61C, symBinAddr: 0x49718, symSize: 0xB4 } - - { offsetInCU: 0x2D2, offset: 0xDFE95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x6F0, symBinAddr: 0x497EC, symSize: 0xD8 } - - { offsetInCU: 0x329, offset: 0xDFEEC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfC', symObjAddr: 0x7C8, symBinAddr: 0x498C4, symSize: 0x20 } - - { offsetInCU: 0x347, offset: 0xDFF0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfc', symObjAddr: 0x7E8, symBinAddr: 0x498E4, symSize: 0x30 } - - { offsetInCU: 0x382, offset: 0xDFF45, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfcTo', symObjAddr: 0x818, symBinAddr: 0x49914, symSize: 0x3C } - - { offsetInCU: 0x3BD, offset: 0xDFF80, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCfD', symObjAddr: 0x854, symBinAddr: 0x49950, symSize: 0x30 } - - { offsetInCU: 0x3EB, offset: 0xDFFAE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCMa', symObjAddr: 0x6D0, symBinAddr: 0x497CC, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0xE0160, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF', symObjAddr: 0x0, symBinAddr: 0x499C4, symSize: 0x100 } - - { offsetInCU: 0x6D, offset: 0xE01A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF', symObjAddr: 0x0, symBinAddr: 0x499C4, symSize: 0x100 } - - { offsetInCU: 0xF2, offset: 0xE0227, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtFTo', symObjAddr: 0x1C4, symBinAddr: 0x49AC4, symSize: 0xC4 } - - { offsetInCU: 0x10E, offset: 0xE0243, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtF', symObjAddr: 0x288, symBinAddr: 0x49B88, symSize: 0xE8 } - - { offsetInCU: 0x193, offset: 0xE02C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtFTo', symObjAddr: 0x370, symBinAddr: 0x49C70, symSize: 0x74 } - - { offsetInCU: 0x1AF, offset: 0xE02E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC6getIntySiSS_SitF', symObjAddr: 0x3E4, symBinAddr: 0x49CE4, symSize: 0xE8 } - - { offsetInCU: 0x234, offset: 0xE0369, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC6getIntySiSS_SitFTo', symObjAddr: 0x4CC, symBinAddr: 0x49DCC, symSize: 0x74 } - - { offsetInCU: 0x250, offset: 0xE0385, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF', symObjAddr: 0x540, symBinAddr: 0x49E40, symSize: 0xFC } - - { offsetInCU: 0x2D5, offset: 0xE040A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF', symObjAddr: 0x63C, symBinAddr: 0x49F3C, symSize: 0xF4 } - - { offsetInCU: 0x34A, offset: 0xE047F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyF', symObjAddr: 0x730, symBinAddr: 0x4A030, symSize: 0x1C } - - { offsetInCU: 0x36A, offset: 0xE049F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyF', symObjAddr: 0x730, symBinAddr: 0x4A030, symSize: 0x1C } - - { offsetInCU: 0x3CD, offset: 0xE0502, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x74C, symBinAddr: 0x4A04C, symSize: 0x1C } - - { offsetInCU: 0x3ED, offset: 0xE0522, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x74C, symBinAddr: 0x4A04C, symSize: 0x1C } - - { offsetInCU: 0x40A, offset: 0xE053F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x74C, symBinAddr: 0x4A04C, symSize: 0x1C } - - { offsetInCU: 0x450, offset: 0xE0585, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF', symObjAddr: 0x768, symBinAddr: 0x4A068, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0xE05B5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF', symObjAddr: 0x768, symBinAddr: 0x4A068, symSize: 0x10 } - - { offsetInCU: 0x49B, offset: 0xE05D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfC', symObjAddr: 0x778, symBinAddr: 0x4A078, symSize: 0x20 } - - { offsetInCU: 0x4B9, offset: 0xE05EE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfc', symObjAddr: 0x798, symBinAddr: 0x4A098, symSize: 0x2C } - - { offsetInCU: 0x51C, offset: 0xE0651, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfcTo', symObjAddr: 0x7C4, symBinAddr: 0x4A0C4, symSize: 0x2C } - - { offsetInCU: 0x583, offset: 0xE06B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCfD', symObjAddr: 0x7F0, symBinAddr: 0x4A0F0, symSize: 0x30 } - - { offsetInCU: 0x5FE, offset: 0xE0733, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCMa', symObjAddr: 0x820, symBinAddr: 0x4A120, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0xE0747, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCfETo', symObjAddr: 0x840, symBinAddr: 0x4A140, symSize: 0x10 } - - { offsetInCU: 0x127, offset: 0xE0A1F, size: 0x8, addend: 0x0, symName: '_$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig', symObjAddr: 0x0, symBinAddr: 0x4A230, symSize: 0x270 } - - { offsetInCU: 0x40F, offset: 0xE0D07, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAAsADP06stringG0x0fG4TypeQz_tcfCTW', symObjAddr: 0x2F0, symBinAddr: 0x4A520, symSize: 0xC } - - { offsetInCU: 0x48E, offset: 0xE0D86, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x2FC, symBinAddr: 0x4A52C, symSize: 0x18C } - - { offsetInCU: 0x5C0, offset: 0xE0EB8, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x488, symBinAddr: 0x4A6B8, symSize: 0xC0 } - - { offsetInCU: 0x6C3, offset: 0xE0FBB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAAs0de23ExtendedGraphemeClusterG0PWb', symObjAddr: 0x6B8, symBinAddr: 0x4A778, symSize: 0x4 } - - { offsetInCU: 0x6D7, offset: 0xE0FCF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x6BC, symBinAddr: 0x4A77C, symSize: 0x44 } - - { offsetInCU: 0x6EB, offset: 0xE0FE3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAA0fG4TypesADP_s01_de7BuiltinfG0PWT', symObjAddr: 0x700, symBinAddr: 0x4A7C0, symSize: 0xC } - - { offsetInCU: 0x6FF, offset: 0xE0FF7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0de13UnicodeScalarI0PWb', symObjAddr: 0x70C, symBinAddr: 0x4A7CC, symSize: 0x4 } - - { offsetInCU: 0x713, offset: 0xE100B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x710, symBinAddr: 0x4A7D0, symSize: 0x44 } - - { offsetInCU: 0x727, offset: 0xE101F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0fghI4TypesADP_s01_de7BuiltinfghI0PWT', symObjAddr: 0x754, symBinAddr: 0x4A814, symSize: 0xC } - - { offsetInCU: 0x73B, offset: 0xE1033, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0fgH4TypesADP_s01_de7BuiltinfgH0PWT', symObjAddr: 0x760, symBinAddr: 0x4A820, symSize: 0xC } - - { offsetInCU: 0x74F, offset: 0xE1047, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVMa', symObjAddr: 0x76C, symBinAddr: 0x4A82C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0xE1264, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCF', symObjAddr: 0x0, symBinAddr: 0x4A844, symSize: 0x4 } - - { offsetInCU: 0x6E, offset: 0xE1287, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCFTo', symObjAddr: 0x4, symBinAddr: 0x4A848, symSize: 0x4C } - - { offsetInCU: 0xA0, offset: 0xE12B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x50, symBinAddr: 0x4A894, symSize: 0xB4 } - - { offsetInCU: 0xBE, offset: 0xE12D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x104, symBinAddr: 0x4A948, symSize: 0xB4 } - - { offsetInCU: 0x137, offset: 0xE1350, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x1B8, symBinAddr: 0x4A9FC, symSize: 0xD8 } - - { offsetInCU: 0x18E, offset: 0xE13A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfC', symObjAddr: 0x290, symBinAddr: 0x4AAD4, symSize: 0x20 } - - { offsetInCU: 0x1AC, offset: 0xE13C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfc', symObjAddr: 0x2B0, symBinAddr: 0x4AAF4, symSize: 0x30 } - - { offsetInCU: 0x1E7, offset: 0xE1400, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfcTo', symObjAddr: 0x2E0, symBinAddr: 0x4AB24, symSize: 0x3C } - - { offsetInCU: 0x222, offset: 0xE143B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCfD', symObjAddr: 0x31C, symBinAddr: 0x4AB60, symSize: 0x30 } - - { offsetInCU: 0x24F, offset: 0xE1468, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCFTf4nd_n', symObjAddr: 0x34C, symBinAddr: 0x4AB90, symSize: 0x188 } - - { offsetInCU: 0x4FE, offset: 0xE1717, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCMa', symObjAddr: 0x4D4, symBinAddr: 0x4AD18, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0xE189F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvpZ', symObjAddr: 0x500, symBinAddr: 0x7B720, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0xE18B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ', symObjAddr: 0x0, symBinAddr: 0x4AD60, symSize: 0x4 } - - { offsetInCU: 0x81, offset: 0xE18D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvgZ', symObjAddr: 0x4, symBinAddr: 0x4AD64, symSize: 0x40 } - - { offsetInCU: 0xAC, offset: 0xE1900, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvsZ', symObjAddr: 0x44, symBinAddr: 0x4ADA4, symSize: 0x44 } - - { offsetInCU: 0xE3, offset: 0xE1937, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvMZ', symObjAddr: 0x88, symBinAddr: 0x4ADE8, symSize: 0x40 } - - { offsetInCU: 0x10E, offset: 0xE1962, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvMZ.resume.0', symObjAddr: 0xC8, symBinAddr: 0x4AE28, symSize: 0x4 } - - { offsetInCU: 0x139, offset: 0xE198D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCfd', symObjAddr: 0xCC, symBinAddr: 0x4AE2C, symSize: 0x8 } - - { offsetInCU: 0x168, offset: 0xE19BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCfD', symObjAddr: 0xD4, symBinAddr: 0x4AE34, symSize: 0x10 } - - { offsetInCU: 0x197, offset: 0xE19EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZTf4nnnd_n', symObjAddr: 0xE4, symBinAddr: 0x4AE44, symSize: 0x2C0 } - - { offsetInCU: 0x47F, offset: 0xE1CD3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCMa', symObjAddr: 0x3A4, symBinAddr: 0x4B104, symSize: 0x20 } - - { offsetInCU: 0x493, offset: 0xE1CE7, size: 0x8, addend: 0x0, symName: '_$sSi6offset_yp7elementtSgWOb', symObjAddr: 0x41C, symBinAddr: 0x4B130, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0xE1EBD, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09CAPPluginE0CSgSS_tF', symObjAddr: 0x0, symBinAddr: 0x4B19C, symSize: 0xA0 } - - { offsetInCU: 0x3F, offset: 0xE1ED5, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09CAPPluginE0CSgSS_tF', symObjAddr: 0x0, symBinAddr: 0x4B19C, symSize: 0xA0 } - - { offsetInCU: 0x1D4, offset: 0xE206A, size: 0x8, addend: 0x0, symName: '_$sSTsE5first5where7ElementQzSgSbADKXE_tKFSaySo15CAPPluginMethodCG_Tg5054$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09D19E0CSgSS_tFSbAGXEfU_SSTf1cn_nTf4ng_n', symObjAddr: 0xDC, symBinAddr: 0x4B23C, symSize: 0x198 } - - { offsetInCU: 0x43, offset: 0xE2330, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvgTo', symObjAddr: 0x220, symBinAddr: 0x4B5F4, symSize: 0xCC } - - { offsetInCU: 0x5F, offset: 0xE234C, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvg', symObjAddr: 0x2EC, symBinAddr: 0x4B6C0, symSize: 0x144 } - - { offsetInCU: 0x108, offset: 0xE23F5, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStF', symObjAddr: 0x430, symBinAddr: 0x4B804, symSize: 0x198 } - - { offsetInCU: 0x1F5, offset: 0xE24E2, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStFTo', symObjAddr: 0x6C8, symBinAddr: 0x4B99C, symSize: 0x124 } - - { offsetInCU: 0x262, offset: 0xE254F, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSF', symObjAddr: 0x7EC, symBinAddr: 0x4BAC0, symSize: 0x1AC } - - { offsetInCU: 0x33D, offset: 0xE262A, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSFTo', symObjAddr: 0x998, symBinAddr: 0x4BC6C, symSize: 0x64 } - - { offsetInCU: 0x3CB, offset: 0xE26B8, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tF', symObjAddr: 0x9FC, symBinAddr: 0x4BCD0, symSize: 0x138 } - - { offsetInCU: 0x4FB, offset: 0xE27E8, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tFTo', symObjAddr: 0xB34, symBinAddr: 0x4BE08, symSize: 0x64 } - - { offsetInCU: 0x517, offset: 0xE2804, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSF', symObjAddr: 0xB98, symBinAddr: 0x4BE6C, symSize: 0x150 } - - { offsetInCU: 0x576, offset: 0xE2863, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSFTo', symObjAddr: 0xCE8, symBinAddr: 0x4BFBC, symSize: 0x100 } - - { offsetInCU: 0x592, offset: 0xE287F, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSF', symObjAddr: 0xDE8, symBinAddr: 0x4C0BC, symSize: 0x150 } - - { offsetInCU: 0x5F1, offset: 0xE28DE, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSFTo', symObjAddr: 0xF38, symBinAddr: 0x4C20C, symSize: 0x8C } - - { offsetInCU: 0x7BA, offset: 0xE2AA7, size: 0x8, addend: 0x0, symName: '_$sSlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKFSS_Tg5', symObjAddr: 0x112C, symBinAddr: 0x4C400, symSize: 0x418 } - - { offsetInCU: 0xB6B, offset: 0xE2E58, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSs_Tg5', symObjAddr: 0x1544, symBinAddr: 0x4C818, symSize: 0x14 } - - { offsetInCU: 0xBA3, offset: 0xE2E90, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x1558, symBinAddr: 0x4C82C, symSize: 0x14 } - - { offsetInCU: 0xBD0, offset: 0xE2EBD, size: 0x8, addend: 0x0, symName: '_$sSlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF17appendSubsequenceL_3endSb5IndexQz_tSlRzlFSS_Tg5', symObjAddr: 0x156C, symBinAddr: 0x4C840, symSize: 0x10C } - - { offsetInCU: 0xDCE, offset: 0xE30BB, size: 0x8, addend: 0x0, symName: '_$ss30_copySequenceToContiguousArrayys0dE0Vy7ElementQzGxSTRzlFs010EnumeratedB0VySaySsGG_Tg5', symObjAddr: 0x1678, symBinAddr: 0x4C94C, symSize: 0x1C0 } - - { offsetInCU: 0x106C, offset: 0xE3359, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8doesHost33_B57F4D0DE97AE9C2AEF6A73FAB0F46C7LL_5matchSbSS_SStFTf4nnd_n', symObjAddr: 0x1944, symBinAddr: 0x4CC18, symSize: 0x3F4 } - - { offsetInCU: 0x15CA, offset: 0xE38B7, size: 0x8, addend: 0x0, symName: '_$sSTsE8reversedSay7ElementQzGyFs18EnumeratedSequenceVySaySsGG_Tg5', symObjAddr: 0xFC4, symBinAddr: 0x4C298, symSize: 0x168 } - - { offsetInCU: 0x1794, offset: 0xE3A81, size: 0x8, addend: 0x0, symName: '_$sSasSQRzlE2eeoiySbSayxG_ABtFZSs_Tg5Tf4nnd_n', symObjAddr: 0x1838, symBinAddr: 0x4CB0C, symSize: 0x10C } - - { offsetInCU: 0x4F, offset: 0xE3DDA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ', symObjAddr: 0x2E90, symBinAddr: 0x7B7C8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xE3DF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ', symObjAddr: 0x2EA0, symBinAddr: 0x7B7D8, symSize: 0x0 } - - { offsetInCU: 0x82, offset: 0xE3E0D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO6scheme_WZ', symObjAddr: 0x7C, symBinAddr: 0x4D184, symSize: 0x28 } - - { offsetInCU: 0x9C, offset: 0xE3E27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO8hostname_WZ', symObjAddr: 0xC4, symBinAddr: 0x4D1CC, symSize: 0x28 } - - { offsetInCU: 0x188, offset: 0xE3F13, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE19_parseConfiguration2at07cordovaE0y10Foundation3URLVSg_AJtF', symObjAddr: 0x15C, symBinAddr: 0x4D264, symSize: 0x1C88 } - - { offsetInCU: 0xD07, offset: 0xE4A92, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE19_parseConfiguration2at07cordovaE0y10Foundation3URLVSg_AJtFTo', symObjAddr: 0x1DE4, symBinAddr: 0x4EEEC, symSize: 0x174 } - - { offsetInCU: 0xD23, offset: 0xE4AAE, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvgTo', symObjAddr: 0x1F58, symBinAddr: 0x4F060, symSize: 0x38 } - - { offsetInCU: 0xD3F, offset: 0xE4ACA, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvg', symObjAddr: 0x1F90, symBinAddr: 0x4F098, symSize: 0x19C } - - { offsetInCU: 0xD83, offset: 0xE4B0E, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCMa', symObjAddr: 0x216C, symBinAddr: 0x4F234, symSize: 0x3C } - - { offsetInCU: 0xDB9, offset: 0xE4B44, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyF', symObjAddr: 0x21A8, symBinAddr: 0x4F270, symSize: 0x700 } - - { offsetInCU: 0xEB8, offset: 0xE4C43, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyFTo', symObjAddr: 0x28A8, symBinAddr: 0x4F970, symSize: 0x2C } - - { offsetInCU: 0xED4, offset: 0xE4C5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsOMa', symObjAddr: 0x2998, symBinAddr: 0x4FA1C, symSize: 0x10 } - - { offsetInCU: 0xEE8, offset: 0xE4C73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZAE_Tg5Tf4nd_n', symObjAddr: 0x29F0, symBinAddr: 0x4FA2C, symSize: 0x2B0 } - - { offsetInCU: 0xFF5, offset: 0xE4D80, size: 0x8, addend: 0x0, symName: '_$sSo26CAPInstanceLoggingBehaviorV9CapacitorE8behavior33_8A70532DEC43102D9B8E29134CB87F82LL4fromABSgSS_tFZTf4nd_n', symObjAddr: 0x2CA0, symBinAddr: 0x4FCDC, symSize: 0x158 } - - { offsetInCU: 0x10B1, offset: 0xE4E3C, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_So42UIScrollViewContentInsetAdjustmentBehaviorVTg5', symObjAddr: 0x0, symBinAddr: 0x4D108, symSize: 0x7C } - - { offsetInCU: 0x4F, offset: 0xE5202, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6sharedACvpZ', symObjAddr: 0xF40, symBinAddr: 0x7B7F8, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0xE522D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfC', symObjAddr: 0x30, symBinAddr: 0x4FE64, symSize: 0x20 } - - { offsetInCU: 0x8E, offset: 0xE5241, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6sharedACvgZ', symObjAddr: 0x50, symBinAddr: 0x4FE84, symSize: 0x40 } - - { offsetInCU: 0xEF, offset: 0xE52A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg', symObjAddr: 0x144, symBinAddr: 0x4FF78, symSize: 0x50 } - - { offsetInCU: 0x10E, offset: 0xE52C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF', symObjAddr: 0x21C, symBinAddr: 0x4FFC8, symSize: 0xC } - - { offsetInCU: 0x131, offset: 0xE52E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtFTo', symObjAddr: 0x228, symBinAddr: 0x4FFD4, symSize: 0x110 } - - { offsetInCU: 0x163, offset: 0xE5316, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctF', symObjAddr: 0x338, symBinAddr: 0x500E4, symSize: 0x8 } - - { offsetInCU: 0x186, offset: 0xE5339, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctFTo', symObjAddr: 0x340, symBinAddr: 0x500EC, symSize: 0xA0 } - - { offsetInCU: 0x1B8, offset: 0xE536B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfc', symObjAddr: 0x3E0, symBinAddr: 0x5018C, symSize: 0x6C } - - { offsetInCU: 0x1F5, offset: 0xE53A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x501F8, symSize: 0x70 } - - { offsetInCU: 0x230, offset: 0xE53E3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCfD', symObjAddr: 0x4BC, symBinAddr: 0x50268, symSize: 0x34 } - - { offsetInCU: 0x25D, offset: 0xE5410, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtFTf4dnnn_n', symObjAddr: 0x500, symBinAddr: 0x502AC, symSize: 0x2CC } - - { offsetInCU: 0x38A, offset: 0xE553D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctFTf4dndn_n', symObjAddr: 0x7CC, symBinAddr: 0x50578, symSize: 0x440 } - - { offsetInCU: 0x509, offset: 0xE56BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6shared_WZ', symObjAddr: 0x0, symBinAddr: 0x4FE34, symSize: 0x30 } - - { offsetInCU: 0x54A, offset: 0xE56FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvpACTk', symObjAddr: 0x90, symBinAddr: 0x4FEC4, symSize: 0xB4 } - - { offsetInCU: 0x581, offset: 0xE5734, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCfETo', symObjAddr: 0x4F0, symBinAddr: 0x5029C, symSize: 0x10 } - - { offsetInCU: 0x66C, offset: 0xE581F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMa', symObjAddr: 0xC0C, symBinAddr: 0x509B8, symSize: 0x3C } - - { offsetInCU: 0x680, offset: 0xE5833, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMU', symObjAddr: 0xCA0, symBinAddr: 0x50A4C, symSize: 0x8 } - - { offsetInCU: 0x694, offset: 0xE5847, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMr', symObjAddr: 0xCA8, symBinAddr: 0x50A54, symSize: 0x6C } - - { offsetInCU: 0x6A8, offset: 0xE585B, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyaABSHSCWl', symObjAddr: 0xDC8, symBinAddr: 0x50B20, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0xE5A9C, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorSo9CAPPluginCRbzrlE4load2onyAC17CAPBridgeProtocol_p_tF', symObjAddr: 0x0, symBinAddr: 0x50B68, symSize: 0x1A8 } - - { offsetInCU: 0x3F, offset: 0xE5AB4, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorSo9CAPPluginCRbzrlE4load2onyAC17CAPBridgeProtocol_p_tF', symObjAddr: 0x0, symBinAddr: 0x50B68, symSize: 0x1A8 } - - { offsetInCU: 0x8C, offset: 0xE5B01, size: 0x8, addend: 0x0, symName: '_$sSo19NSMutableDictionaryCMa', symObjAddr: 0x1A8, symBinAddr: 0x50D10, symSize: 0x3C } - - { offsetInCU: 0x4B, offset: 0xE5C4D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17setServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x0, symBinAddr: 0x50D4C, symSize: 0x120 } - - { offsetInCU: 0xB8, offset: 0xE5CBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17setServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x120, symBinAddr: 0x50E6C, symSize: 0x50 } - - { offsetInCU: 0xD4, offset: 0xE5CD6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17getServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x170, symBinAddr: 0x50EBC, symSize: 0x1C4 } - - { offsetInCU: 0x1E9, offset: 0xE5DEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17getServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x334, symBinAddr: 0x51080, symSize: 0x50 } - - { offsetInCU: 0x205, offset: 0xE5E07, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC21persistServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x384, symBinAddr: 0x510D0, symSize: 0x148 } - - { offsetInCU: 0x272, offset: 0xE5E74, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC21persistServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x4CC, symBinAddr: 0x51218, symSize: 0x50 } - - { offsetInCU: 0x28E, offset: 0xE5E90, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x51C, symBinAddr: 0x51268, symSize: 0xB4 } - - { offsetInCU: 0x2AC, offset: 0xE5EAE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x5D0, symBinAddr: 0x5131C, symSize: 0xB4 } - - { offsetInCU: 0x325, offset: 0xE5F27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x6A4, symBinAddr: 0x513F0, symSize: 0xD8 } - - { offsetInCU: 0x37C, offset: 0xE5F7E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfC', symObjAddr: 0x77C, symBinAddr: 0x514C8, symSize: 0x20 } - - { offsetInCU: 0x39A, offset: 0xE5F9C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfc', symObjAddr: 0x79C, symBinAddr: 0x514E8, symSize: 0x30 } - - { offsetInCU: 0x3D5, offset: 0xE5FD7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfcTo', symObjAddr: 0x7CC, symBinAddr: 0x51518, symSize: 0x3C } - - { offsetInCU: 0x410, offset: 0xE6012, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCfD', symObjAddr: 0x808, symBinAddr: 0x51554, symSize: 0x30 } - - { offsetInCU: 0x480, offset: 0xE6082, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCMa', symObjAddr: 0x684, symBinAddr: 0x513D0, symSize: 0x20 } -... diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Capacitor b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Capacitor deleted file mode 100755 index ce0d1c639..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Capacitor and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPBridgedPlugin.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPBridgedPlugin.h deleted file mode 100644 index 5a9a3b4e2..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPBridgedPlugin.h +++ /dev/null @@ -1,43 +0,0 @@ -#import "CAPPluginMethod.h" - -#if defined(__cplusplus) -#define CAP_EXTERN extern "C" __attribute__((visibility("default"))) -#else -#define CAP_EXTERN extern __attribute__((visibility("default"))) -#endif - -#define CAPPluginReturnNone @"none" -#define CAPPluginReturnCallback @"callback" -#define CAPPluginReturnPromise @"promise" -#define CAPPluginReturnWatch @"watch" -#define CAPPluginReturnSync @"sync" // not used - -@class CAPPluginCall; -@class CAPPlugin; - -@protocol CAPBridgedPlugin -@property (nonnull, readonly) NSString *identifier; -@property (nonnull, readonly) NSString *jsName; -@property (nonnull, readonly) NSArray *pluginMethods; -@end - -#define CAP_PLUGIN_CONFIG(plugin_id, js_name) \ -- (NSString *)identifier { return @#plugin_id; } \ -- (NSString *)jsName { return @js_name; } -#define CAP_PLUGIN_METHOD(method_name, method_return_type) \ -[methods addObject:[[CAPPluginMethod alloc] initWithName:@#method_name returnType:method_return_type]] - -#define CAP_PLUGIN(objc_name, js_name, methods_body) \ -@interface objc_name : NSObject \ -@end \ -@interface objc_name (CAPPluginCategory) \ -@end \ -@implementation objc_name (CAPPluginCategory) \ -- (NSArray *)pluginMethods { \ - NSMutableArray *methods = [NSMutableArray new]; \ - methods_body \ - return methods; \ -} \ -CAP_PLUGIN_CONFIG(objc_name, js_name) \ -@end - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPInstanceConfiguration.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPInstanceConfiguration.h deleted file mode 100644 index 81ebe3d1b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPInstanceConfiguration.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef CAPInstanceConfiguration_h -#define CAPInstanceConfiguration_h - -@import UIKit; - -@class CAPInstanceDescriptor; - -NS_SWIFT_NAME(InstanceConfiguration) -@interface CAPInstanceConfiguration: NSObject -@property (nonatomic, readonly, nullable) NSString *appendedUserAgentString; -@property (nonatomic, readonly, nullable) NSString *overridenUserAgentString; -@property (nonatomic, readonly, nullable) UIColor *backgroundColor; -@property (nonatomic, readonly, nonnull) NSArray *allowedNavigationHostnames; -@property (nonatomic, readonly, nonnull) NSURL *localURL; -@property (nonatomic, readonly, nonnull) NSURL *serverURL; -@property (nonatomic, readonly, nullable) NSString *errorPath; -@property (nonatomic, readonly, nonnull) NSDictionary *pluginConfigurations; -@property (nonatomic, readonly) BOOL loggingEnabled; -@property (nonatomic, readonly) BOOL scrollingEnabled; -@property (nonatomic, readonly) BOOL zoomingEnabled; -@property (nonatomic, readonly) BOOL allowLinkPreviews; -@property (nonatomic, readonly) BOOL handleApplicationNotifications; -@property (nonatomic, readonly) BOOL isWebDebuggable; -@property (nonatomic, readonly) BOOL cordovaDeployDisabled; -@property (nonatomic, readonly) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior; -@property (nonatomic, readonly, nonnull) NSURL *appLocation; -@property (nonatomic, readonly, nullable) NSString *appStartPath; -@property (nonatomic, readonly) BOOL limitsNavigationsToAppBoundDomains; -@property (nonatomic, readonly, nullable) NSString *preferredContentMode; - -@property (nonatomic, readonly, nonnull) NSDictionary *legacyConfig DEPRECATED_MSG_ATTRIBUTE("Use direct properties instead"); - -- (instancetype _Nonnull)initWithDescriptor:(CAPInstanceDescriptor* _Nonnull)descriptor isDebug:(BOOL)debug NS_SWIFT_NAME(init(with:isDebug:)); -- (instancetype _Nonnull)updatingAppLocation:(NSURL* _Nonnull)location NS_SWIFT_NAME(updatingAppLocation(_:)); -@end - -#endif /* CAPInstanceConfiguration_h */ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPInstanceDescriptor.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPInstanceDescriptor.h deleted file mode 100644 index 228b3a41d..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPInstanceDescriptor.h +++ /dev/null @@ -1,161 +0,0 @@ -#ifndef CAPInstanceDescriptor_h -#define CAPInstanceDescriptor_h - -@import UIKit; -@import Cordova; - -typedef NS_ENUM(NSInteger, CAPInstanceType) { - CAPInstanceTypeFixed NS_SWIFT_NAME(fixed), - CAPInstanceTypeVariable NS_SWIFT_NAME(variable) -} NS_SWIFT_NAME(InstanceType); - -typedef NS_OPTIONS(NSUInteger, CAPInstanceWarning) { - CAPInstanceWarningMissingAppDir NS_SWIFT_NAME(missingAppDir) = 1 << 0, - CAPInstanceWarningMissingFile NS_SWIFT_NAME(missingFile) = 1 << 1, - CAPInstanceWarningInvalidFile NS_SWIFT_NAME(invalidFile) = 1 << 2, - CAPInstanceWarningMissingCordovaFile NS_SWIFT_NAME(missingCordovaFile) = 1 << 3, - CAPInstanceWarningInvalidCordovaFile NS_SWIFT_NAME(invalidCordovaFile) = 1 << 4 -} NS_SWIFT_NAME(InstanceWarning); - -typedef NS_OPTIONS(NSUInteger, CAPInstanceLoggingBehavior) { - CAPInstanceLoggingBehaviorNone NS_SWIFT_NAME(none) = 1 << 0, - CAPInstanceLoggingBehaviorDebug NS_SWIFT_NAME(debug) = 1 << 1, - CAPInstanceLoggingBehaviorProduction NS_SWIFT_NAME(production) = 1 << 2, -} NS_SWIFT_NAME(InstanceLoggingBehavior); - -extern NSString * _Nonnull const CAPInstanceDescriptorDefaultScheme NS_SWIFT_UNAVAILABLE("Use InstanceDescriptorDefaults"); -extern NSString * _Nonnull const CAPInstanceDescriptorDefaultHostname NS_SWIFT_UNAVAILABLE("Use InstanceDescriptorDefaults"); - -NS_SWIFT_NAME(InstanceDescriptor) -@interface CAPInstanceDescriptor : NSObject -/** - @brief A value to append to the @c User-Agent string. Ignored if @c overridenUserAgentString is set. - @discussion Set by @c appendUserAgent in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *appendedUserAgentString; -/** - @brief A value that will completely replace the @c User-Agent string. Overrides @c appendedUserAgentString. - @discussion Set by @c overrideUserAgent in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *overridenUserAgentString; -/** - @brief The background color to set on the web view where content is not visible. - @discussion Set by @c backgroundColor in the configuration file. - */ -@property (nonatomic, retain, nullable) UIColor *backgroundColor; -/** - @brief Hostnames to which the web view is allowed to navigate without opening an external browser. - @discussion Set by @c allowNavigation in the configuration file. - */ -@property (nonatomic, copy, nonnull) NSArray *allowedNavigationHostnames; -/** - @brief The scheme that will be used for the server URL. - @discussion Defaults to @c capacitor. Set by @c server.iosScheme in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *urlScheme; -/** - @brief The path to a local html page to display in case of errors. - @discussion Defaults to nil. - */ -@property (nonatomic, copy, nullable) NSString *errorPath; -/** - @brief The hostname that will be used for the server URL. - @discussion Defaults to @c localhost. Set by @c server.hostname in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *urlHostname; -/** - @brief The fully formed URL that will be used as the server URL. - @discussion Defaults to nil, in which case the server URL will be constructed from @c urlScheme and @c urlHostname. If set, it will override the other properties. Set by @c server.url in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *serverURL; -/** - @brief The JSON dictionary that contains the plugin-specific configuration information. - @discussion Set by @c plugins in the configuration file. - */ -@property (nonatomic, retain, nonnull) NSDictionary *pluginConfigurations; -/** - @brief The build configurations under which logging should be enabled. - @discussion Defaults to @c debug. Set by @c loggingBehavior in the configuration file. - */ -@property (nonatomic, assign) CAPInstanceLoggingBehavior loggingBehavior; -/** - @brief Whether or not the web view can scroll. - @discussion Set by @c ios.scrollEnabled in the configuration file. Corresponds to @c isScrollEnabled on WKWebView. - */ -@property (nonatomic, assign) BOOL scrollingEnabled; -/** - @brief Whether or not the web view can zoom. - @discussion Set by @c zoomEnabled in the configuration file. - */ -@property (nonatomic, assign) BOOL zoomingEnabled; -/** - @brief Whether or not the web view will preview links. - @discussion Set by @c ios.allowsLinkPreview in the configuration file. Corresponds to @c allowsLinkPreview on WKWebView. - */ -@property (nonatomic, assign) BOOL allowLinkPreviews; -/** - @brief Whether or not the Capacitor runtime will set itself as the @c UNUserNotificationCenter delegate. - @discussion Defaults to @c true. Required to be @c true for notification plugins to work correctly. Set to @c false if your application will handle notifications independently. - */ -@property (nonatomic, assign) BOOL handleApplicationNotifications; -/** - @brief Enables web debugging by setting isInspectable of @c WKWebView to @c true on iOS 16.4 and greater - @discussion Defaults to true in debug mode and false in production - */ -@property (nonatomic, assign) BOOL isWebDebuggable; -/** - @brief How the web view will inset its content - @discussion Set by @c ios.contentInset in the configuration file. Corresponds to @c contentInsetAdjustmentBehavior on WKWebView. - */ -@property (nonatomic, assign) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior; -/** - @brief The base file URL from which Capacitor will load resources - @discussion Defaults to @c public/ located at the root of the application bundle. - */ -@property (nonatomic, copy, nonnull) NSURL *appLocation; -/** - @brief The path (relative to @c appLocation) which Capacitor will use for the inital URL at launch. - @discussion Defaults to nil, in which case Capacitor will attempt to load @c index.html. - */ -@property (nonatomic, copy, nullable) NSString *appStartPath; -/** - @brief Whether or not the Capacitor WebView will limit the navigation to @c WKAppBoundDomains listed in the Info.plist. - @discussion Defaults to @c false. Set by @c ios.limitsNavigationsToAppBoundDomains in the configuration file. Required to be @c true for plugins to work if the app includes @c WKAppBoundDomains in the Info.plist. - */ -@property (nonatomic, assign) BOOL limitsNavigationsToAppBoundDomains; -/** - @brief The content mode for the web view to use when it loads and renders web content. - @discussion Defaults to @c recommended. Set by @c ios.preferredContentMode in the configuration file. - */ -@property (nonatomic, copy, nullable) NSString *preferredContentMode; -/** - @brief The parser used to load the cofiguration for Cordova plugins. - */ -@property (nonatomic, copy, nonnull) CDVConfigParser *cordovaConfiguration; -/** - @brief Warnings generated during initialization. - */ -@property (nonatomic, assign) CAPInstanceWarning warnings; -/** - @brief The type of instance. - */ -@property (nonatomic, readonly) CAPInstanceType instanceType; -/** - @brief The JSON dictionary representing the contents of the configuration file. - @warning Deprecated. Do not use. - */ -@property (nonatomic, retain, nonnull) NSDictionary *legacyConfig; -/** - @brief Initialize the descriptor with the default environment. This assumes that the application was built with the help of the Capacitor CLI and that that the web app is located inside the application bundle at @c public/. - */ -- (instancetype _Nonnull)initAsDefault NS_SWIFT_NAME(init()); -/** - @brief Initialize the descriptor for use in other contexts. The app location is the one required parameter. - @param appURL The location of the folder containing the web app. - @param configURL The location of the Capacitor configuration file. - @param cordovaURL The location of the Cordova configuration file. - */ -- (instancetype _Nonnull)initAtLocation:(NSURL* _Nonnull)appURL configuration:(NSURL* _Nullable)configURL cordovaConfiguration:(NSURL* _Nullable)cordovaURL NS_SWIFT_NAME(init(at:configuration:cordovaConfiguration:)); -@end - -#endif /* CAPInstanceDescriptor_h */ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPlugin.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPlugin.h deleted file mode 100644 index 11bb9bda2..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPlugin.h +++ /dev/null @@ -1,55 +0,0 @@ -#import -#import - -@protocol CAPBridgeProtocol; -@class CAPPluginCall; - -@class PluginConfig; - -@interface CAPPlugin : NSObject - -@property (nonatomic, weak, nullable) WKWebView *webView; -@property (nonatomic, weak, nullable) id bridge; -@property (nonatomic, strong, nonnull) NSString *pluginId; -@property (nonatomic, strong, nonnull) NSString *pluginName; -@property (nonatomic, strong, nullable) NSMutableDictionary*> *eventListeners; -@property (nonatomic, strong, nullable) NSMutableDictionary *> *retainedEventArguments; -@property (nonatomic, assign) BOOL shouldStringifyDatesInCalls; - -- (instancetype _Nonnull) initWithBridge:(id _Nonnull) bridge pluginId:(NSString* _Nonnull) pluginId pluginName:(NSString* _Nonnull) pluginName DEPRECATED_MSG_ATTRIBUTE("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (void)addEventListener:(NSString* _Nonnull)eventName listener:(CAPPluginCall* _Nonnull)listener; -- (void)removeEventListener:(NSString* _Nonnull)eventName listener:(CAPPluginCall* _Nonnull)listener; -- (void)notifyListeners:(NSString* _Nonnull)eventName data:(NSDictionary* _Nullable)data; -- (void)notifyListeners:(NSString* _Nonnull)eventName data:(NSDictionary* _Nullable)data retainUntilConsumed:(BOOL)retain; -- (NSArray* _Nullable)getListeners:(NSString* _Nonnull)eventName; -- (BOOL)hasListeners:(NSString* _Nonnull)eventName; -- (void)addListener:(CAPPluginCall* _Nonnull)call; -- (void)removeListener:(CAPPluginCall* _Nonnull)call; -- (void)removeAllListeners:(CAPPluginCall* _Nonnull)call; -/** - * Default implementation of the capacitor 3.0 permission pattern - */ -- (void)checkPermissions:(CAPPluginCall* _Nonnull)call; -- (void)requestPermissions:(CAPPluginCall* _Nonnull)call; -/** - * Give the plugins a chance to take control when a URL is about to be loaded in the WebView. - * Returning true causes the WebView to abort loading the URL. - * Returning false causes the WebView to continue loading the URL. - * Returning nil will defer to the default Capacitor policy - */ -- (NSNumber* _Nullable)shouldOverrideLoad:(WKNavigationAction* _Nonnull)navigationAction; - -// Called after init if the plugin wants to do -// some loading so the plugin author doesn't -// need to override init() --(void)load; --(NSString* _Nonnull)getId; --(BOOL)getBool:(CAPPluginCall* _Nonnull) call field:(NSString* _Nonnull)field defaultValue:(BOOL)defaultValue DEPRECATED_MSG_ATTRIBUTE("Use accessors on CAPPluginCall instead. See CAPBridgedJSTypes.h for Obj-C implementations."); --(NSString* _Nullable)getString:(CAPPluginCall* _Nonnull)call field:(NSString* _Nonnull)field defaultValue:(NSString* _Nonnull)defaultValue DEPRECATED_MSG_ATTRIBUTE("Use accessors on CAPPluginCall instead. See CAPBridgedJSTypes.h for Obj-C implementations."); --(id _Nullable)getConfigValue:(NSString* _Nonnull)key __deprecated_msg("use getConfig() and access config values using the methods available depending on the type."); --(PluginConfig* _Nonnull)getConfig; --(void)setCenteredPopover:(UIViewController* _Nonnull) vc; --(void)setCenteredPopover:(UIViewController* _Nonnull) vc size:(CGSize) size; --(BOOL)supportsPopover DEPRECATED_MSG_ATTRIBUTE("All iOS 13+ devices support popover"); - -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPluginCall.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPluginCall.h deleted file mode 100644 index 46b3e67bc..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPluginCall.h +++ /dev/null @@ -1,22 +0,0 @@ -#import - -@class CAPPluginCall; -@class CAPPluginCallResult; -@class CAPPluginCallError; - -typedef void(^CAPPluginCallSuccessHandler)(CAPPluginCallResult *result, CAPPluginCall* call); -typedef void(^CAPPluginCallErrorHandler)(CAPPluginCallError *error); - -@interface CAPPluginCall : NSObject - -@property (nonatomic, assign) BOOL isSaved DEPRECATED_MSG_ATTRIBUTE("Use 'keepAlive' instead."); -@property (nonatomic, assign) BOOL keepAlive; -@property (nonatomic, strong) NSString *callbackId; -@property (nonatomic, strong) NSDictionary *options; -@property (nonatomic, copy) CAPPluginCallSuccessHandler successHandler; -@property (nonatomic, copy) CAPPluginCallErrorHandler errorHandler; - -- (instancetype)initWithCallbackId:(NSString *)callbackId options:(NSDictionary *)options success:(CAPPluginCallSuccessHandler)success error:(CAPPluginCallErrorHandler)error; - -- (void)save DEPRECATED_MSG_ATTRIBUTE("Use the 'keepAlive' property instead."); -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPluginMethod.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPluginMethod.h deleted file mode 100644 index a0a950d90..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/CAPPluginMethod.h +++ /dev/null @@ -1,36 +0,0 @@ -#import "CAPPluginCall.h" -#import "CAPPlugin.h" - -typedef enum { - CAPPluginMethodArgumentNotNullable, - CAPPluginMethodArgumentNullable -} CAPPluginMethodArgumentNullability; - -typedef NSString CAPPluginReturnType; - -/** - * Represents a single argument to a plugin method. - */ -@interface CAPPluginMethodArgument : NSObject - -@property (nonatomic, copy) NSString *name; -@property (nonatomic, assign) CAPPluginMethodArgumentNullability nullability; - -- (instancetype)initWithName:(NSString *)name nullability:(CAPPluginMethodArgumentNullability)nullability type:(NSString *)type; - -@end - -/** - * Represents a method that a plugin supports, with the ability - * to compute selectors and invoke the method. - */ -@interface CAPPluginMethod : NSObject - -@property (nonatomic, assign) SEL selector; -@property (nonatomic, strong) NSString *name; // Raw method name -@property (nonatomic, strong) CAPPluginReturnType *returnType; // Return type of method (i.e. callback/promise/sync) - -- (instancetype)initWithName:(NSString *)name returnType:(CAPPluginReturnType *)returnType; - - -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/Capacitor-Swift.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/Capacitor-Swift.h deleted file mode 100644 index f9668cb38..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/Capacitor-Swift.h +++ /dev/null @@ -1,1428 +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 CAPACITOR_SWIFT_H -#define CAPACITOR_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; -@import UIKit; -@import UserNotifications; -@import WebKit; -#endif - -#import - -#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="Capacitor",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class UIApplication; -@class NSURL; -@class NSUserActivity; -@protocol UIUserActivityRestoring; - -SWIFT_CLASS_NAMED("ApplicationDelegateProxy") -@interface CAPApplicationDelegateProxy : NSObject -- (BOOL)application:(UIApplication * _Nonnull)app openURL:(NSURL * _Nonnull)url options:(NSDictionary * _Nonnull)options SWIFT_WARN_UNUSED_RESULT; -- (BOOL)application:(UIApplication * _Nonnull)application continueUserActivity:(NSUserActivity * _Nonnull)userActivity restorationHandler:(void (^ _Nonnull)(NSArray> * _Nullable))restorationHandler SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class NSNotification; - -SWIFT_CLASS("_TtC9Capacitor9CAPBridge") SWIFT_DEPRECATED_MSG("'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@interface CAPBridge : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSNotification * _Nonnull statusBarTappedNotification;) -+ (NSNotification * _Nonnull)statusBarTappedNotification SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class UIViewController; -@class CAPInstanceConfiguration; -@class WKWebView; -@class CAPNotificationRouter; -@class NSString; -@class CAPPluginCall; -@class CAPPlugin; - -SWIFT_PROTOCOL("_TtP9Capacitor17CAPBridgeProtocol_") -@protocol CAPBridgeProtocol -@property (nonatomic, readonly, strong) UIViewController * _Nullable viewController; -@property (nonatomic, readonly, strong) CAPInstanceConfiguration * _Nonnull config; -@property (nonatomic, readonly, strong) WKWebView * _Nullable webView; -@property (nonatomic, readonly, strong) CAPNotificationRouter * _Nonnull notificationRouter; -@property (nonatomic, readonly) BOOL isSimEnvironment; -@property (nonatomic, readonly) BOOL isDevEnvironment; -@property (nonatomic, readonly) UIUserInterfaceStyle userInterfaceStyle; -@property (nonatomic, readonly) BOOL autoRegisterPlugins; -@property (nonatomic) BOOL statusBarVisible; -@property (nonatomic) UIStatusBarStyle statusBarStyle; -@property (nonatomic) UIStatusBarAnimation statusBarAnimation; -- (WKWebView * _Nullable)getWebView SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "webView"); -- (BOOL)isSimulator SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "isSimEnvironment"); -- (BOOL)isDevMode SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "isDevEnvironment"); -- (BOOL)getStatusBarVisible SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "statusBarVisible"); -- (UIStatusBarStyle)getStatusBarStyle SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "statusBarStyle"); -- (UIUserInterfaceStyle)getUserInterfaceStyle SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "userInterfaceStyle"); -- (NSString * _Nonnull)getLocalUrl SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Moved - equivalent is found on config.localURL"); -- (CAPPluginCall * _Nullable)getSavedCall:(NSString * _Nonnull)callbackId SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "savedCallWithID:"); -- (void)releaseCallWithCallbackId:(NSString * _Nonnull)callbackId SWIFT_DEPRECATED_MSG("", "releaseCallWithID:"); -- (CAPPlugin * _Nullable)pluginWithName:(NSString * _Nonnull)withName SWIFT_WARN_UNUSED_RESULT; -- (void)saveCall:(CAPPluginCall * _Nonnull)call; -- (CAPPluginCall * _Nullable)savedCallWithID:(NSString * _Nonnull)withID SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCall:(CAPPluginCall * _Nonnull)call; -- (void)releaseCallWithID:(NSString * _Nonnull)withID; -- (void)evalWithPlugin:(CAPPlugin * _Nonnull)plugin js:(NSString * _Nonnull)js; -- (void)evalWithJs:(NSString * _Nonnull)js; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target data:(NSString * _Nonnull)data; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (NSURL * _Nullable)localURLFromWebURL:(NSURL * _Nullable)webURL SWIFT_WARN_UNUSED_RESULT; -- (NSURL * _Nullable)portablePathFromLocalURL:(NSURL * _Nullable)localURL SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePath:(NSString * _Nonnull)path; -- (void)registerPluginType:(SWIFT_METATYPE(CAPPlugin) _Nonnull)pluginType; -- (void)registerPluginInstance:(CAPPlugin * _Nonnull)pluginInstance; -- (void)showAlertWithTitle:(NSString * _Nonnull)title message:(NSString * _Nonnull)message buttonTitle:(NSString * _Nonnull)buttonTitle; -- (void)presentVC:(UIViewController * _Nonnull)viewControllerToPresent animated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (void)dismissVCWithAnimated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -@end - -@class NSBundle; -@class NSCoder; - -SWIFT_CLASS("_TtC9Capacitor23CAPBridgeViewController") -@interface CAPBridgeViewController : UIViewController -@property (nonatomic, copy) NSArray * _Nonnull supportedOrientations; -- (void)loadView; -- (void)viewDidLoad; -- (BOOL)canPerformUnwindSegueAction:(SEL _Nonnull)action fromViewController:(UIViewController * _Nonnull)fromViewController withSender:(id _Nonnull)sender SWIFT_WARN_UNUSED_RESULT; -@property (nonatomic, readonly) BOOL prefersStatusBarHidden; -@property (nonatomic, readonly) UIStatusBarStyle preferredStatusBarStyle; -@property (nonatomic, readonly) UIStatusBarAnimation preferredStatusBarUpdateAnimation; -@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; -- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface CAPBridgeViewController (SWIFT_EXTENSION(Capacitor)) -- (NSString * _Nonnull)getServerBasePath SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePathWithPath:(NSString * _Nonnull)path; -@end - - - - -SWIFT_CLASS_NAMED("CAPConsolePlugin") -@interface CAPConsolePlugin : CAPPlugin -- (void)log:(CAPPluginCall * _Nonnull)call; -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS_NAMED("CAPCookiesPlugin") -@interface CAPCookiesPlugin : CAPPlugin -- (void)load; -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// CAPFileManager helps map file schemes to physical files, whether they are on -/// disk, in a bundle, or in another location. -SWIFT_CLASS("_TtC9Capacitor14CAPFileManager") -@interface CAPFileManager : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS_NAMED("CAPHttpPlugin") -@interface CAPHttpPlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// A CAPPlugin subclass meant to be explicitly initialized by the caller and not the bridge. -SWIFT_CLASS("_TtC9Capacitor17CAPInstancePlugin") -@interface CAPInstancePlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -/// Deprecated, will be removed -typedef SWIFT_ENUM(NSInteger, CAPNotifications, open) { - CAPNotificationsURLOpen = 0, - CAPNotificationsUniversalLinkOpen = 1, - CAPNotificationsContinueActivity = 2, - CAPNotificationsDidRegisterForRemoteNotificationsWithDeviceToken = 3, - CAPNotificationsDidFailToRegisterForRemoteNotificationsWithError = 4, - CAPNotificationsDecidePolicyForNavigationAction = 5, -}; - - -@class NSISO8601DateFormatter; - -@interface CAPPluginCall (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly, strong) NSDictionary * _Nonnull dictionaryRepresentation; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) NSISO8601DateFormatter * _Nonnull jsDateFormatter;) -+ (NSISO8601DateFormatter * _Nonnull)jsDateFormatter SWIFT_WARN_UNUSED_RESULT; -+ (void)setJsDateFormatter:(NSISO8601DateFormatter * _Nonnull)value; -@end - - -@interface CAPPluginCall (SWIFT_EXTENSION(Capacitor)) -- (BOOL)hasOption:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Presence of a key should not be considered significant. Use typed accessors to check the value instead."); -- (void)success SWIFT_DEPRECATED_MSG("", "resolve"); -- (void)success:(NSDictionary * _Nonnull)data SWIFT_DEPRECATED_MSG("", "resolve:"); -- (void)resolve; -- (void)resolve:(NSDictionary * _Nonnull)data; -- (void)error:(NSString * _Nonnull)message :(NSError * _Nullable)error :(NSDictionary * _Nonnull)data SWIFT_DEPRECATED_MSG("", "reject::::"); -- (void)reject:(NSString * _Nonnull)message :(NSString * _Nullable)code :(NSError * _Nullable)error :(NSDictionary * _Nullable)data; -- (void)unimplemented; -- (void)unimplemented:(NSString * _Nonnull)message; -- (void)unavailable; -- (void)unavailable:(NSString * _Nonnull)message; -@end - - -SWIFT_CLASS("_TtC9Capacitor18CAPPluginCallError") -@interface CAPPluginCallError : NSObject -@property (nonatomic, readonly, copy) NSString * _Nonnull message; -@property (nonatomic, readonly, copy) NSString * _Nullable code; -@property (nonatomic, readonly) NSError * _Nullable error; -@property (nonatomic, readonly, copy) NSDictionary * _Nullable data; -- (nonnull instancetype)init:(NSString * _Nonnull)message code:(NSString * _Nullable)code error:(NSError * _Nullable)error data:(NSDictionary * _Nullable)data OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS("_TtC9Capacitor19CAPPluginCallResult") -@interface CAPPluginCallResult : NSObject -@property (nonatomic, readonly, copy) NSDictionary * _Nullable data; -- (nonnull instancetype)init:(NSDictionary * _Nullable)data OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS_NAMED("CAPWebViewPlugin") -@interface CAPWebViewPlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC9Capacitor15CapacitorBridge") -@interface CapacitorBridge : NSObject -@property (nonatomic, readonly, strong) WKWebView * _Nullable webView; -@property (nonatomic, readonly) BOOL autoRegisterPlugins; -@property (nonatomic, strong) CAPNotificationRouter * _Nonnull notificationRouter; -@property (nonatomic, readonly) BOOL isSimEnvironment; -@property (nonatomic, readonly) BOOL isDevEnvironment; -@property (nonatomic, readonly) UIUserInterfaceStyle userInterfaceStyle; -@property (nonatomic) BOOL statusBarVisible; -@property (nonatomic) UIStatusBarStyle statusBarStyle; -@property (nonatomic) UIStatusBarAnimation statusBarAnimation; -@property (nonatomic, readonly, strong) UIViewController * _Nullable viewController; -@property (nonatomic, strong) CAPInstanceConfiguration * _Nonnull config; -- (WKWebView * _Nullable)getWebView SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isSimulator SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isDevMode SWIFT_WARN_UNUSED_RESULT; -- (BOOL)getStatusBarVisible SWIFT_WARN_UNUSED_RESULT; -- (UIStatusBarStyle)getStatusBarStyle SWIFT_WARN_UNUSED_RESULT; -- (UIUserInterfaceStyle)getUserInterfaceStyle SWIFT_WARN_UNUSED_RESULT; -- (NSString * _Nonnull)getLocalUrl SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePath:(NSString * _Nonnull)path; -- (void)registerPluginType:(SWIFT_METATYPE(CAPPlugin) _Nonnull)pluginType; -- (void)registerPluginInstance:(CAPPlugin * _Nonnull)pluginInstance; -- (CAPPlugin * _Nullable)pluginWithName:(NSString * _Nonnull)withName SWIFT_WARN_UNUSED_RESULT; -- (void)saveCall:(CAPPluginCall * _Nonnull)call; -- (CAPPluginCall * _Nullable)savedCallWithID:(NSString * _Nonnull)withID SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCall:(CAPPluginCall * _Nonnull)call; -- (void)releaseCallWithID:(NSString * _Nonnull)withID; -- (CAPPluginCall * _Nullable)getSavedCall:(NSString * _Nonnull)callbackId SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCallWithCallbackId:(NSString * _Nonnull)callbackId; -- (void)evalWithPlugin:(CAPPlugin * _Nonnull)plugin js:(NSString * _Nonnull)js; -- (void)evalWithJs:(NSString * _Nonnull)js; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target data:(NSString * _Nonnull)data; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -/// Translate a URL from the web view into a file URL for native iOS. -/// The web view may be handling several different types of URLs: -///
    -///
  • -/// res:// (shortcut scheme to web assets) -///
  • -///
  • -/// file:// (fully qualified URL to file on the local device) -///
  • -///
  • -/// base64:// (to be implemented) -///
  • -///
  • -///
  • -///
-- (NSURL * _Nullable)localURLFromWebURL:(NSURL * _Nullable)webURL SWIFT_WARN_UNUSED_RESULT; -/// Translate a file URL for native iOS into a URL to load in the web view. -- (NSURL * _Nullable)portablePathFromLocalURL:(NSURL * _Nullable)localURL SWIFT_WARN_UNUSED_RESULT; -- (void)showAlertWithTitle:(NSString * _Nonnull)title message:(NSString * _Nonnull)message buttonTitle:(NSString * _Nonnull)buttonTitle; -- (void)presentVC:(UIViewController * _Nonnull)viewControllerToPresent animated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (void)dismissVCWithAnimated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class NSURLSession; -@class NSURLSessionTask; -@class NSHTTPURLResponse; -@class NSURLRequest; - -SWIFT_CLASS("_TtC9Capacitor19CapacitorUrlRequest") -@interface CapacitorUrlRequest : NSObject -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class WKHTTPCookieStore; - -SWIFT_CLASS("_TtC9Capacitor25CapacitorWKCookieObserver") -@interface CapacitorWKCookieObserver : NSObject -- (void)cookiesDidChangeInCookieStore:(WKHTTPCookieStore * _Nonnull)cookieStore; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class PluginConfig; - -@interface CAPInstanceConfiguration (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly, copy) NSURL * _Nonnull appStartFileURL; -@property (nonatomic, readonly, copy) NSURL * _Nonnull appStartServerURL; -@property (nonatomic, readonly, copy) NSURL * _Nullable errorPathURL; -- (id _Nullable)getPluginConfigValue:(NSString * _Nonnull)pluginId :(NSString * _Nonnull)configKey SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use getPluginConfig"); -- (PluginConfig * _Nonnull)getPluginConfig:(NSString * _Nonnull)pluginId SWIFT_WARN_UNUSED_RESULT; -- (BOOL)shouldAllowNavigationTo:(NSString * _Nonnull)host SWIFT_WARN_UNUSED_RESULT; -- (id _Nullable)getValue:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use direct property accessors"); -- (NSString * _Nullable)getString:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use direct property accessors"); -@end - - - -@interface CAPInstanceDescriptor (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly) BOOL cordovaDeployDisabled; -- (void)normalize; -@end - - -@interface NSNotification (SWIFT_EXTENSION(Capacitor)) -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorOpenURL;) -+ (NSNotificationName _Nonnull)capacitorOpenURL SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorOpenUniversalLink;) -+ (NSNotificationName _Nonnull)capacitorOpenUniversalLink SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorContinueActivity;) -+ (NSNotificationName _Nonnull)capacitorContinueActivity SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDidRegisterForRemoteNotifications;) -+ (NSNotificationName _Nonnull)capacitorDidRegisterForRemoteNotifications SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDidFailToRegisterForRemoteNotifications;) -+ (NSNotificationName _Nonnull)capacitorDidFailToRegisterForRemoteNotifications SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDecidePolicyForNavigationAction;) -+ (NSNotificationName _Nonnull)capacitorDecidePolicyForNavigationAction SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorStatusBarTapped;) -+ (NSNotificationName _Nonnull)capacitorStatusBarTapped SWIFT_WARN_UNUSED_RESULT; -@end - - - -@class UNNotification; -@class UNNotificationResponse; - -SWIFT_PROTOCOL_NAMED("NotificationHandlerProtocol") -@protocol CAPNotificationHandlerProtocol -- (UNNotificationPresentationOptions)willPresentWithNotification:(UNNotification * _Nonnull)notification SWIFT_WARN_UNUSED_RESULT; -- (void)didReceiveWithResponse:(UNNotificationResponse * _Nonnull)response; -@end - -@class UNUserNotificationCenter; - -SWIFT_CLASS_NAMED("NotificationRouter") -@interface CAPNotificationRouter : NSObject -- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler; -- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC9Capacitor12PluginConfig") -@interface PluginConfig : NSObject -- (NSString * _Nullable)getString:(NSString * _Nonnull)configKey :(NSString * _Nullable)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (BOOL)getBoolean:(NSString * _Nonnull)configKey :(BOOL)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (NSInteger)getInt:(NSString * _Nonnull)configKey :(NSInteger)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isEmpty SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - - -@protocol WKURLSchemeTask; - -SWIFT_CLASS_NAMED("WebViewAssetHandler") -@interface CAPWebViewAssetHandler : NSObject -- (void)webView:(WKWebView * _Nonnull)webView startURLSchemeTask:(id _Nonnull)urlSchemeTask; -- (void)webView:(WKWebView * _Nonnull)webView stopURLSchemeTask:(id _Nonnull)urlSchemeTask; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class WKNavigation; -@class WKSecurityOrigin; -@class WKFrameInfo; -@class WKNavigationAction; -@class WKUserContentController; -@class WKScriptMessage; -@class WKWebViewConfiguration; -@class WKWindowFeatures; -@class UIScrollView; -@class UIView; - -SWIFT_CLASS_NAMED("WebViewDelegationHandler") -@interface CAPWebViewDelegationHandler : NSObject -- (void)webView:(WKWebView * _Nonnull)webView didStartProvisionalNavigation:(WKNavigation * _Null_unspecified)navigation; -- (void)webView:(WKWebView * _Nonnull)webView requestMediaCapturePermissionForOrigin:(WKSecurityOrigin * _Nonnull)origin initiatedByFrame:(WKFrameInfo * _Nonnull)frame type:(WKMediaCaptureType)type decisionHandler:(void (^ _Nonnull)(WKPermissionDecision))decisionHandler SWIFT_AVAILABILITY(ios,introduced=15); -- (void)webView:(WKWebView * _Nonnull)webView requestDeviceOrientationAndMotionPermissionForOrigin:(WKSecurityOrigin * _Nonnull)origin initiatedByFrame:(WKFrameInfo * _Nonnull)frame decisionHandler:(void (^ _Nonnull)(WKPermissionDecision))decisionHandler SWIFT_AVAILABILITY(ios,introduced=15); -- (void)webView:(WKWebView * _Nonnull)webView decidePolicyForNavigationAction:(WKNavigationAction * _Nonnull)navigationAction decisionHandler:(void (^ _Nonnull)(WKNavigationActionPolicy))decisionHandler; -- (void)webView:(WKWebView * _Nonnull)webView didFinishNavigation:(WKNavigation * _Null_unspecified)navigation; -- (void)webView:(WKWebView * _Nonnull)webView didFailNavigation:(WKNavigation * _Null_unspecified)navigation withError:(NSError * _Nonnull)error; -- (void)webView:(WKWebView * _Nonnull)webView didFailProvisionalNavigation:(WKNavigation * _Null_unspecified)navigation withError:(NSError * _Nonnull)error; -- (void)webViewWebContentProcessDidTerminate:(WKWebView * _Nonnull)webView; -- (void)userContentController:(WKUserContentController * _Nonnull)userContentController didReceiveScriptMessage:(WKScriptMessage * _Nonnull)message; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptAlertPanelWithMessage:(NSString * _Nonnull)message initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(void))completionHandler; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptConfirmPanelWithMessage:(NSString * _Nonnull)message initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(BOOL))completionHandler; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptTextInputPanelWithPrompt:(NSString * _Nonnull)prompt defaultText:(NSString * _Nullable)defaultText initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(NSString * _Nullable))completionHandler; -- (WKWebView * _Nullable)webView:(WKWebView * _Nonnull)webView createWebViewWithConfiguration:(WKWebViewConfiguration * _Nonnull)configuration forNavigationAction:(WKNavigationAction * _Nonnull)navigationAction windowFeatures:(WKWindowFeatures * _Nonnull)windowFeatures SWIFT_WARN_UNUSED_RESULT; -- (void)scrollViewWillBeginZooming:(UIScrollView * _Nonnull)scrollView withView:(UIView * _Nullable)view; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@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 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef CAPACITOR_SWIFT_H -#define CAPACITOR_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; -@import UIKit; -@import UserNotifications; -@import WebKit; -#endif - -#import - -#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="Capacitor",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) -@class UIApplication; -@class NSURL; -@class NSUserActivity; -@protocol UIUserActivityRestoring; - -SWIFT_CLASS_NAMED("ApplicationDelegateProxy") -@interface CAPApplicationDelegateProxy : NSObject -- (BOOL)application:(UIApplication * _Nonnull)app openURL:(NSURL * _Nonnull)url options:(NSDictionary * _Nonnull)options SWIFT_WARN_UNUSED_RESULT; -- (BOOL)application:(UIApplication * _Nonnull)application continueUserActivity:(NSUserActivity * _Nonnull)userActivity restorationHandler:(void (^ _Nonnull)(NSArray> * _Nullable))restorationHandler SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class NSNotification; - -SWIFT_CLASS("_TtC9Capacitor9CAPBridge") SWIFT_DEPRECATED_MSG("'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@interface CAPBridge : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSNotification * _Nonnull statusBarTappedNotification;) -+ (NSNotification * _Nonnull)statusBarTappedNotification SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class UIViewController; -@class CAPInstanceConfiguration; -@class WKWebView; -@class CAPNotificationRouter; -@class NSString; -@class CAPPluginCall; -@class CAPPlugin; - -SWIFT_PROTOCOL("_TtP9Capacitor17CAPBridgeProtocol_") -@protocol CAPBridgeProtocol -@property (nonatomic, readonly, strong) UIViewController * _Nullable viewController; -@property (nonatomic, readonly, strong) CAPInstanceConfiguration * _Nonnull config; -@property (nonatomic, readonly, strong) WKWebView * _Nullable webView; -@property (nonatomic, readonly, strong) CAPNotificationRouter * _Nonnull notificationRouter; -@property (nonatomic, readonly) BOOL isSimEnvironment; -@property (nonatomic, readonly) BOOL isDevEnvironment; -@property (nonatomic, readonly) UIUserInterfaceStyle userInterfaceStyle; -@property (nonatomic, readonly) BOOL autoRegisterPlugins; -@property (nonatomic) BOOL statusBarVisible; -@property (nonatomic) UIStatusBarStyle statusBarStyle; -@property (nonatomic) UIStatusBarAnimation statusBarAnimation; -- (WKWebView * _Nullable)getWebView SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "webView"); -- (BOOL)isSimulator SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "isSimEnvironment"); -- (BOOL)isDevMode SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "isDevEnvironment"); -- (BOOL)getStatusBarVisible SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "statusBarVisible"); -- (UIStatusBarStyle)getStatusBarStyle SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "statusBarStyle"); -- (UIUserInterfaceStyle)getUserInterfaceStyle SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "userInterfaceStyle"); -- (NSString * _Nonnull)getLocalUrl SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Moved - equivalent is found on config.localURL"); -- (CAPPluginCall * _Nullable)getSavedCall:(NSString * _Nonnull)callbackId SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("", "savedCallWithID:"); -- (void)releaseCallWithCallbackId:(NSString * _Nonnull)callbackId SWIFT_DEPRECATED_MSG("", "releaseCallWithID:"); -- (CAPPlugin * _Nullable)pluginWithName:(NSString * _Nonnull)withName SWIFT_WARN_UNUSED_RESULT; -- (void)saveCall:(CAPPluginCall * _Nonnull)call; -- (CAPPluginCall * _Nullable)savedCallWithID:(NSString * _Nonnull)withID SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCall:(CAPPluginCall * _Nonnull)call; -- (void)releaseCallWithID:(NSString * _Nonnull)withID; -- (void)evalWithPlugin:(CAPPlugin * _Nonnull)plugin js:(NSString * _Nonnull)js; -- (void)evalWithJs:(NSString * _Nonnull)js; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target data:(NSString * _Nonnull)data; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (NSURL * _Nullable)localURLFromWebURL:(NSURL * _Nullable)webURL SWIFT_WARN_UNUSED_RESULT; -- (NSURL * _Nullable)portablePathFromLocalURL:(NSURL * _Nullable)localURL SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePath:(NSString * _Nonnull)path; -- (void)registerPluginType:(SWIFT_METATYPE(CAPPlugin) _Nonnull)pluginType; -- (void)registerPluginInstance:(CAPPlugin * _Nonnull)pluginInstance; -- (void)showAlertWithTitle:(NSString * _Nonnull)title message:(NSString * _Nonnull)message buttonTitle:(NSString * _Nonnull)buttonTitle; -- (void)presentVC:(UIViewController * _Nonnull)viewControllerToPresent animated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (void)dismissVCWithAnimated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -@end - -@class NSBundle; -@class NSCoder; - -SWIFT_CLASS("_TtC9Capacitor23CAPBridgeViewController") -@interface CAPBridgeViewController : UIViewController -@property (nonatomic, copy) NSArray * _Nonnull supportedOrientations; -- (void)loadView; -- (void)viewDidLoad; -- (BOOL)canPerformUnwindSegueAction:(SEL _Nonnull)action fromViewController:(UIViewController * _Nonnull)fromViewController withSender:(id _Nonnull)sender SWIFT_WARN_UNUSED_RESULT; -@property (nonatomic, readonly) BOOL prefersStatusBarHidden; -@property (nonatomic, readonly) UIStatusBarStyle preferredStatusBarStyle; -@property (nonatomic, readonly) UIStatusBarAnimation preferredStatusBarUpdateAnimation; -@property (nonatomic, readonly) UIInterfaceOrientationMask supportedInterfaceOrientations; -- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; -- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface CAPBridgeViewController (SWIFT_EXTENSION(Capacitor)) -- (NSString * _Nonnull)getServerBasePath SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePathWithPath:(NSString * _Nonnull)path; -@end - - - - -SWIFT_CLASS_NAMED("CAPConsolePlugin") -@interface CAPConsolePlugin : CAPPlugin -- (void)log:(CAPPluginCall * _Nonnull)call; -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS_NAMED("CAPCookiesPlugin") -@interface CAPCookiesPlugin : CAPPlugin -- (void)load; -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// CAPFileManager helps map file schemes to physical files, whether they are on -/// disk, in a bundle, or in another location. -SWIFT_CLASS("_TtC9Capacitor14CAPFileManager") -@interface CAPFileManager : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS_NAMED("CAPHttpPlugin") -@interface CAPHttpPlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// A CAPPlugin subclass meant to be explicitly initialized by the caller and not the bridge. -SWIFT_CLASS("_TtC9Capacitor17CAPInstancePlugin") -@interface CAPInstancePlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -/// Deprecated, will be removed -typedef SWIFT_ENUM(NSInteger, CAPNotifications, open) { - CAPNotificationsURLOpen = 0, - CAPNotificationsUniversalLinkOpen = 1, - CAPNotificationsContinueActivity = 2, - CAPNotificationsDidRegisterForRemoteNotificationsWithDeviceToken = 3, - CAPNotificationsDidFailToRegisterForRemoteNotificationsWithError = 4, - CAPNotificationsDecidePolicyForNavigationAction = 5, -}; - - -@class NSISO8601DateFormatter; - -@interface CAPPluginCall (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly, strong) NSDictionary * _Nonnull dictionaryRepresentation; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) NSISO8601DateFormatter * _Nonnull jsDateFormatter;) -+ (NSISO8601DateFormatter * _Nonnull)jsDateFormatter SWIFT_WARN_UNUSED_RESULT; -+ (void)setJsDateFormatter:(NSISO8601DateFormatter * _Nonnull)value; -@end - - -@interface CAPPluginCall (SWIFT_EXTENSION(Capacitor)) -- (BOOL)hasOption:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Presence of a key should not be considered significant. Use typed accessors to check the value instead."); -- (void)success SWIFT_DEPRECATED_MSG("", "resolve"); -- (void)success:(NSDictionary * _Nonnull)data SWIFT_DEPRECATED_MSG("", "resolve:"); -- (void)resolve; -- (void)resolve:(NSDictionary * _Nonnull)data; -- (void)error:(NSString * _Nonnull)message :(NSError * _Nullable)error :(NSDictionary * _Nonnull)data SWIFT_DEPRECATED_MSG("", "reject::::"); -- (void)reject:(NSString * _Nonnull)message :(NSString * _Nullable)code :(NSError * _Nullable)error :(NSDictionary * _Nullable)data; -- (void)unimplemented; -- (void)unimplemented:(NSString * _Nonnull)message; -- (void)unavailable; -- (void)unavailable:(NSString * _Nonnull)message; -@end - - -SWIFT_CLASS("_TtC9Capacitor18CAPPluginCallError") -@interface CAPPluginCallError : NSObject -@property (nonatomic, readonly, copy) NSString * _Nonnull message; -@property (nonatomic, readonly, copy) NSString * _Nullable code; -@property (nonatomic, readonly) NSError * _Nullable error; -@property (nonatomic, readonly, copy) NSDictionary * _Nullable data; -- (nonnull instancetype)init:(NSString * _Nonnull)message code:(NSString * _Nullable)code error:(NSError * _Nullable)error data:(NSDictionary * _Nullable)data OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS("_TtC9Capacitor19CAPPluginCallResult") -@interface CAPPluginCallResult : NSObject -@property (nonatomic, readonly, copy) NSDictionary * _Nullable data; -- (nonnull instancetype)init:(NSDictionary * _Nullable)data OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS_NAMED("CAPWebViewPlugin") -@interface CAPWebViewPlugin : CAPPlugin -- (nonnull instancetype)initWithBridge:(id _Nonnull)bridge pluginId:(NSString * _Nonnull)pluginId pluginName:(NSString * _Nonnull)pluginName OBJC_DESIGNATED_INITIALIZER SWIFT_DEPRECATED_MSG("This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge."); -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC9Capacitor15CapacitorBridge") -@interface CapacitorBridge : NSObject -@property (nonatomic, readonly, strong) WKWebView * _Nullable webView; -@property (nonatomic, readonly) BOOL autoRegisterPlugins; -@property (nonatomic, strong) CAPNotificationRouter * _Nonnull notificationRouter; -@property (nonatomic, readonly) BOOL isSimEnvironment; -@property (nonatomic, readonly) BOOL isDevEnvironment; -@property (nonatomic, readonly) UIUserInterfaceStyle userInterfaceStyle; -@property (nonatomic) BOOL statusBarVisible; -@property (nonatomic) UIStatusBarStyle statusBarStyle; -@property (nonatomic) UIStatusBarAnimation statusBarAnimation; -@property (nonatomic, readonly, strong) UIViewController * _Nullable viewController; -@property (nonatomic, strong) CAPInstanceConfiguration * _Nonnull config; -- (WKWebView * _Nullable)getWebView SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isSimulator SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isDevMode SWIFT_WARN_UNUSED_RESULT; -- (BOOL)getStatusBarVisible SWIFT_WARN_UNUSED_RESULT; -- (UIStatusBarStyle)getStatusBarStyle SWIFT_WARN_UNUSED_RESULT; -- (UIUserInterfaceStyle)getUserInterfaceStyle SWIFT_WARN_UNUSED_RESULT; -- (NSString * _Nonnull)getLocalUrl SWIFT_WARN_UNUSED_RESULT; -- (void)setServerBasePath:(NSString * _Nonnull)path; -- (void)registerPluginType:(SWIFT_METATYPE(CAPPlugin) _Nonnull)pluginType; -- (void)registerPluginInstance:(CAPPlugin * _Nonnull)pluginInstance; -- (CAPPlugin * _Nullable)pluginWithName:(NSString * _Nonnull)withName SWIFT_WARN_UNUSED_RESULT; -- (void)saveCall:(CAPPluginCall * _Nonnull)call; -- (CAPPluginCall * _Nullable)savedCallWithID:(NSString * _Nonnull)withID SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCall:(CAPPluginCall * _Nonnull)call; -- (void)releaseCallWithID:(NSString * _Nonnull)withID; -- (CAPPluginCall * _Nullable)getSavedCall:(NSString * _Nonnull)callbackId SWIFT_WARN_UNUSED_RESULT; -- (void)releaseCallWithCallbackId:(NSString * _Nonnull)callbackId; -- (void)evalWithPlugin:(CAPPlugin * _Nonnull)plugin js:(NSString * _Nonnull)js; -- (void)evalWithJs:(NSString * _Nonnull)js; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target; -- (void)triggerJSEventWithEventName:(NSString * _Nonnull)eventName target:(NSString * _Nonnull)target data:(NSString * _Nonnull)data; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerWindowJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName; -- (void)triggerDocumentJSEventWithEventName:(NSString * _Nonnull)eventName data:(NSString * _Nonnull)data; -/// Translate a URL from the web view into a file URL for native iOS. -/// The web view may be handling several different types of URLs: -///
    -///
  • -/// res:// (shortcut scheme to web assets) -///
  • -///
  • -/// file:// (fully qualified URL to file on the local device) -///
  • -///
  • -/// base64:// (to be implemented) -///
  • -///
  • -///
  • -///
-- (NSURL * _Nullable)localURLFromWebURL:(NSURL * _Nullable)webURL SWIFT_WARN_UNUSED_RESULT; -/// Translate a file URL for native iOS into a URL to load in the web view. -- (NSURL * _Nullable)portablePathFromLocalURL:(NSURL * _Nullable)localURL SWIFT_WARN_UNUSED_RESULT; -- (void)showAlertWithTitle:(NSString * _Nonnull)title message:(NSString * _Nonnull)message buttonTitle:(NSString * _Nonnull)buttonTitle; -- (void)presentVC:(UIViewController * _Nonnull)viewControllerToPresent animated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (void)dismissVCWithAnimated:(BOOL)flag completion:(void (^ _Nullable)(void))completion; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class NSURLSession; -@class NSURLSessionTask; -@class NSHTTPURLResponse; -@class NSURLRequest; - -SWIFT_CLASS("_TtC9Capacitor19CapacitorUrlRequest") -@interface CapacitorUrlRequest : NSObject -- (void)URLSession:(NSURLSession * _Nonnull)session task:(NSURLSessionTask * _Nonnull)task willPerformHTTPRedirection:(NSHTTPURLResponse * _Nonnull)response newRequest:(NSURLRequest * _Nonnull)request completionHandler:(void (^ _Nonnull)(NSURLRequest * _Nullable))completionHandler; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class WKHTTPCookieStore; - -SWIFT_CLASS("_TtC9Capacitor25CapacitorWKCookieObserver") -@interface CapacitorWKCookieObserver : NSObject -- (void)cookiesDidChangeInCookieStore:(WKHTTPCookieStore * _Nonnull)cookieStore; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class PluginConfig; - -@interface CAPInstanceConfiguration (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly, copy) NSURL * _Nonnull appStartFileURL; -@property (nonatomic, readonly, copy) NSURL * _Nonnull appStartServerURL; -@property (nonatomic, readonly, copy) NSURL * _Nullable errorPathURL; -- (id _Nullable)getPluginConfigValue:(NSString * _Nonnull)pluginId :(NSString * _Nonnull)configKey SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use getPluginConfig"); -- (PluginConfig * _Nonnull)getPluginConfig:(NSString * _Nonnull)pluginId SWIFT_WARN_UNUSED_RESULT; -- (BOOL)shouldAllowNavigationTo:(NSString * _Nonnull)host SWIFT_WARN_UNUSED_RESULT; -- (id _Nullable)getValue:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use direct property accessors"); -- (NSString * _Nullable)getString:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use direct property accessors"); -@end - - - -@interface CAPInstanceDescriptor (SWIFT_EXTENSION(Capacitor)) -@property (nonatomic, readonly) BOOL cordovaDeployDisabled; -- (void)normalize; -@end - - -@interface NSNotification (SWIFT_EXTENSION(Capacitor)) -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorOpenURL;) -+ (NSNotificationName _Nonnull)capacitorOpenURL SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorOpenUniversalLink;) -+ (NSNotificationName _Nonnull)capacitorOpenUniversalLink SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorContinueActivity;) -+ (NSNotificationName _Nonnull)capacitorContinueActivity SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDidRegisterForRemoteNotifications;) -+ (NSNotificationName _Nonnull)capacitorDidRegisterForRemoteNotifications SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDidFailToRegisterForRemoteNotifications;) -+ (NSNotificationName _Nonnull)capacitorDidFailToRegisterForRemoteNotifications SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorDecidePolicyForNavigationAction;) -+ (NSNotificationName _Nonnull)capacitorDecidePolicyForNavigationAction SWIFT_WARN_UNUSED_RESULT; -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSNotificationName _Nonnull capacitorStatusBarTapped;) -+ (NSNotificationName _Nonnull)capacitorStatusBarTapped SWIFT_WARN_UNUSED_RESULT; -@end - - - -@class UNNotification; -@class UNNotificationResponse; - -SWIFT_PROTOCOL_NAMED("NotificationHandlerProtocol") -@protocol CAPNotificationHandlerProtocol -- (UNNotificationPresentationOptions)willPresentWithNotification:(UNNotification * _Nonnull)notification SWIFT_WARN_UNUSED_RESULT; -- (void)didReceiveWithResponse:(UNNotificationResponse * _Nonnull)response; -@end - -@class UNUserNotificationCenter; - -SWIFT_CLASS_NAMED("NotificationRouter") -@interface CAPNotificationRouter : NSObject -- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler; -- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC9Capacitor12PluginConfig") -@interface PluginConfig : NSObject -- (NSString * _Nullable)getString:(NSString * _Nonnull)configKey :(NSString * _Nullable)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (BOOL)getBoolean:(NSString * _Nonnull)configKey :(BOOL)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (NSInteger)getInt:(NSString * _Nonnull)configKey :(NSInteger)defaultValue SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isEmpty SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - - -@protocol WKURLSchemeTask; - -SWIFT_CLASS_NAMED("WebViewAssetHandler") -@interface CAPWebViewAssetHandler : NSObject -- (void)webView:(WKWebView * _Nonnull)webView startURLSchemeTask:(id _Nonnull)urlSchemeTask; -- (void)webView:(WKWebView * _Nonnull)webView stopURLSchemeTask:(id _Nonnull)urlSchemeTask; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class WKNavigation; -@class WKSecurityOrigin; -@class WKFrameInfo; -@class WKNavigationAction; -@class WKUserContentController; -@class WKScriptMessage; -@class WKWebViewConfiguration; -@class WKWindowFeatures; -@class UIScrollView; -@class UIView; - -SWIFT_CLASS_NAMED("WebViewDelegationHandler") -@interface CAPWebViewDelegationHandler : NSObject -- (void)webView:(WKWebView * _Nonnull)webView didStartProvisionalNavigation:(WKNavigation * _Null_unspecified)navigation; -- (void)webView:(WKWebView * _Nonnull)webView requestMediaCapturePermissionForOrigin:(WKSecurityOrigin * _Nonnull)origin initiatedByFrame:(WKFrameInfo * _Nonnull)frame type:(WKMediaCaptureType)type decisionHandler:(void (^ _Nonnull)(WKPermissionDecision))decisionHandler SWIFT_AVAILABILITY(ios,introduced=15); -- (void)webView:(WKWebView * _Nonnull)webView requestDeviceOrientationAndMotionPermissionForOrigin:(WKSecurityOrigin * _Nonnull)origin initiatedByFrame:(WKFrameInfo * _Nonnull)frame decisionHandler:(void (^ _Nonnull)(WKPermissionDecision))decisionHandler SWIFT_AVAILABILITY(ios,introduced=15); -- (void)webView:(WKWebView * _Nonnull)webView decidePolicyForNavigationAction:(WKNavigationAction * _Nonnull)navigationAction decisionHandler:(void (^ _Nonnull)(WKNavigationActionPolicy))decisionHandler; -- (void)webView:(WKWebView * _Nonnull)webView didFinishNavigation:(WKNavigation * _Null_unspecified)navigation; -- (void)webView:(WKWebView * _Nonnull)webView didFailNavigation:(WKNavigation * _Null_unspecified)navigation withError:(NSError * _Nonnull)error; -- (void)webView:(WKWebView * _Nonnull)webView didFailProvisionalNavigation:(WKNavigation * _Null_unspecified)navigation withError:(NSError * _Nonnull)error; -- (void)webViewWebContentProcessDidTerminate:(WKWebView * _Nonnull)webView; -- (void)userContentController:(WKUserContentController * _Nonnull)userContentController didReceiveScriptMessage:(WKScriptMessage * _Nonnull)message; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptAlertPanelWithMessage:(NSString * _Nonnull)message initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(void))completionHandler; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptConfirmPanelWithMessage:(NSString * _Nonnull)message initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(BOOL))completionHandler; -- (void)webView:(WKWebView * _Nonnull)webView runJavaScriptTextInputPanelWithPrompt:(NSString * _Nonnull)prompt defaultText:(NSString * _Nullable)defaultText initiatedByFrame:(WKFrameInfo * _Nonnull)frame completionHandler:(void (^ _Nonnull)(NSString * _Nullable))completionHandler; -- (WKWebView * _Nullable)webView:(WKWebView * _Nonnull)webView createWebViewWithConfiguration:(WKWebViewConfiguration * _Nonnull)configuration forNavigationAction:(WKNavigationAction * _Nonnull)navigationAction windowFeatures:(WKWindowFeatures * _Nonnull)windowFeatures SWIFT_WARN_UNUSED_RESULT; -- (void)scrollViewWillBeginZooming:(UIScrollView * _Nonnull)scrollView withView:(UIView * _Nullable)view; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@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/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/Capacitor.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/Capacitor.h deleted file mode 100644 index 717098298..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Headers/Capacitor.h +++ /dev/null @@ -1,15 +0,0 @@ -#import - -//! Project version number for bridge. -FOUNDATION_EXPORT double CapacitorVersionNumber; - -//! Project version string for bridge. -FOUNDATION_EXPORT const unsigned char CapacitorVersionString[]; - -#import -#import -#import -#import -#import -#import - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Info.plist b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Info.plist deleted file mode 100644 index 207859ac1..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Info.plist and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index e42a063a4..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,29764 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPCookiesPlugin", - "printedName": "CAPCookiesPlugin", - "children": [ - { - "kind": "Function", - "name": "load", - "printedName": "load()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)load", - "mangledName": "$s9Capacitor16CAPCookiesPluginC4loadyyF", - "moduleName": "Capacitor", - "overriding": true, - "objc_name": "load", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPCookiesPlugin", - "printedName": "Capacitor.CAPCookiesPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPCookiesPlugin", - "printedName": "Capacitor.CAPCookiesPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)init", - "mangledName": "$s9Capacitor16CAPCookiesPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin", - "mangledName": "$s9Capacitor16CAPCookiesPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPCookiesPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Router", - "printedName": "Router", - "children": [ - { - "kind": "Function", - "name": "route", - "printedName": "route(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor6RouterP5route3forS2S_tF", - "mangledName": "$s9Capacitor6RouterP5route3forS2S_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "basePath", - "printedName": "basePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor6RouterP8basePathSSvp", - "mangledName": "$s9Capacitor6RouterP8basePathSSvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvg", - "mangledName": "$s9Capacitor6RouterP8basePathSSvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvs", - "mangledName": "$s9Capacitor6RouterP8basePathSSvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvM", - "mangledName": "$s9Capacitor6RouterP8basePathSSvM", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor6RouterP", - "mangledName": "$s9Capacitor6RouterP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorRouter", - "printedName": "CapacitorRouter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorRouter", - "printedName": "Capacitor.CapacitorRouter", - "usr": "s:9Capacitor0A6RouterV" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A6RouterVACycfc", - "mangledName": "$s9Capacitor0A6RouterVACycfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "basePath", - "printedName": "basePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6RouterV8basePathSSvp", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvg", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvs", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvM", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "route", - "printedName": "route(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6RouterV5route3forS2S_tF", - "mangledName": "$s9Capacitor0A6RouterV5route3forS2S_tF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor0A6RouterV", - "mangledName": "$s9Capacitor0A6RouterV", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Router", - "printedName": "Router", - "usr": "s:9Capacitor6RouterP", - "mangledName": "$s9Capacitor6RouterP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorUrlRequest", - "printedName": "CapacitorUrlRequest", - "children": [ - { - "kind": "Var", - "name": "request", - "printedName": "request", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvp", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "headers", - "printedName": "headers", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvp", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvg", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvs", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvM", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorUrlRequestError", - "printedName": "CapacitorUrlRequestError", - "children": [ - { - "kind": "Var", - "name": "serializationError", - "printedName": "serializationError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError.Type) -> (Swift.String?) -> Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequestError", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequestError", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO013serializationD0yAESSSgcAEmF", - "mangledName": "$s9Capacitor0A10UrlRequestC0abC5ErrorO013serializationD0yAESSSgcAEmF", - "moduleName": "Capacitor" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO", - "mangledName": "$s9Capacitor0A10UrlRequestC0abC5ErrorO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:method:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc", - "mangledName": "$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getRequestDataAsJson", - "printedName": "getRequestDataAsJson(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsFormUrlEncoded", - "printedName": "getRequestDataAsFormUrlEncoded(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsMultipartFormData", - "printedName": "getRequestDataAsMultipartFormData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsString", - "printedName": "getRequestDataAsString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestHeader", - "printedName": "getRequestHeader(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestData", - "printedName": "getRequestData(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestHeaders", - "printedName": "setRequestHeaders(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestHeaders", - "printedName": "setRequestHeaders(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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": "s:9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestBody", - "printedName": "setRequestBody(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setContentType", - "printedName": "setContentType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC14setContentTypeyySSSgF", - "mangledName": "$s9Capacitor0A10UrlRequestC14setContentTypeyySSSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setTimeout", - "printedName": "setTimeout(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC10setTimeoutyySdF", - "mangledName": "$s9Capacitor0A10UrlRequestC10setTimeoutyySdF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUrlRequest", - "printedName": "getUrlRequest()", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "mangledName": "$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUrlSession", - "printedName": "getUrlSession(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest(im)init", - "mangledName": "$s9Capacitor0A10UrlRequestCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest", - "mangledName": "$s9Capacitor0A10UrlRequestC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "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": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Cordova", - "printedName": "Cordova", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeViewController", - "printedName": "CAPBridgeViewController", - "children": [ - { - "kind": "Var", - "name": "bridge", - "printedName": "bridge", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isStatusBarVisible", - "printedName": "isStatusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "supportedOrientations", - "printedName": "supportedOrientations", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)supportedOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "Custom", - "HasStorage", - "AccessControl", - "ObjC" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)supportedOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)setSupportedOrientations:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "isNewBinary", - "printedName": "isNewBinary", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "Lazy", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "loadView", - "printedName": "loadView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)loadView", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC04loadC0yyF", - "moduleName": "Capacitor", - "overriding": true, - "objc_name": "loadView", - "declAttributes": [ - "ObjC", - "Custom", - "Final", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "viewDidLoad", - "printedName": "viewDidLoad()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)viewDidLoad", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11viewDidLoadyyF", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "viewDidLoad", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canPerformUnwindSegueAction", - "printedName": "canPerformUnwindSegueAction(_:from:withSender:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Selector", - "printedName": "ObjectiveC.Selector", - "usr": "s:10ObjectiveC8SelectorV" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)canPerformUnwindSegueAction:fromViewController:withSender:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC27canPerformUnwindSegueAction_4from10withSenderSb10ObjectiveC8SelectorV_So06UIViewD0CyptF", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "canPerformUnwindSegueAction:fromViewController:withSender:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "instanceDescriptor", - "printedName": "instanceDescriptor()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceDescriptor", - "printedName": "Capacitor.InstanceDescriptor", - "usr": "c:objc(cs)CAPInstanceDescriptor" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "router", - "printedName": "router()", - "children": [ - { - "kind": "TypeNominal", - "name": "Router", - "printedName": "Capacitor.Router", - "usr": "s:9Capacitor6RouterP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webViewConfiguration", - "printedName": "webViewConfiguration(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(with:configuration:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "CGRect", - "printedName": "CoreFoundation.CGRect", - "usr": "c:@S@CGRect" - }, - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "capacitorDidLoad", - "printedName": "capacitorDidLoad()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadWebView", - "printedName": "loadWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarDefaults", - "printedName": "setStatusBarDefaults()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setScreenOrientationDefaults", - "printedName": "setScreenOrientationDefaults()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "prefersStatusBarHidden", - "printedName": "prefersStatusBarHidden", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)prefersStatusBarHidden", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "prefersStatusBarHidden", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)prefersStatusBarHidden", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "prefersStatusBarHidden", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)preferredStatusBarStyle", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)preferredStatusBarStyle", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "preferredStatusBarUpdateAnimation", - "printedName": "preferredStatusBarUpdateAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)preferredStatusBarUpdateAnimation", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC33preferredStatusBarUpdateAnimationSo08UIStatusgI0Vvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarUpdateAnimation", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)preferredStatusBarUpdateAnimation", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC33preferredStatusBarUpdateAnimationSo08UIStatusgI0Vvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarUpdateAnimation", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "supportedInterfaceOrientations", - "printedName": "supportedInterfaceOrientations", - "children": [ - { - "kind": "TypeNominal", - "name": "UIInterfaceOrientationMask", - "printedName": "UIKit.UIInterfaceOrientationMask", - "usr": "c:@E@UIInterfaceOrientationMask" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)supportedInterfaceOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "supportedInterfaceOrientations", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIInterfaceOrientationMask", - "printedName": "UIKit.UIInterfaceOrientationMask", - "usr": "c:@E@UIInterfaceOrientationMask" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)supportedInterfaceOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "supportedInterfaceOrientations", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nibName:bundle:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeViewController", - "printedName": "Capacitor.CAPBridgeViewController", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Bundle?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bundle", - "printedName": "Foundation.Bundle", - "usr": "c:objc(cs)NSBundle" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)initWithNibName:bundle:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "initWithNibName:bundle:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeViewController", - "printedName": "Capacitor.CAPBridgeViewController", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)initWithCoder:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "initWithCoder:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getServerBasePath", - "printedName": "getServerBasePath()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@objc(cs)CAPBridgeViewController(im)getServerBasePath", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "Custom", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(path:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@objc(cs)CAPBridgeViewController(im)setServerBasePathWithPath:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tF", - "moduleName": "Capacitor", - "objc_name": "setServerBasePathWithPath:", - "declAttributes": [ - "Dynamic", - "Custom", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "bridgedWebView", - "printedName": "bridgedWebView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgedViewController", - "printedName": "bridgedViewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)UIViewController", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIViewController", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CAPBridgeDelegate", - "printedName": "CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP" - }, - { - "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": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeProtocol", - "printedName": "CAPBridgeProtocol", - "children": [ - { - "kind": "Var", - "name": "viewController", - "printedName": "viewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)viewController", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14viewControllerSo06UIViewE0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)viewController", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14viewControllerSo06UIViewE0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "config", - "printedName": "config", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)config", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6configSo24CAPInstanceConfigurationCvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)config", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6configSo24CAPInstanceConfigurationCvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)webView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP7webViewSo05WKWebE0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)webView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP7webViewSo05WKWebE0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "notificationRouter", - "printedName": "notificationRouter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)notificationRouter", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18notificationRouterAA012NotificationE0Cvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)notificationRouter", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18notificationRouterAA012NotificationE0Cvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isSimEnvironment", - "printedName": "isSimEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)isSimEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isSimEnvironmentSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isSimEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isSimEnvironmentSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)isDevEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isDevEnvironmentSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isDevEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isDevEnvironmentSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "userInterfaceStyle", - "printedName": "userInterfaceStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)userInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18userInterfaceStyleSo06UIUsereF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)userInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18userInterfaceStyleSo06UIUsereF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "autoRegisterPlugins", - "printedName": "autoRegisterPlugins", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)autoRegisterPlugins", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19autoRegisterPluginsSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)autoRegisterPlugins", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19autoRegisterPluginsSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "statusBarVisible", - "printedName": "statusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarVisible:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarStyle:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarAnimation", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarAnimation", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarAnimation:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Function", - "name": "getWebView", - "printedName": "getWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getWebView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP10getWebViewSo05WKWebF0CSgyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isSimulator", - "printedName": "isSimulator()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isSimulator", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11isSimulatorSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isDevMode", - "printedName": "isDevMode()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isDevMode", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9isDevModeSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarVisible", - "printedName": "getStatusBarVisible()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getStatusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19getStatusBarVisibleSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarStyle", - "printedName": "getStatusBarStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getStatusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP17getStatusBarStyleSo08UIStatusfG0VyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUserInterfaceStyle", - "printedName": "getUserInterfaceStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getUserInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP21getUserInterfaceStyleSo06UIUserfG0VyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLocalUrl", - "printedName": "getLocalUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getLocalUrl", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11getLocalUrlSSyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSavedCall", - "printedName": "getSavedCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getSavedCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP12getSavedCallySo09CAPPluginF0CSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(callbackId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCallWithCallbackId:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCall10callbackIdySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "plugin", - "printedName": "plugin(withName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPlugin?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)pluginWithName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6plugin8withNameSo9CAPPluginCSgSS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "saveCall", - "printedName": "saveCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)saveCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP8saveCallyySo09CAPPluginE0CF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "savedCall", - "printedName": "savedCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)savedCallWithID:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9savedCall6withIDSo09CAPPluginE0CSgSS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCallyySo09CAPPluginE0CF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCallWithID:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCall6withIDySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "evalWithPlugin", - "printedName": "evalWithPlugin(_:js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)evalWithPlugin:js:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14evalWithPlugin_2jsySo9CAPPluginC_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "eval", - "printedName": "eval(js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)evalWithJs:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP4eval2jsySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerJSEventWithEventName:target:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14triggerJSEvent9eventName6targetySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:data:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerJSEventWithEventName:target:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14triggerJSEvent9eventName6target4dataySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerWindowJSEventWithEventName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP20triggerWindowJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerWindowJSEventWithEventName:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP20triggerWindowJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerDocumentJSEventWithEventName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22triggerDocumentJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerDocumentJSEventWithEventName:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22triggerDocumentJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "localURL", - "printedName": "localURL(fromWebURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)localURLFromWebURL:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP8localURL07fromWebE010Foundation0E0VSgAI_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "portablePath", - "printedName": "portablePath(fromLocalURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)portablePathFromLocalURL:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP12portablePath12fromLocalURL10Foundation0H0VSgAI_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setServerBasePath:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP17setServerBasePathyySSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginType", - "printedName": "registerPluginType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPPlugin.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)registerPluginType:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18registerPluginTypeyySo9CAPPluginCmF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginInstance", - "printedName": "registerPluginInstance(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)registerPluginInstance:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22registerPluginInstanceyySo9CAPPluginCF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showAlertWith", - "printedName": "showAlertWith(title:message:buttonTitle:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)showAlertWithTitle:message:buttonTitle:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP13showAlertWith5title7message11buttonTitleySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentVC", - "printedName": "presentVC(_:animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)presentVC:animated:completion:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissVC", - "printedName": "dismissVC(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)dismissVCWithAnimated:completion:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9dismissVC8animated10completionySb_yycSgtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "modulePrint", - "printedName": "modulePrint(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "alert", - "printedName": "alert(_:_:_:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorBridgeError", - "printedName": "CapacitorBridgeError", - "children": [ - { - "kind": "Var", - "name": "errorExportingCoreJS", - "printedName": "errorExportingCoreJS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CapacitorBridgeError.Type) -> Capacitor.CapacitorBridgeError", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorBridgeError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor0A11BridgeErrorO20errorExportingCoreJSyA2CmF", - "mangledName": "$s9Capacitor0A11BridgeErrorO20errorExportingCoreJSyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - }, - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO9hashValueSivp", - "mangledName": "$s9Capacitor0A11BridgeErrorO9hashValueSivp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO9hashValueSivg", - "mangledName": "$s9Capacitor0A11BridgeErrorO9hashValueSivg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF", - "moduleName": "Capacitor", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDomain", - "printedName": "errorDomain", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO11errorDomainSSvpZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO11errorDomainSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO11errorDomainSSvgZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZ", - "moduleName": "Capacitor", - "static": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorCode", - "printedName": "errorCode", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO9errorCodeSivp", - "mangledName": "$s9Capacitor0A11BridgeErrorO9errorCodeSivp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO9errorCodeSivg", - "mangledName": "$s9Capacitor0A11BridgeErrorO9errorCodeSivg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorUserInfo", - "printedName": "errorUserInfo", - "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": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvp", - "mangledName": "$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "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": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg", - "mangledName": "$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor0A11BridgeErrorO", - "mangledName": "$s9Capacitor0A11BridgeErrorO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "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": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomNSError", - "printedName": "CustomNSError", - "usr": "s:10Foundation13CustomNSErrorP", - "mangledName": "$s10Foundation13CustomNSErrorP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "WebViewDelegationHandler", - "printedName": "WebViewDelegationHandler", - "children": [ - { - "kind": "Var", - "name": "contentController", - "printedName": "contentController", - "children": [ - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvp", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorBridge?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "cleanUp", - "printedName": "cleanUp()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor24WebViewDelegationHandlerC7cleanUpyyF", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC7cleanUpyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "willLoadWebview", - "printedName": "willLoadWebview(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didStartProvisionalNavigation:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didStartProvisionalNavigation:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtF", - "moduleName": "Capacitor", - "objc_name": "webView:didStartProvisionalNavigation:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:requestMediaCapturePermissionFor:initiatedByFrame:type:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKSecurityOrigin", - "printedName": "WebKit.WKSecurityOrigin", - "usr": "c:objc(cs)WKSecurityOrigin" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeNominal", - "name": "WKMediaCaptureType", - "printedName": "WebKit.WKMediaCaptureType", - "usr": "c:@E@WKMediaCaptureType" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKPermissionDecision) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKPermissionDecision", - "printedName": "WebKit.WKPermissionDecision", - "usr": "c:@E@WKPermissionDecision" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctF", - "moduleName": "Capacitor", - "intro_iOS": "15", - "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:requestDeviceOrientationAndMotionPermissionFor:initiatedByFrame:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKSecurityOrigin", - "printedName": "WebKit.WKSecurityOrigin", - "usr": "c:objc(cs)WKSecurityOrigin" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKPermissionDecision) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKPermissionDecision", - "printedName": "WebKit.WKPermissionDecision", - "usr": "c:@E@WKPermissionDecision" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctF", - "moduleName": "Capacitor", - "intro_iOS": "15", - "objc_name": "webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:decidePolicyFor:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationAction", - "printedName": "WebKit.WKNavigationAction", - "usr": "c:objc(cs)WKNavigationAction" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKNavigationActionPolicy) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationActionPolicy", - "printedName": "WebKit.WKNavigationActionPolicy", - "usr": "c:@E@WKNavigationActionPolicy" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:decidePolicyForNavigationAction:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF", - "moduleName": "Capacitor", - "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFinish:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFinishNavigation:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtF", - "moduleName": "Capacitor", - "objc_name": "webView:didFinishNavigation:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFail:withError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFailNavigation:withError:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:didFailNavigation:withError:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFailProvisionalNavigation:withError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFailProvisionalNavigation:withError:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:didFailProvisionalNavigation:withError:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webViewWebContentProcessDidTerminate", - "printedName": "webViewWebContentProcessDidTerminate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webViewWebContentProcessDidTerminate:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CF", - "moduleName": "Capacitor", - "objc_name": "webViewWebContentProcessDidTerminate:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "userContentController", - "printedName": "userContentController(_:didReceive:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - }, - { - "kind": "TypeNominal", - "name": "WKScriptMessage", - "printedName": "WebKit.WKScriptMessage", - "usr": "c:objc(cs)WKScriptMessage" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)userContentController:didReceiveScriptMessage:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtF", - "moduleName": "Capacitor", - "objc_name": "userContentController:didReceiveScriptMessage:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:createWebViewWith:for:windowFeatures:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationAction", - "printedName": "WebKit.WKNavigationAction", - "usr": "c:objc(cs)WKNavigationAction" - }, - { - "kind": "TypeNominal", - "name": "WKWindowFeatures", - "printedName": "WebKit.WKWindowFeatures", - "usr": "c:objc(cs)WKWindowFeatures" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtF", - "moduleName": "Capacitor", - "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scrollViewWillBeginZooming", - "printedName": "scrollViewWillBeginZooming(_:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIScrollView", - "printedName": "UIKit.UIScrollView", - "usr": "c:objc(cs)UIScrollView" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIView?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)scrollViewWillBeginZooming:withView:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtF", - "moduleName": "Capacitor", - "objc_name": "scrollViewWillBeginZooming:withView:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)init", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewDelegationHandler", - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "JSValue", - "printedName": "JSValue", - "declKind": "Protocol", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "children": [ - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerP9getStringyS2S_SStF", - "mangledName": "$s9Capacitor17JSStringContainerP9getStringyS2S_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerP9getStringySSSgSSF", - "mangledName": "$s9Capacitor17JSStringContainerP9getStringySSSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF", - "mangledName": "$s9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "children": [ - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF", - "mangledName": "$s9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerP7getBoolySbSgSSF", - "mangledName": "$s9Capacitor15JSBoolContainerP7getBoolySbSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF", - "mangledName": "$s9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "children": [ - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerP6getIntySiSS_SitF", - "mangledName": "$s9Capacitor14JSIntContainerP6getIntySiSS_SitF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerP6getIntySiSgSSF", - "mangledName": "$s9Capacitor14JSIntContainerP6getIntySiSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF", - "mangledName": "$s9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "children": [ - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerP8getFloatySfSS_SftF", - "mangledName": "$s9Capacitor16JSFloatContainerP8getFloatySfSS_SftF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerP8getFloatySfSgSSF", - "mangledName": "$s9Capacitor16JSFloatContainerP8getFloatySfSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF", - "mangledName": "$s9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "children": [ - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF", - "mangledName": "$s9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerP9getDoubleySdSgSSF", - "mangledName": "$s9Capacitor17JSDoubleContainerP9getDoubleySdSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF", - "mangledName": "$s9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "children": [ - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF", - "mangledName": "$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSgSSF", - "mangledName": "$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF", - "mangledName": "$s9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "children": [ - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_1_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_1_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_1_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_1_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_1_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_1_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF", - "mangledName": "$s9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "children": [ - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSValueContainer", - "printedName": "JSValueContainer", - "children": [ - { - "kind": "Var", - "name": "jsDateFormatter", - "printedName": "jsDateFormatter", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvpZ", - "mangledName": "$s9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvpZ", - "moduleName": "Capacitor", - "static": true, - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvgZ", - "mangledName": "$s9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "jsObjectRepresentation", - "printedName": "jsObjectRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvp", - "mangledName": "$s9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvg", - "mangledName": "$s9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getValue", - "printedName": "getValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAny", - "printedName": "getAny(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getStringySSSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE6getIntySiSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE6getIntySiSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getArrayySayAA0B0_pGSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getArrayySayAA0B0_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSValueContainerP", - "mangledName": "$s9Capacitor16JSValueContainerP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : Capacitor.JSArrayContainer, τ_0_0 : Capacitor.JSBoolContainer, τ_0_0 : Capacitor.JSDateContainer, τ_0_0 : Capacitor.JSDoubleContainer, τ_0_0 : Capacitor.JSFloatContainer, τ_0_0 : Capacitor.JSIntContainer, τ_0_0 : Capacitor.JSObjectContainer, τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP" - }, - { - "kind": "Conformance", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP" - }, - { - "kind": "Conformance", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP" - }, - { - "kind": "Conformance", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP" - }, - { - "kind": "Conformance", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP" - }, - { - "kind": "Conformance", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP" - }, - { - "kind": "Conformance", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP" - }, - { - "kind": "Conformance", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "JSTypes", - "printedName": "JSTypes", - "children": [ - { - "kind": "Function", - "name": "coerceDictionaryToJSObject", - "printedName": "coerceDictionaryToJSObject(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "coerceDictionaryToJSObject", - "printedName": "coerceDictionaryToJSObject(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "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": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "coerceArrayToJSArray", - "printedName": "coerceArrayToJSArray(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor7JSTypesO", - "mangledName": "$s9Capacitor7JSTypesO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Cordova", - "printedName": "Cordova", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorBridge", - "printedName": "CapacitorBridge", - "children": [ - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC16isDevEnvironmentSbvpZ", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)webView", - "mangledName": "$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvp", - "moduleName": "Capacitor", - "objc_name": "webView", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)webView", - "mangledName": "$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvg", - "moduleName": "Capacitor", - "objc_name": "webView", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "autoRegisterPlugins", - "printedName": "autoRegisterPlugins", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)autoRegisterPlugins", - "mangledName": "$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvp", - "moduleName": "Capacitor", - "objc_name": "autoRegisterPlugins", - "declAttributes": [ - "Final", - "ObjC", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "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@Capacitor@objc(cs)CapacitorBridge(im)autoRegisterPlugins", - "mangledName": "$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "autoRegisterPlugins", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "notificationRouter", - "printedName": "notificationRouter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)notificationRouter", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvp", - "moduleName": "Capacitor", - "objc_name": "notificationRouter", - "declAttributes": [ - "ObjC", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)notificationRouter", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "notificationRouter", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setNotificationRouter:", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "isSimEnvironment", - "printedName": "isSimEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)isSimEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isSimEnvironmentSbvp", - "moduleName": "Capacitor", - "objc_name": "isSimEnvironment", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isSimEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isSimEnvironmentSbvg", - "moduleName": "Capacitor", - "objc_name": "isSimEnvironment", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)isDevEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvp", - "moduleName": "Capacitor", - "objc_name": "isDevEnvironment", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isDevEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvg", - "moduleName": "Capacitor", - "objc_name": "isDevEnvironment", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "userInterfaceStyle", - "printedName": "userInterfaceStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)userInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "userInterfaceStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)userInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "userInterfaceStyle", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "statusBarVisible", - "printedName": "statusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvp", - "moduleName": "Capacitor", - "objc_name": "statusBarVisible", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvg", - "moduleName": "Capacitor", - "objc_name": "statusBarVisible", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarVisible:", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarVisible:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC16statusBarVisibleSbvM", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "statusBarStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "statusBarStyle", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarStyle:", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarStyle:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarAnimation", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "statusBarAnimation", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarAnimation", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "statusBarAnimation", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarAnimation:", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarAnimation:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "capacitorSite", - "printedName": "capacitorSite", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC13capacitorSiteSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC13capacitorSiteSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC13capacitorSiteSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC13capacitorSiteSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fileStartIdentifier", - "printedName": "fileStartIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC19fileStartIdentifierSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC19fileStartIdentifierSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultScheme", - "printedName": "defaultScheme", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC13defaultSchemeSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC13defaultSchemeSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC13defaultSchemeSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC13defaultSchemeSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webViewAssetHandler", - "printedName": "webViewAssetHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvp", - "mangledName": "$s9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvg", - "mangledName": "$s9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webViewDelegationHandler", - "printedName": "webViewDelegationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvp", - "mangledName": "$s9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvg", - "mangledName": "$s9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgeDelegate", - "printedName": "bridgeDelegate", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.CAPBridgeDelegate?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvp", - "mangledName": "$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "SetterAccess", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeDelegate?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeDelegate", - "printedName": "Capacitor.CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg", - "mangledName": "$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "viewController", - "printedName": "viewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)viewController", - "mangledName": "$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvp", - "moduleName": "Capacitor", - "objc_name": "viewController", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)viewController", - "mangledName": "$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvg", - "moduleName": "Capacitor", - "objc_name": "viewController", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "config", - "printedName": "config", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)config", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvp", - "moduleName": "Capacitor", - "objc_name": "config", - "declAttributes": [ - "ObjC", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)config", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "config", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setConfig:", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "getWebView", - "printedName": "getWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getWebView", - "mangledName": "$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyF", - "moduleName": "Capacitor", - "objc_name": "getWebView", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isSimulator", - "printedName": "isSimulator()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isSimulator", - "mangledName": "$s9Capacitor0A6BridgeC11isSimulatorSbyF", - "moduleName": "Capacitor", - "objc_name": "isSimulator", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isDevMode", - "printedName": "isDevMode()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isDevMode", - "mangledName": "$s9Capacitor0A6BridgeC9isDevModeSbyF", - "moduleName": "Capacitor", - "objc_name": "isDevMode", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarVisible", - "printedName": "getStatusBarVisible()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getStatusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyF", - "moduleName": "Capacitor", - "objc_name": "getStatusBarVisible", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor0A6BridgeC19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarStyle", - "printedName": "getStatusBarStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getStatusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyF", - "moduleName": "Capacitor", - "objc_name": "getStatusBarStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF", - "mangledName": "$s9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUserInterfaceStyle", - "printedName": "getUserInterfaceStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getUserInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyF", - "moduleName": "Capacitor", - "objc_name": "getUserInterfaceStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLocalUrl", - "printedName": "getLocalUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getLocalUrl", - "mangledName": "$s9Capacitor0A6BridgeC11getLocalUrlSSyF", - "moduleName": "Capacitor", - "objc_name": "getLocalUrl", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF", - "mangledName": "$s9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setServerBasePath:", - "mangledName": "$s9Capacitor0A6BridgeC17setServerBasePathyySSF", - "moduleName": "Capacitor", - "objc_name": "setServerBasePath:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(with:delegate:cordovaConfiguration:assetHandler:delegationHandler:autoRegisterPlugins:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeDelegate", - "printedName": "Capacitor.CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP" - }, - { - "kind": "TypeNominal", - "name": "CDVConfigParser", - "printedName": "Cordova.CDVConfigParser", - "usr": "c:objc(cs)CDVConfigParser" - }, - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - }, - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc", - "mangledName": "$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "registerPluginType", - "printedName": "registerPluginType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPPlugin.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)registerPluginType:", - "mangledName": "$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmF", - "moduleName": "Capacitor", - "objc_name": "registerPluginType:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginInstance", - "printedName": "registerPluginInstance(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)registerPluginInstance:", - "mangledName": "$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCF", - "moduleName": "Capacitor", - "objc_name": "registerPluginInstance:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "plugin", - "printedName": "plugin(withName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPlugin?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)pluginWithName:", - "mangledName": "$s9Capacitor0A6BridgeC6plugin8withNameSo9CAPPluginCSgSS_tF", - "moduleName": "Capacitor", - "objc_name": "pluginWithName:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "saveCall", - "printedName": "saveCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)saveCall:", - "mangledName": "$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CF", - "moduleName": "Capacitor", - "objc_name": "saveCall:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "savedCall", - "printedName": "savedCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)savedCallWithID:", - "mangledName": "$s9Capacitor0A6BridgeC9savedCall6withIDSo09CAPPluginD0CSgSS_tF", - "moduleName": "Capacitor", - "objc_name": "savedCallWithID:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCall:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CF", - "moduleName": "Capacitor", - "objc_name": "releaseCall:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCallWithID:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCall6withIDySS_tF", - "moduleName": "Capacitor", - "objc_name": "releaseCallWithID:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSavedCall", - "printedName": "getSavedCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getSavedCall:", - "mangledName": "$s9Capacitor0A6BridgeC12getSavedCallySo09CAPPluginE0CSgSSF", - "moduleName": "Capacitor", - "objc_name": "getSavedCall:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(callbackId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCallWithCallbackId:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCall10callbackIdySS_tF", - "moduleName": "Capacitor", - "objc_name": "releaseCallWithCallbackId:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "evalWithPlugin", - "printedName": "evalWithPlugin(_:js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)evalWithPlugin:js:", - "mangledName": "$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStF", - "moduleName": "Capacitor", - "objc_name": "evalWithPlugin:js:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "eval", - "printedName": "eval(js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)evalWithJs:", - "mangledName": "$s9Capacitor0A6BridgeC4eval2jsySS_tF", - "moduleName": "Capacitor", - "objc_name": "evalWithJs:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerJSEventWithEventName:target:", - "mangledName": "$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerJSEventWithEventName:target:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:data:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerJSEventWithEventName:target:data:", - "mangledName": "$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6target4dataySS_S2StF", - "moduleName": "Capacitor", - "objc_name": "triggerJSEventWithEventName:target:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerWindowJSEventWithEventName:", - "mangledName": "$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "objc_name": "triggerWindowJSEventWithEventName:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerWindowJSEventWithEventName:data:", - "mangledName": "$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerWindowJSEventWithEventName:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerDocumentJSEventWithEventName:", - "mangledName": "$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "objc_name": "triggerDocumentJSEventWithEventName:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerDocumentJSEventWithEventName:data:", - "mangledName": "$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerDocumentJSEventWithEventName:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logToJs", - "printedName": "logToJs(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC7logToJsyySS_SStF", - "mangledName": "$s9Capacitor0A6BridgeC7logToJsyySS_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "localURL", - "printedName": "localURL(fromWebURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)localURLFromWebURL:", - "mangledName": "$s9Capacitor0A6BridgeC8localURL07fromWebD010Foundation0D0VSgAI_tF", - "moduleName": "Capacitor", - "objc_name": "localURLFromWebURL:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "portablePath", - "printedName": "portablePath(fromLocalURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)portablePathFromLocalURL:", - "mangledName": "$s9Capacitor0A6BridgeC12portablePath12fromLocalURL10Foundation0G0VSgAI_tF", - "moduleName": "Capacitor", - "objc_name": "portablePathFromLocalURL:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showAlertWith", - "printedName": "showAlertWith(title:message:buttonTitle:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)showAlertWithTitle:message:buttonTitle:", - "mangledName": "$s9Capacitor0A6BridgeC13showAlertWith5title7message11buttonTitleySS_S2StF", - "moduleName": "Capacitor", - "objc_name": "showAlertWithTitle:message:buttonTitle:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentVC", - "printedName": "presentVC(_:animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)presentVC:animated:completion:", - "mangledName": "$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF", - "moduleName": "Capacitor", - "objc_name": "presentVC:animated:completion:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissVC", - "printedName": "dismissVC(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)dismissVCWithAnimated:completion:", - "mangledName": "$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtF", - "moduleName": "Capacitor", - "objc_name": "dismissVCWithAnimated:completion:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)init", - "mangledName": "$s9Capacitor0A6BridgeCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge", - "mangledName": "$s9Capacitor0A6BridgeC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CAPBridgeProtocol", - "printedName": "CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP" - }, - { - "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": "TypeDecl", - "name": "CAPInstancePlugin", - "printedName": "CAPInstancePlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPInstancePlugin", - "printedName": "Capacitor.CAPInstancePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPInstancePlugin", - "printedName": "Capacitor.CAPInstancePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin(im)init", - "mangledName": "$s9Capacitor17CAPInstancePluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin", - "mangledName": "$s9Capacitor17CAPInstancePluginC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorWKCookieObserver", - "printedName": "CapacitorWKCookieObserver", - "children": [ - { - "kind": "Function", - "name": "cookiesDidChange", - "printedName": "cookiesDidChange(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKHTTPCookieStore", - "printedName": "WebKit.WKHTTPCookieStore", - "usr": "c:objc(cs)WKHTTPCookieStore" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver(im)cookiesDidChangeInCookieStore:", - "mangledName": "$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tF", - "moduleName": "Capacitor", - "objc_name": "cookiesDidChangeInCookieStore:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorWKCookieObserver", - "printedName": "Capacitor.CapacitorWKCookieObserver", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver(im)init", - "mangledName": "$s9Capacitor0A16WKCookieObserverCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver", - "mangledName": "$s9Capacitor0A16WKCookieObserverC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "TypeDecl", - "name": "CapacitorCookieManager", - "printedName": "CapacitorCookieManager", - "children": [ - { - "kind": "Function", - "name": "getServerUrl", - "printedName": "getServerUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF", - "mangledName": "$s9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getServerUrl", - "printedName": "getServerUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF", - "mangledName": "$s9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC6encodeyS2SF", - "mangledName": "$s9Capacitor0A13CookieManagerC6encodeyS2SF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decode", - "printedName": "decode(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC6decodeyS2SF", - "mangledName": "$s9Capacitor0A13CookieManagerC6decodeyS2SF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setCookie", - "printedName": "setCookie(_:_:)", - "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" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC03setB0yySS_SStF", - "mangledName": "$s9Capacitor0A13CookieManagerC03setB0yySS_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setCookie", - "printedName": "setCookie(_:_:_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF", - "mangledName": "$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getCookiesAsMap", - "printedName": "getCookiesAsMap(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF", - "mangledName": "$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getCookies", - "printedName": "getCookies()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC10getCookiesSSyF", - "mangledName": "$s9Capacitor0A13CookieManagerC10getCookiesSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteCookie", - "printedName": "deleteCookie(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF", - "mangledName": "$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearCookies", - "printedName": "clearCookies(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF", - "mangledName": "$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearAllCookies", - "printedName": "clearAllCookies()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC15clearAllCookiesyyF", - "mangledName": "$s9Capacitor0A13CookieManagerC15clearAllCookiesyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "syncCookiesToWebView", - "printedName": "syncCookiesToWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF", - "mangledName": "$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor0A13CookieManagerC", - "mangledName": "$s9Capacitor0A13CookieManagerC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "CAPFileManager", - "printedName": "CAPFileManager", - "children": [ - { - "kind": "Function", - "name": "getPortablePath", - "printedName": "getPortablePath(host:uri:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ", - "mangledName": "$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ", - "moduleName": "Capacitor", - "static": true, - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPFileManager", - "printedName": "Capacitor.CAPFileManager", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager(im)init", - "mangledName": "$s9Capacitor14CAPFileManagerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager", - "mangledName": "$s9Capacitor14CAPFileManagerC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridge", - "printedName": "CAPBridge", - "children": [ - { - "kind": "Var", - "name": "statusBarTappedNotification", - "printedName": "statusBarTappedNotification", - "children": [ - { - "kind": "TypeNominal", - "name": "Notification", - "printedName": "Foundation.Notification", - "usr": "s:10Foundation12NotificationV" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(cpy)statusBarTappedNotification", - "mangledName": "$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Notification", - "printedName": "Foundation.Notification", - "usr": "s:10Foundation12NotificationV" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(cm)statusBarTappedNotification", - "mangledName": "$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getLastUrl", - "printedName": "getLastUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ", - "mangledName": "$s9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleOpenUrl", - "printedName": "handleOpenUrl(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenURLOptionsKey", - "usr": "c:@T@UIApplicationOpenURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ", - "mangledName": "$s9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleContinueActivity", - "printedName": "handleContinueActivity(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "NSUserActivity", - "printedName": "Foundation.NSUserActivity", - "usr": "c:objc(cs)NSUserActivity" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([UIKit.UIUserActivityRestoring]?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[UIKit.UIUserActivityRestoring]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[UIKit.UIUserActivityRestoring]", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserActivityRestoring", - "printedName": "UIKit.UIUserActivityRestoring", - "usr": "c:objc(pl)UIUserActivityRestoring" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ", - "mangledName": "$s9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleAppBecameActive", - "printedName": "handleAppBecameActive(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ", - "mangledName": "$s9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridge", - "printedName": "Capacitor.CAPBridge", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(im)init", - "mangledName": "$s9Capacitor9CAPBridgeCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge", - "mangledName": "$s9Capacitor9CAPBridgeC", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "PluginCallResult", - "printedName": "PluginCallResult", - "children": [ - { - "kind": "Var", - "name": "dictionary", - "printedName": "dictionary", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.PluginCallResult.Type) -> ([Swift.String : Any]) -> Capacitor.PluginCallResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.String : Any]) -> Capacitor.PluginCallResult", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - }, - { - "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" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.PluginCallResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor16PluginCallResultO10dictionaryyACSDySSypGcACmF", - "mangledName": "$s9Capacitor16PluginCallResultO10dictionaryyACSDySSypGcACmF", - "moduleName": "Capacitor" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor16PluginCallResultO", - "mangledName": "$s9Capacitor16PluginCallResultO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CAPPluginCallResult", - "printedName": "CAPPluginCallResult", - "children": [ - { - "kind": "Var", - "name": "resultData", - "printedName": "resultData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvp", - "mangledName": "$s9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvg", - "mangledName": "$s9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "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@Capacitor@objc(cs)CAPPluginCallResult(py)data", - "mangledName": "$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "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@Capacitor@objc(cs)CAPPluginCallResult(im)data", - "mangledName": "$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallResult", - "printedName": "Capacitor.CAPPluginCallResult", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult" - }, - { - "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": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult(im)init:", - "mangledName": "$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfc", - "moduleName": "Capacitor", - "objc_name": "init:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallResult", - "printedName": "Capacitor.CAPPluginCallResult", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult(im)init", - "mangledName": "$s9Capacitor19CAPPluginCallResultCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult", - "mangledName": "$s9Capacitor19CAPPluginCallResultC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "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": "TypeDecl", - "name": "CAPPluginCallError", - "printedName": "CAPPluginCallError", - "children": [ - { - "kind": "Var", - "name": "message", - "printedName": "message", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)message", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7messageSSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "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": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)message", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7messageSSvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "code", - "printedName": "code", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)code", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4codeSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)code", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4codeSSSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)error", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)error", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "resultData", - "printedName": "resultData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvp", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvg", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "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@Capacitor@objc(cs)CAPPluginCallError(py)data", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "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@Capacitor@objc(cs)CAPPluginCallError(im)data", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(message:code:error:data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallError", - "printedName": "Capacitor.CAPPluginCallError", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "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": "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": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)init:code:error:data:", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfc", - "moduleName": "Capacitor", - "objc_name": "init:code:error:data:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallError", - "printedName": "Capacitor.CAPPluginCallError", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)init", - "mangledName": "$s9Capacitor18CAPPluginCallErrorCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "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": "TypeDecl", - "name": "CAPNotifications", - "printedName": "CAPNotifications", - "children": [ - { - "kind": "Var", - "name": "URLOpen", - "printedName": "URLOpen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsURLOpen", - "mangledName": "$s9Capacitor16CAPNotificationsO7URLOpenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "UniversalLinkOpen", - "printedName": "UniversalLinkOpen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsUniversalLinkOpen", - "mangledName": "$s9Capacitor16CAPNotificationsO17UniversalLinkOpenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "ContinueActivity", - "printedName": "ContinueActivity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsContinueActivity", - "mangledName": "$s9Capacitor16CAPNotificationsO16ContinueActivityyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "DidRegisterForRemoteNotificationsWithDeviceToken", - "printedName": "DidRegisterForRemoteNotificationsWithDeviceToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDidRegisterForRemoteNotificationsWithDeviceToken", - "mangledName": "$s9Capacitor16CAPNotificationsO48DidRegisterForRemoteNotificationsWithDeviceTokenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "DidFailToRegisterForRemoteNotificationsWithError", - "printedName": "DidFailToRegisterForRemoteNotificationsWithError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDidFailToRegisterForRemoteNotificationsWithError", - "mangledName": "$s9Capacitor16CAPNotificationsO48DidFailToRegisterForRemoteNotificationsWithErroryA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "DecidePolicyForNavigationAction", - "printedName": "DecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDecidePolicyForNavigationAction", - "mangledName": "$s9Capacitor16CAPNotificationsO31DecidePolicyForNavigationActionyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Function", - "name": "name", - "printedName": "name()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16CAPNotificationsO4nameSSyF", - "mangledName": "$s9Capacitor16CAPNotificationsO4nameSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPNotifications?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfc", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfc", - "moduleName": "Capacitor", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueSivp", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueSivp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueSivg", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueSivg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@Capacitor@E@CAPNotifications", - "mangledName": "$s9Capacitor16CAPNotificationsO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "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": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "JSDate", - "printedName": "JSDate", - "declKind": "Class", - "usr": "s:9Capacitor6JSDateC", - "mangledName": "$s9Capacitor6JSDateC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "NotificationRouter", - "printedName": "NotificationRouter", - "children": [ - { - "kind": "Var", - "name": "pushNotificationHandler", - "printedName": "pushNotificationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.NotificationHandlerProtocol?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvp", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvg", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvs", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "localNotificationHandler", - "printedName": "localNotificationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.NotificationHandlerProtocol?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvp", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvg", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvs", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "userNotificationCenter", - "printedName": "userNotificationCenter(_:willPresent:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNUserNotificationCenter", - "printedName": "UserNotifications.UNUserNotificationCenter", - "usr": "c:objc(cs)UNUserNotificationCenter" - }, - { - "kind": "TypeNominal", - "name": "UNNotification", - "printedName": "UserNotifications.UNNotification", - "usr": "c:objc(cs)UNNotification" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationPresentationOptions", - "printedName": "UserNotifications.UNNotificationPresentationOptions", - "usr": "c:@E@UNNotificationPresentationOptions" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)userNotificationCenter:willPresentNotification:withCompletionHandler:", - "mangledName": "$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF", - "moduleName": "Capacitor", - "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "userNotificationCenter", - "printedName": "userNotificationCenter(_:didReceive:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNUserNotificationCenter", - "printedName": "UserNotifications.UNUserNotificationCenter", - "usr": "c:objc(cs)UNUserNotificationCenter" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "mangledName": "$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF", - "moduleName": "Capacitor", - "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)init", - "mangledName": "$s9Capacitor18NotificationRouterCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter", - "mangledName": "$s9Capacitor18NotificationRouterC", - "moduleName": "Capacitor", - "objc_name": "CAPNotificationRouter", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "AssociatedType", - "name": "CapacitorType", - "printedName": "CapacitorType", - "declKind": "AssociatedType", - "usr": "s:9Capacitor0A9ExtensionP0A4TypeQa", - "mangledName": "$s9Capacitor0A9ExtensionP0A4TypeQa", - "moduleName": "Capacitor", - "protocolReq": true - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzvp", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzvg", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.CapacitorType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ] - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvpZ", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvpZ", - "moduleName": "Capacitor", - "static": true, - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.CapacitorType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvgZ", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvp", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvp", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvpZ", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvpZ", - "moduleName": "Capacitor", - "static": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "Var", - "name": "keyboardShouldRequireUserInteraction", - "printedName": "keyboardShouldRequireUserInteraction", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvp", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvp", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == WebKit.WKWebView>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setKeyboardShouldRequireUserInteraction", - "printedName": "setKeyboardShouldRequireUserInteraction(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == WebKit.WKWebView>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "data", - "printedName": "data(base64EncodedOrDataUrl:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == Foundation.Data>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(r:g:b:a:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(argb:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(fromHex:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIColor?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingNullValues", - "printedName": "replacingNullValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue?]", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingOptionalValues", - "printedName": "replacingOptionalValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingNullValues", - "printedName": "replacingNullValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue?]", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE19replacingNullValuesAFyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE19replacingNullValuesAFyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue?]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingOptionalValues", - "printedName": "replacingOptionalValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue?]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperV", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "ResponseType", - "printedName": "ResponseType", - "children": [ - { - "kind": "Var", - "name": "arrayBuffer", - "printedName": "arrayBuffer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO11arrayBufferyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO11arrayBufferyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "blob", - "printedName": "blob", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4blobyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4blobyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "document", - "printedName": "document", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO8documentyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO8documentyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "json", - "printedName": "json", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4jsonyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4jsonyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "text", - "printedName": "text", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4textyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4textyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor12ResponseTypeO7defaultACvpZ", - "mangledName": "$s9Capacitor12ResponseTypeO7defaultACvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor12ResponseTypeO7defaultACvgZ", - "mangledName": "$s9Capacitor12ResponseTypeO7defaultACvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor12ResponseTypeO6stringACSSSg_tcfc", - "mangledName": "$s9Capacitor12ResponseTypeO6stringACSSSg_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.ResponseType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor12ResponseTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueACSgSS_tcfc", - "moduleName": "Capacitor", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor12ResponseTypeO8rawValueSSvp", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueSSvp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor12ResponseTypeO8rawValueSSvg", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueSSvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor12ResponseTypeO", - "mangledName": "$s9Capacitor12ResponseTypeO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "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": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "HttpRequestHandler", - "printedName": "HttpRequestHandler", - "children": [ - { - "kind": "TypeDecl", - "name": "CapacitorHttpRequestBuilder", - "printedName": "CapacitorHttpRequestBuilder", - "children": [ - { - "kind": "Var", - "name": "url", - "printedName": "url", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "method", - "printedName": "method", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "params", - "printedName": "params", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "request", - "printedName": "request", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvp", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setUrl", - "printedName": "setUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setMethod", - "printedName": "setMethod(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setUrlParams", - "printedName": "setUrlParams(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "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": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openConnection", - "printedName": "openConnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "build", - "printedName": "build()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Function", - "name": "setCookiesFromResponse", - "printedName": "setCookiesFromResponse(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.InstanceConfiguration?", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "buildResponse", - "printedName": "buildResponse(_:_:responseType:)", - "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" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "hasDefaultArg": true, - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "request", - "printedName": "request(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.InstanceConfiguration?", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor18HttpRequestHandlerC", - "mangledName": "$s9Capacitor18HttpRequestHandlerC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "NotificationHandlerProtocol", - "printedName": "NotificationHandlerProtocol", - "children": [ - { - "kind": "Function", - "name": "willPresent", - "printedName": "willPresent(notification:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UNNotificationPresentationOptions", - "printedName": "UserNotifications.UNNotificationPresentationOptions", - "usr": "c:@E@UNNotificationPresentationOptions" - }, - { - "kind": "TypeNominal", - "name": "UNNotification", - "printedName": "UserNotifications.UNNotification", - "usr": "c:objc(cs)UNNotification" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol(im)willPresentWithNotification:", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP11willPresent12notificationSo33UNNotificationPresentationOptionsVSo0H0C_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.NotificationHandlerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceive", - "printedName": "didReceive(response:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol(im)didReceiveWithResponse:", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP10didReceive8responseySo22UNNotificationResponseC_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.NotificationHandlerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "objc_name": "CAPNotificationHandlerProtocol", - "declAttributes": [ - "AccessControl", - "ObjC" - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "AppUUID", - "printedName": "AppUUID", - "children": [ - { - "kind": "Function", - "name": "getAppUUID", - "printedName": "getAppUUID()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7AppUUIDC03getbC0SSyFZ", - "mangledName": "$s9Capacitor7AppUUIDC03getbC0SSyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "regenerateAppUUID", - "printedName": "regenerateAppUUID()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7AppUUIDC010regeneratebC0yyFZ", - "mangledName": "$s9Capacitor7AppUUIDC010regeneratebC0yyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor7AppUUIDC", - "mangledName": "$s9Capacitor7AppUUIDC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "WebViewAssetHandler", - "printedName": "WebViewAssetHandler", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(router:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - }, - { - "kind": "TypeNominal", - "name": "Router", - "printedName": "Capacitor.Router", - "usr": "s:9Capacitor6RouterP" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setAssetPath", - "printedName": "setAssetPath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor19WebViewAssetHandlerC03setD4PathyySSF", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03setD4PathyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerUrl", - "printedName": "setServerUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:start:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKURLSchemeTask", - "printedName": "WebKit.WKURLSchemeTask", - "usr": "c:objc(pl)WKURLSchemeTask" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)webView:startURLSchemeTask:", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:startURLSchemeTask:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:stop:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKURLSchemeTask", - "printedName": "WebKit.WKURLSchemeTask", - "usr": "c:objc(pl)WKURLSchemeTask" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)webView:stopURLSchemeTask:", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:stopURLSchemeTask:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)init", - "mangledName": "$s9Capacitor19WebViewAssetHandlerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewAssetHandler", - "declAttributes": [ - "AccessControl", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPHttpPlugin", - "printedName": "CAPHttpPlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPHttpPlugin", - "printedName": "Capacitor.CAPHttpPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPHttpPlugin", - "printedName": "Capacitor.CAPHttpPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin(im)init", - "mangledName": "$s9Capacitor13CAPHttpPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin", - "mangledName": "$s9Capacitor13CAPHttpPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPHttpPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "PluginConfig", - "printedName": "PluginConfig", - "children": [ - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getString::", - "mangledName": "$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBoolean", - "printedName": "getBoolean(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getBoolean::", - "mangledName": "$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getInt::", - "mangledName": "$s9Capacitor12PluginConfigC6getIntySiSS_SitF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF", - "mangledName": "$s9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isEmpty", - "printedName": "isEmpty()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)isEmpty", - "mangledName": "$s9Capacitor12PluginConfigC7isEmptySbyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getConfigJSON", - "printedName": "getConfigJSON()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF", - "mangledName": "$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginConfig", - "printedName": "Capacitor.PluginConfig", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)init", - "mangledName": "$s9Capacitor12PluginConfigCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig", - "mangledName": "$s9Capacitor12PluginConfigC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": 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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeDelegate", - "printedName": "CAPBridgeDelegate", - "children": [ - { - "kind": "Var", - "name": "bridgedWebView", - "printedName": "bridgedWebView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvp", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvg", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgedViewController", - "printedName": "bridgedViewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvp", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvg", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17CAPBridgeDelegateP", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "KeyPath", - "printedName": "KeyPath", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(stringLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV13stringLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV13stringLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(unicodeScalarLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV20unicodeScalarLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV20unicodeScalarLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(extendedGraphemeClusterLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV30extendedGraphemeClusterLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV30extendedGraphemeClusterLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor7KeyPathV", - "mangledName": "$s9Capacitor7KeyPathV", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPConsolePlugin", - "printedName": "CAPConsolePlugin", - "children": [ - { - "kind": "Function", - "name": "log", - "printedName": "log(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)log:", - "mangledName": "$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPConsolePlugin", - "printedName": "Capacitor.CAPConsolePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPConsolePlugin", - "printedName": "Capacitor.CAPConsolePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)init", - "mangledName": "$s9Capacitor16CAPConsolePluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin", - "mangledName": "$s9Capacitor16CAPConsolePluginC", - "moduleName": "Capacitor", - "objc_name": "CAPConsolePlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "TypeDecl", - "name": "CAPLog", - "printedName": "CAPLog", - "children": [ - { - "kind": "Var", - "name": "enableLogging", - "printedName": "enableLogging", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvpZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvgZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvsZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvsZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvMZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvMZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "print", - "printedName": "print(_:separator:terminator:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ", - "mangledName": "$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor6CAPLogC", - "mangledName": "$s9Capacitor6CAPLogC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "InstanceDescriptorDefaults", - "printedName": "InstanceDescriptorDefaults", - "children": [ - { - "kind": "Var", - "name": "scheme", - "printedName": "scheme", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ", - "moduleName": "Capacitor", - "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:9Capacitor26InstanceDescriptorDefaultsO6schemeSSvgZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hostname", - "printedName": "hostname", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ", - "moduleName": "Capacitor", - "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:9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvgZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "ApplicationDelegateProxy", - "printedName": "ApplicationDelegateProxy", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24ApplicationDelegateProxyC6sharedACvpZ", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC6sharedACvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "Custom", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24ApplicationDelegateProxyC6sharedACvgZ", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC6sharedACvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastURL", - "printedName": "lastURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvp", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "application", - "printedName": "application(_:open:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenURLOptionsKey", - "usr": "c:@T@UIApplicationOpenURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)application:openURL:options:", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", - "moduleName": "Capacitor", - "objc_name": "application:openURL:options:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "application", - "printedName": "application(_:continue:restorationHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - }, - { - "kind": "TypeNominal", - "name": "NSUserActivity", - "printedName": "Foundation.NSUserActivity", - "usr": "c:objc(cs)NSUserActivity" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([UIKit.UIUserActivityRestoring]?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[UIKit.UIUserActivityRestoring]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[UIKit.UIUserActivityRestoring]", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserActivityRestoring", - "printedName": "UIKit.UIUserActivityRestoring", - "usr": "c:objc(pl)UIUserActivityRestoring" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)application:continueUserActivity:restorationHandler:", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctF", - "moduleName": "Capacitor", - "objc_name": "application:continueUserActivity:restorationHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)init", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC", - "moduleName": "Capacitor", - "objc_name": "CAPApplicationDelegateProxy", - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPWebViewPlugin", - "printedName": "CAPWebViewPlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPWebViewPlugin", - "printedName": "Capacitor.CAPWebViewPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPWebViewPlugin", - "printedName": "Capacitor.CAPWebViewPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin(im)init", - "mangledName": "$s9Capacitor16CAPWebViewPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin", - "mangledName": "$s9Capacitor16CAPWebViewPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "TypeDecl", - "name": "WKWebView", - "printedName": "WKWebView", - "declKind": "Class", - "usr": "c:objc(cs)WKWebView", - "moduleName": "WebKit", - "isOpen": true, - "intro_iOS": "8.0", - "objc_name": "WKWebView", - "declAttributes": [ - "Custom", - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIView", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIView", - "UIKit.UIResponder", - "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": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Data", - "printedName": "Data", - "children": [ - { - "kind": "Var", - "name": "sha256", - "printedName": "sha256", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10Foundation4DataV9CapacitorE6sha256SSvp", - "mangledName": "$s10Foundation4DataV9CapacitorE6sha256SSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10Foundation4DataV9CapacitorE6sha256SSvg", - "mangledName": "$s10Foundation4DataV9CapacitorE6sha256SSvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DataV", - "mangledName": "$s10Foundation4DataV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Frozen", - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "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": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, - { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bool", - "printedName": "Bool", - "declKind": "Struct", - "usr": "s:Sb", - "mangledName": "$sSb", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinBooleanLiteral", - "printedName": "_ExpressibleByBuiltinBooleanLiteral", - "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "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": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Int", - "printedName": "Int", - "declKind": "Struct", - "usr": "s:Si", - "mangledName": "$sSi", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ - { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", - "children": [ - { - "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int.Words", - "usr": "s:Si5WordsV" - } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int.SIMD2Storage", - "usr": "s:Si12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int.SIMD4Storage", - "usr": "s:Si12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int.SIMD8Storage", - "usr": "s:Si12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int.SIMD16Storage", - "usr": "s:Si13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int.SIMD32Storage", - "usr": "s:Si13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int.SIMD64Storage", - "usr": "s:Si13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNumber", - "printedName": "NSNumber", - "declKind": "Class", - "usr": "c:objc(cs)NSNumber", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNumber", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSValue", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Foundation.NSValue", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNull", - "printedName": "NSNull", - "declKind": "Class", - "usr": "c:objc(cs)NSNull", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNull", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" - }, - { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, - { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", - "children": [ - { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" - } - ] - } - ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", - "children": [ - { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" - } - ] - } - ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Date", - "printedName": "Date", - "declKind": "Struct", - "usr": "s:10Foundation4DateV", - "mangledName": "$s10Foundation4DateV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(keyPath:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - } - ], - "declKind": "Subscript", - "usr": "s:SD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcip", - "mangledName": "$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcip", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 == Swift.String, τ_0_1 == Capacitor.JSValue>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - } - ], - "declKind": "Accessor", - "usr": "s:SD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig", - "mangledName": "$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 == Swift.String, τ_0_1 == Capacitor.JSValue>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:s5SliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIColor", - "printedName": "UIColor", - "declKind": "Class", - "usr": "c:objc(cs)UIColor", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIColor", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByColorLiteral", - "printedName": "_ExpressibleByColorLiteral", - "usr": "s:s26_ExpressibleByColorLiteralP", - "mangledName": "$ss26_ExpressibleByColorLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "capacitorOpenURL", - "printedName": "capacitorOpenURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE16capacitorOpenURLABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorOpenUniversalLink", - "printedName": "capacitorOpenUniversalLink", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorContinueActivity", - "printedName": "capacitorContinueActivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidRegisterForRemoteNotifications", - "printedName": "capacitorDidRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidFailToRegisterForRemoteNotifications", - "printedName": "capacitorDidFailToRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDecidePolicyForNavigationAction", - "printedName": "capacitorDecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorStatusBarTapped", - "printedName": "capacitorStatusBarTapped", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNotification", - "printedName": "NSNotification", - "children": [ - { - "kind": "Var", - "name": "capacitorOpenURL", - "printedName": "capacitorOpenURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorOpenURL", - "mangledName": "$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorOpenURL", - "mangledName": "$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorOpenUniversalLink", - "printedName": "capacitorOpenUniversalLink", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorOpenUniversalLink", - "mangledName": "$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorOpenUniversalLink", - "mangledName": "$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorContinueActivity", - "printedName": "capacitorContinueActivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorContinueActivity", - "mangledName": "$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorContinueActivity", - "mangledName": "$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidRegisterForRemoteNotifications", - "printedName": "capacitorDidRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDidRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDidRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidFailToRegisterForRemoteNotifications", - "printedName": "capacitorDidFailToRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDidFailToRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDidFailToRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDecidePolicyForNavigationAction", - "printedName": "capacitorDecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDecidePolicyForNavigationAction", - "mangledName": "$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDecidePolicyForNavigationAction", - "mangledName": "$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorStatusBarTapped", - "printedName": "capacitorStatusBarTapped", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorStatusBarTapped", - "mangledName": "$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorStatusBarTapped", - "mangledName": "$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSNotification", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNotification", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CAPPluginCall", - "printedName": "CAPPluginCall", - "children": [ - { - "kind": "Var", - "name": "jsObjectRepresentation", - "printedName": "jsObjectRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:So13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvp", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:So13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dictionaryRepresentation", - "printedName": "dictionaryRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(py)dictionaryRepresentation", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvp", - "moduleName": "Capacitor", - "objc_name": "dictionaryRepresentation", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)dictionaryRepresentation", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvg", - "moduleName": "Capacitor", - "objc_name": "dictionaryRepresentation", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "jsDateFormatter", - "printedName": "jsDateFormatter", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cpy)jsDateFormatter", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvpZ", - "moduleName": "Capacitor", - "static": true, - "objc_name": "jsDateFormatter", - "declAttributes": [ - "HasInitialValue", - "Final", - "ObjC", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cm)jsDateFormatter", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "objc_name": "jsDateFormatter", - "declAttributes": [ - "Final", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cm)setJsDateFormatter:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "hasOption", - "printedName": "hasOption(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)hasOption:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "success", - "printedName": "success()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)success", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7successyyF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "success", - "printedName": "success(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)success:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7successyySDySSypGF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resolve", - "printedName": "resolve()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)resolve", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7resolveyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resolve", - "printedName": "resolve(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)resolve:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7resolveyySDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "error", - "printedName": "error(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)error:::", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "reject", - "printedName": "reject(_:_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)reject::::", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unimplemented", - "printedName": "unimplemented()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unimplemented", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE13unimplementedyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unimplemented", - "printedName": "unimplemented(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unimplemented:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE13unimplementedyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unavailable", - "printedName": "unavailable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unavailable", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE11unavailableyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unavailable", - "printedName": "unavailable(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unavailable:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE11unavailableyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPPluginCall", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPPluginCall", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "Conformance", - "name": "JSValueContainer", - "printedName": "JSValueContainer", - "usr": "s:9Capacitor16JSValueContainerP", - "mangledName": "$s9Capacitor16JSValueContainerP" - }, - { - "kind": "Conformance", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP" - }, - { - "kind": "Conformance", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP" - }, - { - "kind": "Conformance", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP" - }, - { - "kind": "Conformance", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP" - }, - { - "kind": "Conformance", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP" - }, - { - "kind": "Conformance", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP" - }, - { - "kind": "Conformance", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP" - }, - { - "kind": "Conformance", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "InstanceConfiguration", - "printedName": "InstanceConfiguration", - "children": [ - { - "kind": "Var", - "name": "appStartFileURL", - "printedName": "appStartFileURL", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)appStartFileURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15appStartFileURL10Foundation0G0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)appStartFileURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15appStartFileURL10Foundation0G0Vvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "appStartServerURL", - "printedName": "appStartServerURL", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)appStartServerURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE17appStartServerURL10Foundation0G0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)appStartServerURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE17appStartServerURL10Foundation0G0Vvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorPathURL", - "printedName": "errorPathURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)errorPathURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)errorPathURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getPluginConfigValue", - "printedName": "getPluginConfigValue(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getPluginConfigValue::", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPluginConfig", - "printedName": "getPluginConfig(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginConfig", - "printedName": "Capacitor.PluginConfig", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getPluginConfig:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "shouldAllowNavigation", - "printedName": "shouldAllowNavigation(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)shouldAllowNavigationTo:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tF", - "moduleName": "Capacitor", - "objc_name": "shouldAllowNavigationTo:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getValue", - "printedName": "getValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getValue:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getString:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPInstanceConfiguration", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPInstanceConfiguration", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "TypeDecl", - "name": "InstanceDescriptor", - "printedName": "InstanceDescriptor", - "children": [ - { - "kind": "Var", - "name": "cordovaDeployDisabled", - "printedName": "cordovaDeployDisabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(py)cordovaDeployDisabled", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(im)cordovaDeployDisabled", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "normalize", - "printedName": "normalize()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(im)normalize", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPInstanceDescriptor", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPInstanceDescriptor", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 362, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 396, - "length": 26, - "value": "\"Invalid URL \/ Server URL\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 18, - "value": "\"Must provide key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 675, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 710, - "length": 20, - "value": "\"Must provide value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 802, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 836, - "length": 16, - "value": "\"Invalid domain\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 894, - "length": 9, - "value": "\"expires\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 905, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 943, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 951, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1165, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1198, - "length": 18, - "value": "\"Must provide key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1287, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 26, - "value": "\"Invalid URL \/ Server URL\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1540, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Router.swift", - "kind": "StringLiteral", - "offset": 358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Router.swift", - "kind": "StringLiteral", - "offset": 623, - "length": 13, - "value": "\"\/index.html\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Dictionary", - "offset": 400, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 582, - "length": 34, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 590, - "length": 1, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 601, - "length": 1, - "value": "\",\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 609, - "length": 1, - "value": "\";q=0.5\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 662, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 691, - "length": 1, - "value": "\";q=0.5\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 750, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 791, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 1329, - "length": 97, - "value": "\"[ data ] argument for request of content-type [ application\/json ] must be serializable to JSON\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "BooleanLiteral", - "offset": 1616, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Array", - "offset": 1675, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 1854, - "length": 111, - "value": "\"[ data ] argument for request with content-type [ multipart\/form-data ] may only be a plain javascript object\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2095, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2110, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2113, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 125, - "value": "\"[ data ] argument for request with content-type [ application\/x-www-form-urlencoded ] may only be a plain javascript object\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2849, - "length": 43, - "value": "\"multipart\/form-data; boundary=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2891, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2951, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2983, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3078, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3096, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3147, - "length": 57, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3193, - "length": 1, - "value": "\"\"\r\n\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3307, - "length": 25, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3325, - "length": 2, - "value": "\"--\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3571, - "length": 49, - "value": "\"[ data ] argument could not be parsed as string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Dictionary", - "offset": 3761, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4207, - "length": 36, - "value": "\"Data must be an array for FormData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4406, - "length": 43, - "value": "\"multipart\/form-data; boundary=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4448, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4508, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4540, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4728, - "length": 36, - "value": "\"Data must be an array for FormData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4809, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4844, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4914, - "length": 12, - "value": "\"base64File\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4965, - "length": 10, - "value": "\"fileName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5020, - "length": 13, - "value": "\"contentType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5082, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5137, - "length": 81, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5184, - "length": 1, - "value": "\"\"; filename=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5211, - "length": 1, - "value": "\"\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5268, - "length": 39, - "value": "\"Content-Type: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5302, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5357, - "length": 39, - "value": "\"Content-Transfer-Encoding: binary\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5446, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5561, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5619, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5658, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5676, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5731, - "length": 54, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5778, - "length": 1, - "value": "\"\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5835, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5946, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6020, - "length": 25, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6038, - "length": 2, - "value": "\"--\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6234, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6367, - "length": 49, - "value": "\"[ data ] argument could not be parsed as string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6513, - "length": 10, - "value": "\"formData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6805, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6916, - "length": 35, - "value": "\"application\/x-www-form-urlencoded\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7054, - "length": 21, - "value": "\"multipart\/form-data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 75, - "value": "\"[ data ] argument could not be parsed for content type [ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7293, - "length": 1, - "value": "\" ]\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7861, - "length": 11, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7871, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7931, - "length": 11, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7941, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8092, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8350, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8913, - "length": 18, - "value": "\"disableRedirects\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "BooleanLiteral", - "offset": 8936, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 30, - "length": 19, - "value": "\"Capacitor.CapacitorUrlRequest\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 331, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "Array", - "offset": 511, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 623, - "length": 17, - "value": "\"CFBundleVersion\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 714, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 23, - "value": "\"lastBinaryVersionCode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 931, - "length": 23, - "value": "\"lastBinaryVersionName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1025, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1077, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1117, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1147, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 2849, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 16, - "value": "\"serverBasePath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3537, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3693, - "length": 9, - "value": "\"NoCloud\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3752, - "length": 23, - "value": "\"ionic_built_snapshots\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3874, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4771, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4838, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "Array", - "offset": 4915, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5320, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5351, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5671, - "length": 8, - "value": "\"mobile\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5791, - "length": 9, - "value": "\"desktop\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7013, - "length": 49, - "value": "\"⚡️ Loading app at \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7058, - "length": 3, - "value": "\"...\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7353, - "length": 19, - "value": "\"UIStatusBarHidden\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 7468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7548, - "length": 18, - "value": "\"UIStatusBarStyle\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7618, - "length": 29, - "value": "\"UIStatusBarStyleDarkContent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7749, - "length": 25, - "value": "\"UIStatusBarStyleDefault\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8021, - "length": 34, - "value": "\"UISupportedInterfaceOrientations\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8160, - "length": 32, - "value": "\"UIInterfaceOrientationPortrait\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8355, - "length": 42, - "value": "\"UIInterfaceOrientationPortraitUpsideDown\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8570, - "length": 37, - "value": "\"UIInterfaceOrientationLandscapeLeft\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8775, - "length": 38, - "value": "\"UIInterfaceOrientationLandscapeRight\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 9017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "FloatLiteral", - "offset": 9639, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "FloatLiteral", - "offset": 9881, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10332, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10515, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10704, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10888, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 11196, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 12330, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 13231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13706, - "length": 17, - "value": "\"CFBundleVersion\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13797, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13955, - "length": 23, - "value": "\"lastBinaryVersionCode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14019, - "length": 23, - "value": "\"lastBinaryVersionName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14062, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14074, - "length": 16, - "value": "\"serverBasePath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14277, - "length": 103, - "value": "\"⚡️ ERROR: Unable to find application directory at: \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14376, - "length": 1, - "value": "\"\"!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14528, - "length": 81, - "value": "\"Unable to find capacitor.config.json, make sure it exists and run npx cap copy.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14714, - "length": 67, - "value": "\"Unable to parse capacitor.config.json. Make sure it's valid JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14893, - "length": 70, - "value": "\"Unable to find config.xml, make sure it exists and run npx cap copy.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15075, - "length": 55, - "value": "\"Unable to parse config.xml. Make sure it's valid XML.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15266, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15291, - "length": 48, - "value": "\"⚡️ ERROR: Unable to load \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15338, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15362, - "length": 69, - "value": "\"⚡️ This file is the root of your web app and must exist before\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15454, - "length": 70, - "value": "\"⚡️ Capacitor can run. Ensure you've run capacitor copy at least\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15547, - "length": 79, - "value": "\"⚡️ or, if embedding, that this directory exists as a resource directory.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 15718, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3862, - "length": 9, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3890, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 4873, - "length": 17, - "value": "\"CapacitorBridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "IntegerLiteral", - "offset": 5002, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5082, - "length": 6, - "value": "\"info\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5250, - "length": 52, - "value": "\"Unable to export JavaScript bridge code to webview\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5313, - "length": 39, - "value": "\"Capacitor bridge initialization error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "IntegerLiteral", - "offset": 720, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 1342, - "length": 4, - "value": "\"WK\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 1371, - "length": 13, - "value": "\"ContentView\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 2739, - "length": 86, - "value": "\"_elementDidFocus:userIsInteracting:blurPreviousNode:activityStateChanges:userObject:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Data+Capacitor.swift", - "kind": "StringLiteral", - "offset": 697, - "length": 7, - "value": "\"data:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Data+Capacitor.swift", - "kind": "StringLiteral", - "offset": 741, - "length": 9, - "value": "\"base64,\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 658, - "length": 8, - "value": "\"bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 1564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 3391, - "length": 21, - "value": "\"shouldOverrideLoad:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 3638, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 3777, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 4372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 4927, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 5530, - "length": 24, - "value": "\"⚡️ WebView loaded\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6121, - "length": 32, - "value": "\"⚡️ WebView failed to load\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6176, - "length": 17, - "value": "\"⚡️ Error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6642, - "length": 47, - "value": "\"⚡️ WebView failed provisional navigation\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6712, - "length": 17, - "value": "\"⚡️ Error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7220, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7242, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7269, - "length": 10, - "value": "\"js.error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7318, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7433, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7481, - "length": 10, - "value": "\"pluginId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7507, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7544, - "length": 12, - "value": "\"methodName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7572, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7613, - "length": 12, - "value": "\"callbackId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7680, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 7712, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7748, - "length": 9, - "value": "\"Console\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7793, - "length": 23, - "value": "\"⚡️ To Native -> \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8025, - "length": 9, - "value": "\"cordova\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8073, - "length": 9, - "value": "\"service\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8098, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8135, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8159, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8200, - "length": 12, - "value": "\"callbackId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8264, - "length": 12, - "value": "\"actionArgs\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Array", - "offset": 8291, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8325, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8372, - "length": 23, - "value": "\"To Native Cordova -> \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 9248, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 9392, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 9859, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 9934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10009, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10080, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10157, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10744, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 22, - "value": "\"CapacitorCookies.get\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11032, - "length": 22, - "value": "\"CapacitorCookies.set\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11158, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11224, - "length": 8, - "value": "\"domain\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11376, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11552, - "length": 28, - "value": "\"CapacitorCookies.isEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11657, - "length": 18, - "value": "\"CapacitorCookies\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11750, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 11761, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11887, - "length": 15, - "value": "\"CapacitorHttp\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11979, - "length": 15, - "value": "\"CapacitorHttp\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12069, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 12080, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12653, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12801, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 13103, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 13432, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 13729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13848, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13862, - "length": 12, - "value": "\"No message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13899, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13920, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13948, - "length": 6, - "value": "\"line\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13959, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13986, - "length": 5, - "value": "\"col\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13996, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14022, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14070, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14243, - "length": 44, - "value": "\"\n⚡️ ------ STARTUP JS ERROR ------\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14310, - "length": 20, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14329, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14353, - "length": 21, - "value": "\"⚡️ URL: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14397, - "length": 36, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14425, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14432, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14456, - "length": 65, - "value": "\"\n⚡️ See above for help with debugging blank-screen issues\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 188, - "length": 24, - "value": "\"Capacitor.WebViewDelegationHandler\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 5731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 5977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 6199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "Dictionary", - "offset": 7523, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 815, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 1172, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 1593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2628, - "length": 27, - "value": "\"tmpViewControllerAppeared\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2696, - "length": 26, - "value": "\"https:\/\/capacitorjs.com\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2767, - "length": 19, - "value": "\"\/_capacitor_file_\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2825, - "length": 11, - "value": "\"capacitor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 3789, - "length": 8, - "value": "\"bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Array", - "offset": 3877, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 4997, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5437, - "length": 36, - "value": "\"⚡️ ❌ Capacitor: FATAL ERROR\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5496, - "length": 25, - "value": "\"⚡️ ❌ Error was: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5663, - "length": 84, - "value": "\"⚡️ ❌ Unable to export required Bridge JavaScript. Bridge will not function.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5774, - "length": 101, - "value": "\"⚡️ ❌ You should run \"npx capacitor copy\" to ensure the Bridge JS is added to your project.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5959, - "length": 13, - "value": "\"⚡️ ❌ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 6044, - "length": 27, - "value": "\"⚡️ ❌ Unknown error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 6105, - "length": 62, - "value": "\"⚡️ ❌ Please verify your installation or file an issue\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 6457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 8832, - "length": 8, - "value": "\"resume\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 9098, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 9823, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 10124, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 10326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11136, - "length": 233, - "value": "\"\n⚡️ ❌ Cannot register class \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11200, - "length": 1, - "value": "\": CAPInstancePlugin through registerPluginType(_:).\n⚡️ ❌ Use `registerPluginInstance(_:)` to register subclasses of CAPInstancePlugin.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11680, - "length": 184, - "value": "\"\n⚡️ Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11743, - "length": 4, - "value": "\" must conform to CAPBridgedPlugin.\n⚡️ Not loading plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11848, - "length": 9369, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11972, - "length": 79, - "value": "\"⚡️ Overriding existing registered plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12050, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12687, - "length": 78, - "value": "\"⚡️ Unable to load plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12741, - "length": 1, - "value": "\". No such module found.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 14236, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14750, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14782, - "length": 4, - "value": "\"docs\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14793, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15015, - "length": 83, - "value": "\"⚡️ Warning: isWebDebuggable only functions as intended on iOS 16.4 and above.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15840, - "length": 92, - "value": "\"⚡️ Error loading plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15886, - "length": 3, - "value": "\" for call. Check that the pluginId is correct\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16021, - "length": 13, - "value": "\"addListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16053, - "length": 16, - "value": "\"removeListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16130, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16256, - "length": 90, - "value": "\"⚡️ Error calling method \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16300, - "length": 2, - "value": "\" on plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16327, - "length": 1, - "value": "\": No method found.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16377, - "length": 93, - "value": "\"⚡️ Ensure plugin method exists and uses @objc in its declaration, and has been defined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16731, - "length": 124, - "value": "\"⚡️ Error: Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16771, - "length": 4, - "value": "\" does not respond to method call \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16820, - "length": 1, - "value": "\"\" using selector \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16851, - "length": 1, - "value": "\"\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16882, - "length": 138, - "value": "\"⚡️ Ensure plugin method exists, uses @objc in its declaration, and arguments match selector without callbacks in CAP_PLUGIN_METHOD.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 17047, - "length": 75, - "value": "\"⚡️ Learn more: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 17121, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 17705, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 18042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 18210, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 18248, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 18827, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 18934, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 19144, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20040, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20055, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20136, - "length": 86, - "value": "\"Error: Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20176, - "length": 4, - "value": "\" does not respond to method call \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20220, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20253, - "length": 63, - "value": "\"Ensure plugin method exists and uses @objc in its declaration\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20404, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Array", - "offset": 20428, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20834, - "length": 41, - "value": "\"Error: Cordova Plugin mapping not found\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21105, - "length": 15, - "value": "\"⚡️ TO JS\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 21140, - "length": 3, - "value": "256" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21227, - "length": 310, - "value": "\" window.Capacitor.fromNative({\n callbackId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21320, - "length": 2, - "value": "\"',\n pluginId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21365, - "length": 2, - "value": "\"',\n methodName: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21414, - "length": 2, - "value": "\"',\n save: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21443, - "length": 1, - "value": "\",\n success: true,\n data: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21505, - "length": 1, - "value": "\"\n })\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21876, - "length": 180, - "value": "\"window.Capacitor.fromNative({ callbackId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21939, - "length": 14, - "value": "\"', pluginId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21970, - "length": 16, - "value": "\"', methodName: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22005, - "length": 68, - "value": "\"', success: false, error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22053, - "length": 1, - "value": "\"})\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 237, - "value": "\"window.Capacitor.withPlugin('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22591, - "length": 21, - "value": "\"', function(plugin) {\nif(!plugin) { console.error('Unable to execute JS in plugin, no such plugin found for id \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22727, - "length": 5, - "value": "\"'); }\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22746, - "length": 1, - "value": "\"\n});\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22975, - "length": 23, - "value": "\"⚡️ JS Eval error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23488, - "length": 23, - "value": "\"⚡️ JS Eval error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23687, - "length": 60, - "value": "\"window.Capacitor.triggerEvent('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23731, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23744, - "length": 4, - "value": "\"')\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23866, - "length": 69, - "value": "\"window.Capacitor.triggerEvent('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23910, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23923, - "length": 13, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23933, - "length": 1, - "value": "\")\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24066, - "length": 8, - "value": "\"window\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24219, - "length": 8, - "value": "\"window\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24372, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24529, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24621, - "length": 5, - "value": "\"log\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24715, - "length": 50, - "value": "\"window.Capacitor.logJs('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24750, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24762, - "length": 25, - "value": "\"')\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 25593, - "length": 5, - "value": "\"res\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 25688, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 26605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 531, - "length": 15, - "value": "\"Capacitor.CapacitorBridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 904, - "length": 9, - "value": "\"http:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 938, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1257, - "length": 21, - "value": "\"http:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1277, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1826, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2207, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2228, - "length": 1, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2237, - "length": 1, - "value": "\"; expires=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2263, - "length": 1, - "value": "\"; path=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2280, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "Dictionary", - "offset": 2613, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3092, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3161, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3266, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3277, - "length": 1, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3289, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3311, - "length": 4, - "value": "\"; \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPFile.swift", - "kind": "StringLiteral", - "offset": 449, - "length": 9, - "value": "\"file:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPFile.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 365, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 404, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 442, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 481, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 605, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 611, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 654, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 659, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 699, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 742, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 748, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "StringLiteral", - "offset": 942, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "StringLiteral", - "offset": 965, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1036, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1069, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1101, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1134, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1251, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1289, - "length": 8, - "value": "0xFF0000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1302, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1308, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1350, - "length": 8, - "value": "0x00FF00" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1363, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1368, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1408, - "length": 8, - "value": "0x0000FF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1420, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1464, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1502, - "length": 11, - "value": "0xFF000000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1518, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1524, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1566, - "length": 10, - "value": "0x00FF0000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1581, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1587, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1628, - "length": 10, - "value": "0x0000FF00" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1643, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1648, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1689, - "length": 10, - "value": "0x000000FF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1703, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "Array", - "offset": 792, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 19, - "value": "\"Capacitor.CAPPluginCallResult\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 3201, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 18, - "value": "\"Capacitor.CAPPluginCallError\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 402, - "length": 30, - "value": "\"CapacitorOpenURLNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 513, - "length": 40, - "value": "\"CapacitorOpenUniversalLinkNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 633, - "length": 39, - "value": "\"CapacitorContinueActivityNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 777, - "length": 56, - "value": "\"CapacitorDidRegisterForRemoteNotificationsNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 944, - "length": 62, - "value": "\"CapacitorDidFailToRegisterForRemoteNotificationsNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 1109, - "length": 54, - "value": "\"CapacitorDecidePolicyForNavigationActionNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 1242, - "length": 38, - "value": "\"CapacitorStatusBarTappedNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2366, - "length": 17, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2480, - "length": 16, - "value": "2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2622, - "length": 48, - "value": "3" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2802, - "length": 48, - "value": "4" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2974, - "length": 31, - "value": "5" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2366, - "length": 17, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2480, - "length": 16, - "value": "2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2622, - "length": 48, - "value": "3" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2802, - "length": 48, - "value": "4" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2974, - "length": 31, - "value": "5" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 11, - "value": "\"undefined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 4, - "value": "\"{}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 11, - "value": "\"undefined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 4, - "value": "\"{}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1705, - "length": 109, - "value": "\"[Capacitor Plugin Error] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1749, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1766, - "length": 1, - "value": "\" - Unable to serialize plugin response as JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1845, - "length": 90, - "value": "\"Ensure that all data passed to success callback from module method is JSON serializable!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 76, - "value": "\"Unable to serialize plugin response as JSON: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2055, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2581, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2623, - "length": 14, - "value": "\"errorMessage\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2691, - "length": 6, - "value": "\"code\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2854, - "length": 17, - "value": "\"ERROR MESSAGE: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "IntegerLiteral", - "offset": 2888, - "length": 3, - "value": "512" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3032, - "length": 109, - "value": "\"[Capacitor Plugin Error] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3076, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3093, - "length": 1, - "value": "\" - Unable to serialize plugin response as JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3172, - "length": 90, - "value": "\"Ensure that all data passed to success callback from module method is JSON serializable!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3307, - "length": 76, - "value": "\"Unable to serialize plugin response as JSON: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3382, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "Dictionary", - "offset": 3770, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 714, - "length": 99, - "value": "\"Push notification handler overriding previous instance: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 812, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 1035, - "length": 100, - "value": "\"Local notification handler overriding previous instance: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "BooleanLiteral", - "offset": 1617, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "Array", - "offset": 1900, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "BooleanLiteral", - "offset": 2270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 419, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "BooleanLiteral", - "offset": 998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1171, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1288, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1489, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1696, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2079, - "length": 17, - "value": "\"not implemented\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2213, - "length": 15, - "value": "\"UNIMPLEMENTED\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 2248, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2306, - "length": 15, - "value": "\"not available\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 13, - "value": "\"UNAVAILABLE\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 2469, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 162, - "length": 13, - "value": "\"arraybuffer\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 6, - "value": "\"blob\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 219, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 6, - "value": "\"json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 162, - "length": 13, - "value": "\"arraybuffer\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 6, - "value": "\"blob\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 219, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 6, - "value": "\"json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 2109, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "BooleanLiteral", - "offset": 2238, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Array", - "offset": 2328, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Array", - "offset": 2402, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3435, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3520, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3610, - "length": 9, - "value": "\"domain=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3665, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3772, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3799, - "length": 3, - "value": "\";\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3947, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 4230, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4267, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4367, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4462, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4472, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4564, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4594, - "length": 21, - "value": "\"application\/default\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4663, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4729, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4851, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5006, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5257, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5347, - "length": 8, - "value": "\"method\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5357, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5403, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 5417, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5476, - "length": 8, - "value": "\"params\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 5489, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5553, - "length": 14, - "value": "\"responseType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5623, - "length": 16, - "value": "\"connectTimeout\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5682, - "length": 13, - "value": "\"readTimeout\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5735, - "length": 10, - "value": "\"dataType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5750, - "length": 5, - "value": "\"any\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "FloatLiteral", - "offset": 6411, - "length": 8, - "value": "600000.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "FloatLiteral", - "offset": 6423, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 6502, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 78, - "length": 31, - "value": "\"plugins\/ios\/#defining-methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW73\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 357, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW17\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW24\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 78, - "length": 31, - "value": "\"plugins\/ios\/#defining-methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW73\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 357, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW17\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW24\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 391, - "length": 10, - "value": "\"_options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 437, - "length": 11, - "value": "\"_callback\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 136, - "value": "\"window.Capacitor = { DEBUG: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 660, - "length": 1, - "value": "\", isLoggingEnabled: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 697, - "length": 1, - "value": "\", Plugins: {} }; window.WEBVIEW_SERVER_URL = '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 754, - "length": 3, - "value": "\"';\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 861, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 15, - "value": "\"native-bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1150, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1188, - "length": 89, - "value": "\"ERROR: Required native-bridge.js file in Capacitor not found. Bridge will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 110, - "value": "\"ERROR: Unable to read required native-bridge.js file from the Capacitor framework. Bridge will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1837, - "length": 16, - "value": "\"public\/cordova\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1870, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1908, - "length": 79, - "value": "\"ERROR: Required cordova.js file not found. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2126, - "length": 24, - "value": "\"public\/cordova_plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2167, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2205, - "length": 88, - "value": "\"ERROR: Required cordova_plugins.js file not found. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2626, - "length": 82, - "value": "\"ERROR: Unable to read required cordova files. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3022, - "length": 425, - "value": "\"(function(w) {\nvar a = (w.Capacitor = w.Capacitor || {});\nvar p = (a.Plugins = a.Plugins || {});\nvar t = (p['\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3231, - "length": 9, - "value": "\"'] = {});\nt.addListener = function(eventName, callback) {\nreturn w.Capacitor.addListener('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3377, - "length": 24, - "value": "\"', eventName, callback);\n}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3616, - "length": 43, - "value": "\"})(window);\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 243, - "value": "\"(function(w) {\nvar a = (w.Capacitor = w.Capacitor || {});\nvar h = (a.PluginHeaders = a.PluginHeaders || []);\nh.push(\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4023, - "length": 1, - "value": "\");\n})(window);\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4126, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 4233, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4454, - "length": 13, - "value": "\"addListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4519, - "length": 16, - "value": "\"removeListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4587, - "length": 20, - "value": "\"removeAllListeners\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4616, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4665, - "length": 18, - "value": "\"checkPermissions\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4692, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4741, - "length": 20, - "value": "\"requestPermissions\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 5110, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 5977, - "length": 4, - "value": "\", \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6207, - "length": 51, - "value": "\"t['\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6226, - "length": 33, - "value": "\"'] = function(\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6254, - "length": 1, - "value": "\") {\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6406, - "length": 141, - "value": "\"return w.Capacitor.nativeCallback('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6483, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6500, - "length": 23, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6521, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6666, - "length": 140, - "value": "\"return w.Capacitor.nativePromise('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6742, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6759, - "length": 23, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6780, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6926, - "length": 163, - "value": "\"return w.Capacitor.nativeCallback('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7003, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7020, - "length": 45, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7041, - "length": 1, - "value": "\", \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7063, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7133, - "length": 66, - "value": "\"Error: plugin method return type \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7180, - "length": 2, - "value": "\" is not supported!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7263, - "length": 3, - "value": "\"}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7307, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7478, - "length": 16, - "value": "\"public\/plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "Array", - "offset": 7920, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 8316, - "length": 31, - "value": "\"Error while enumerating files\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 8656, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 8765, - "length": 26, - "value": "\"Unable to inject js file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 150, - "length": 6, - "value": "\"%02x\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "IntegerLiteral", - "offset": 265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 547, - "length": 18, - "value": "\"CapacitorAppUUID\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 1221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1278, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1530, - "length": 29, - "value": "\"Access-Control-Allow-Origin\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1618, - "length": 30, - "value": "\"Access-Control-Allow-Methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1652, - "length": 14, - "value": "\"GET, OPTIONS\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1763, - "length": 7, - "value": "\"Range\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2071, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2116, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2143, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2196, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2203, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2247, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2288, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2338, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2584, - "length": 15, - "value": "\"Accept-Ranges\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2603, - "length": 7, - "value": "\"bytes\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2635, - "length": 15, - "value": "\"Content-Range\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2654, - "length": 44, - "value": "\"bytes \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2673, - "length": 1, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2684, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2697, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2723, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2836, - "length": 3, - "value": "206" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 3036, - "length": 12, - "value": "\"cordova.js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 3579, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4180, - "length": 13, - "value": "\"scheme stop\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4833, - "length": 26, - "value": "\"application\/octet-stream\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4885, - "length": 11, - "value": "\"text\/html\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "Array", - "offset": 4993, - "length": 109, - "value": "[\"m4v\", \"mov\", \"mp4\", \"aac\", \"ac3\", \"aiff\", \"au\", \"flac\", \"m4a\", \"mp3\", \"wav\"]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "BooleanLiteral", - "offset": 5188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "BooleanLiteral", - "offset": 5218, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "Dictionary", - "offset": 5251, - "length": 14028, - "value": "[(\"aaf\", \"application\/octet-stream\"), (\"aca\", \"application\/octet-stream\"), (\"accdb\", \"application\/msaccess\"), (\"accde\", \"application\/msaccess\"), (\"accdt\", \"application\/msaccess\"), (\"acx\", \"application\/internet-property-stream\"), (\"afm\", \"application\/octet-stream\"), (\"ai\", \"application\/postscript\"), (\"aif\", \"audio\/x-aiff\"), (\"aifc\", \"audio\/aiff\"), (\"aiff\", \"audio\/aiff\"), (\"application\", \"application\/x-ms-application\"), (\"art\", \"image\/x-jg\"), (\"asd\", \"application\/octet-stream\"), (\"asf\", \"video\/x-ms-asf\"), (\"asi\", \"application\/octet-stream\"), (\"asm\", \"text\/plain\"), (\"asr\", \"video\/x-ms-asf\"), (\"asx\", \"video\/x-ms-asf\"), (\"atom\", \"application\/atom+xml\"), (\"au\", \"audio\/basic\"), (\"avi\", \"video\/x-msvideo\"), (\"axs\", \"application\/olescript\"), (\"bas\", \"text\/plain\"), (\"bcpio\", \"application\/x-bcpio\"), (\"bin\", \"application\/octet-stream\"), (\"bmp\", \"image\/bmp\"), (\"c\", \"text\/plain\"), (\"cab\", \"application\/octet-stream\"), (\"calx\", \"application\/vnd.ms-office.calx\"), (\"cat\", \"application\/vnd.ms-pki.seccat\"), (\"cdf\", \"application\/x-cdf\"), (\"chm\", \"application\/octet-stream\"), (\"class\", \"application\/x-java-applet\"), (\"clp\", \"application\/x-msclip\"), (\"cmx\", \"image\/x-cmx\"), (\"cnf\", \"text\/plain\"), (\"cod\", \"image\/cis-cod\"), (\"cpio\", \"application\/x-cpio\"), (\"cpp\", \"text\/plain\"), (\"crd\", \"application\/x-mscardfile\"), (\"crl\", \"application\/pkix-crl\"), (\"crt\", \"application\/x-x509-ca-cert\"), (\"csh\", \"application\/x-csh\"), (\"css\", \"text\/css\"), (\"csv\", \"application\/octet-stream\"), (\"cur\", \"application\/octet-stream\"), (\"dcr\", \"application\/x-director\"), (\"deploy\", \"application\/octet-stream\"), (\"der\", \"application\/x-x509-ca-cert\"), (\"dib\", \"image\/bmp\"), (\"dir\", \"application\/x-director\"), (\"disco\", \"text\/xml\"), (\"dll\", \"application\/x-msdownload\"), (\"dll.config\", \"text\/xml\"), (\"dlm\", \"text\/dlm\"), (\"doc\", \"application\/msword\"), (\"docm\", \"application\/vnd.ms-word.document.macroEnabled.12\"), (\"docx\", \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\"), (\"dot\", \"application\/msword\"), (\"dotm\", \"application\/vnd.ms-word.template.macroEnabled.12\"), (\"dotx\", \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\"), (\"dsp\", \"application\/octet-stream\"), (\"dtd\", \"text\/xml\"), (\"dvi\", \"application\/x-dvi\"), (\"dwf\", \"drawing\/x-dwf\"), (\"dwp\", \"application\/octet-stream\"), (\"dxr\", \"application\/x-director\"), (\"eml\", \"message\/rfc822\"), (\"emz\", \"application\/octet-stream\"), (\"eot\", \"application\/octet-stream\"), (\"eps\", \"application\/postscript\"), (\"etx\", \"text\/x-setext\"), (\"evy\", \"application\/envoy\"), (\"exe\", \"application\/octet-stream\"), (\"exe.config\", \"text\/xml\"), (\"fdf\", \"application\/vnd.fdf\"), (\"fif\", \"application\/fractals\"), (\"fla\", \"application\/octet-stream\"), (\"flr\", \"x-world\/x-vrml\"), (\"flv\", \"video\/x-flv\"), (\"gif\", \"image\/gif\"), (\"gtar\", \"application\/x-gtar\"), (\"gz\", \"application\/x-gzip\"), (\"h\", \"text\/plain\"), (\"hdf\", \"application\/x-hdf\"), (\"hdml\", \"text\/x-hdml\"), (\"hhc\", \"application\/x-oleobject\"), (\"hhk\", \"application\/octet-stream\"), (\"hhp\", \"application\/octet-stream\"), (\"hlp\", \"application\/winhlp\"), (\"hqx\", \"application\/mac-binhex40\"), (\"hta\", \"application\/hta\"), (\"htc\", \"text\/x-component\"), (\"htm\", \"text\/html\"), (\"html\", \"text\/html\"), (\"htt\", \"text\/webviewhtml\"), (\"hxt\", \"text\/html\"), (\"ico\", \"image\/x-icon\"), (\"ics\", \"application\/octet-stream\"), (\"ief\", \"image\/ief\"), (\"iii\", \"application\/x-iphone\"), (\"inf\", \"application\/octet-stream\"), (\"ins\", \"application\/x-internet-signup\"), (\"isp\", \"application\/x-internet-signup\"), (\"IVF\", \"video\/x-ivf\"), (\"jar\", \"application\/java-archive\"), (\"java\", \"application\/octet-stream\"), (\"jck\", \"application\/liquidmotion\"), (\"jcz\", \"application\/liquidmotion\"), (\"jfif\", \"image\/pjpeg\"), (\"jpb\", \"application\/octet-stream\"), (\"jpe\", \"image\/jpeg\"), (\"jpeg\", \"image\/jpeg\"), (\"jpg\", \"image\/jpeg\"), (\"js\", \"application\/x-javascript\"), (\"jsx\", \"text\/jscript\"), (\"latex\", \"application\/x-latex\"), (\"lit\", \"application\/x-ms-reader\"), (\"lpk\", \"application\/octet-stream\"), (\"lsf\", \"video\/x-la-asf\"), (\"lsx\", \"video\/x-la-asf\"), (\"lzh\", \"application\/octet-stream\"), (\"m13\", \"application\/x-msmediaview\"), (\"m14\", \"application\/x-msmediaview\"), (\"m1v\", \"video\/mpeg\"), (\"m3u\", \"audio\/x-mpegurl\"), (\"man\", \"application\/x-troff-man\"), (\"manifest\", \"application\/x-ms-manifest\"), (\"map\", \"text\/plain\"), (\"mdb\", \"application\/x-msaccess\"), (\"mdp\", \"application\/octet-stream\"), (\"me\", \"application\/x-troff-me\"), (\"mht\", \"message\/rfc822\"), (\"mhtml\", \"message\/rfc822\"), (\"mid\", \"audio\/mid\"), (\"midi\", \"audio\/mid\"), (\"mix\", \"application\/octet-stream\"), (\"mmf\", \"application\/x-smaf\"), (\"mno\", \"text\/xml\"), (\"mny\", \"application\/x-msmoney\"), (\"mov\", \"video\/quicktime\"), (\"movie\", \"video\/x-sgi-movie\"), (\"mp2\", \"video\/mpeg\"), (\"mp3\", \"audio\/mpeg\"), (\"mpa\", \"video\/mpeg\"), (\"mpe\", \"video\/mpeg\"), (\"mpeg\", \"video\/mpeg\"), (\"mpg\", \"video\/mpeg\"), (\"mpp\", \"application\/vnd.ms-project\"), (\"mpv2\", \"video\/mpeg\"), (\"ms\", \"application\/x-troff-ms\"), (\"msi\", \"application\/octet-stream\"), (\"mso\", \"application\/octet-stream\"), (\"mvb\", \"application\/x-msmediaview\"), (\"mvc\", \"application\/x-miva-compiled\"), (\"nc\", \"application\/x-netcdf\"), (\"nsc\", \"video\/x-ms-asf\"), (\"nws\", \"message\/rfc822\"), (\"ocx\", \"application\/octet-stream\"), (\"oda\", \"application\/oda\"), (\"odc\", \"text\/x-ms-odc\"), (\"ods\", \"application\/oleobject\"), (\"one\", \"application\/onenote\"), (\"onea\", \"application\/onenote\"), (\"onetoc\", \"application\/onenote\"), (\"onetoc2\", \"application\/onenote\"), (\"onetmp\", \"application\/onenote\"), (\"onepkg\", \"application\/onenote\"), (\"osdx\", \"application\/opensearchdescription+xml\"), (\"p10\", \"application\/pkcs10\"), (\"p12\", \"application\/x-pkcs12\"), (\"p7b\", \"application\/x-pkcs7-certificates\"), (\"p7c\", \"application\/pkcs7-mime\"), (\"p7m\", \"application\/pkcs7-mime\"), (\"p7r\", \"application\/x-pkcs7-certreqresp\"), (\"p7s\", \"application\/pkcs7-signature\"), (\"pbm\", \"image\/x-portable-bitmap\"), (\"pcx\", \"application\/octet-stream\"), (\"pcz\", \"application\/octet-stream\"), (\"pdf\", \"application\/pdf\"), (\"pfb\", \"application\/octet-stream\"), (\"pfm\", \"application\/octet-stream\"), (\"pfx\", \"application\/x-pkcs12\"), (\"pgm\", \"image\/x-portable-graymap\"), (\"pko\", \"application\/vnd.ms-pki.pko\"), (\"pma\", \"application\/x-perfmon\"), (\"pmc\", \"application\/x-perfmon\"), (\"pml\", \"application\/x-perfmon\"), (\"pmr\", \"application\/x-perfmon\"), (\"pmw\", \"application\/x-perfmon\"), (\"png\", \"image\/png\"), (\"pnm\", \"image\/x-portable-anymap\"), (\"pnz\", \"image\/png\"), (\"pot\", \"application\/vnd.ms-powerpoint\"), (\"potm\", \"application\/vnd.ms-powerpoint.template.macroEnabled.12\"), (\"potx\", \"application\/vnd.openxmlformats-officedocument.presentationml.template\"), (\"ppam\", \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\"), (\"ppm\", \"image\/x-portable-pixmap\"), (\"pps\", \"application\/vnd.ms-powerpoint\"), (\"ppsm\", \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\"), (\"ppsx\", \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\"), (\"ppt\", \"application\/vnd.ms-powerpoint\"), (\"pptm\", \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\"), (\"pptx\", \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\"), (\"prf\", \"application\/pics-rules\"), (\"prm\", \"application\/octet-stream\"), (\"prx\", \"application\/octet-stream\"), (\"ps\", \"application\/postscript\"), (\"psd\", \"application\/octet-stream\"), (\"psm\", \"application\/octet-stream\"), (\"psp\", \"application\/octet-stream\"), (\"pub\", \"application\/x-mspublisher\"), (\"qt\", \"video\/quicktime\"), (\"qtl\", \"application\/x-quicktimeplayer\"), (\"qxd\", \"application\/octet-stream\"), (\"ra\", \"audio\/x-pn-realaudio\"), (\"ram\", \"audio\/x-pn-realaudio\"), (\"rar\", \"application\/octet-stream\"), (\"ras\", \"image\/x-cmu-raster\"), (\"rf\", \"image\/vnd.rn-realflash\"), (\"rgb\", \"image\/x-rgb\"), (\"rm\", \"application\/vnd.rn-realmedia\"), (\"rmi\", \"audio\/mid\"), (\"roff\", \"application\/x-troff\"), (\"rpm\", \"audio\/x-pn-realaudio-plugin\"), (\"rtf\", \"application\/rtf\"), (\"rtx\", \"text\/richtext\"), (\"scd\", \"application\/x-msschedule\"), (\"sct\", \"text\/scriptlet\"), (\"sea\", \"application\/octet-stream\"), (\"setpay\", \"application\/set-payment-initiation\"), (\"setreg\", \"application\/set-registration-initiation\"), (\"sgml\", \"text\/sgml\"), (\"sh\", \"application\/x-sh\"), (\"shar\", \"application\/x-shar\"), (\"sit\", \"application\/x-stuffit\"), (\"sldm\", \"application\/vnd.ms-powerpoint.slide.macroEnabled.12\"), (\"sldx\", \"application\/vnd.openxmlformats-officedocument.presentationml.slide\"), (\"smd\", \"audio\/x-smd\"), (\"smi\", \"application\/octet-stream\"), (\"smx\", \"audio\/x-smd\"), (\"smz\", \"audio\/x-smd\"), (\"snd\", \"audio\/basic\"), (\"snp\", \"application\/octet-stream\"), (\"spc\", \"application\/x-pkcs7-certificates\"), (\"spl\", \"application\/futuresplash\"), (\"src\", \"application\/x-wais-source\"), (\"ssm\", \"application\/streamingmedia\"), (\"sst\", \"application\/vnd.ms-pki.certstore\"), (\"stl\", \"application\/vnd.ms-pki.stl\"), (\"sv4cpio\", \"application\/x-sv4cpio\"), (\"sv4crc\", \"application\/x-sv4crc\"), (\"svg\", \"image\/svg+xml\"), (\"swf\", \"application\/x-shockwave-flash\"), (\"t\", \"application\/x-troff\"), (\"tar\", \"application\/x-tar\"), (\"tcl\", \"application\/x-tcl\"), (\"tex\", \"application\/x-tex\"), (\"texi\", \"application\/x-texinfo\"), (\"texinfo\", \"application\/x-texinfo\"), (\"tgz\", \"application\/x-compressed\"), (\"thmx\", \"application\/vnd.ms-officetheme\"), (\"thn\", \"application\/octet-stream\"), (\"tif\", \"image\/tiff\"), (\"tiff\", \"image\/tiff\"), (\"toc\", \"application\/octet-stream\"), (\"tr\", \"application\/x-troff\"), (\"trm\", \"application\/x-msterminal\"), (\"tsv\", \"text\/tab-separated-values\"), (\"ttf\", \"application\/octet-stream\"), (\"txt\", \"text\/plain\"), (\"u32\", \"application\/octet-stream\"), (\"uls\", \"text\/iuls\"), (\"ustar\", \"application\/x-ustar\"), (\"vbs\", \"text\/vbscript\"), (\"vcf\", \"text\/x-vcard\"), (\"vcs\", \"text\/plain\"), (\"vdx\", \"application\/vnd.ms-visio.viewer\"), (\"vml\", \"text\/xml\"), (\"vsd\", \"application\/vnd.visio\"), (\"vss\", \"application\/vnd.visio\"), (\"vst\", \"application\/vnd.visio\"), (\"vsto\", \"application\/x-ms-vsto\"), (\"vsw\", \"application\/vnd.visio\"), (\"vsx\", \"application\/vnd.visio\"), (\"vtx\", \"application\/vnd.visio\"), (\"wasm\", \"application\/wasm\"), (\"wav\", \"audio\/wav\"), (\"wax\", \"audio\/x-ms-wax\"), (\"wbmp\", \"image\/vnd.wap.wbmp\"), (\"wcm\", \"application\/vnd.ms-works\"), (\"wdb\", \"application\/vnd.ms-works\"), (\"wks\", \"application\/vnd.ms-works\"), (\"wm\", \"video\/x-ms-wm\"), (\"wma\", \"audio\/x-ms-wma\"), (\"wmd\", \"application\/x-ms-wmd\"), (\"wmf\", \"application\/x-msmetafile\"), (\"wml\", \"text\/vnd.wap.wml\"), (\"wmlc\", \"application\/vnd.wap.wmlc\"), (\"wmls\", \"text\/vnd.wap.wmlscript\"), (\"wmlsc\", \"application\/vnd.wap.wmlscriptc\"), (\"wmp\", \"video\/x-ms-wmp\"), (\"wmv\", \"video\/x-ms-wmv\"), (\"wmx\", \"video\/x-ms-wmx\"), (\"wmz\", \"application\/x-ms-wmz\"), (\"wps\", \"application\/vnd.ms-works\"), (\"wri\", \"application\/x-mswrite\"), (\"wrl\", \"x-world\/x-vrml\"), (\"wrz\", \"x-world\/x-vrml\"), (\"wsdl\", \"text\/xml\"), (\"wvx\", \"video\/x-ms-wvx\"), (\"x\", \"application\/directx\"), (\"xaf\", \"x-world\/x-vrml\"), (\"xaml\", \"application\/xaml+xml\"), (\"xap\", \"application\/x-silverlight-app\"), (\"xbap\", \"application\/x-ms-xbap\"), (\"xbm\", \"image\/x-xbitmap\"), (\"xdr\", \"text\/plain\"), (\"xht\", \"application\/xhtml+xml\"), (\"xhtml\", \"application\/xhtml+xml\"), (\"xla\", \"application\/vnd.ms-excel\"), (\"xlam\", \"application\/vnd.ms-excel.addin.macroEnabled.12\"), (\"xlc\", \"application\/vnd.ms-excel\"), (\"xlm\", \"application\/vnd.ms-excel\"), (\"xls\", \"application\/vnd.ms-excel\"), (\"xlsb\", \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\"), (\"xlsm\", \"application\/vnd.ms-excel.sheet.macroEnabled.12\"), (\"xlsx\", \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\"), (\"xlt\", \"application\/vnd.ms-excel\"), (\"xltm\", \"application\/vnd.ms-excel.template.macroEnabled.12\"), (\"xltx\", \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\"), (\"xlw\", \"application\/vnd.ms-excel\"), (\"xml\", \"text\/xml\"), (\"xof\", \"x-world\/x-vrml\"), (\"xpm\", \"image\/x-xpixmap\"), (\"xps\", \"application\/vnd.ms-xpsdocument\"), (\"xsd\", \"text\/xml\"), (\"xsf\", \"text\/xml\"), (\"xsl\", \"text\/xml\"), (\"xslt\", \"text\/xml\"), (\"xsn\", \"application\/octet-stream\"), (\"xtp\", \"application\/octet-stream\"), (\"xwd\", \"image\/x-xwindowdump\"), (\"z\", \"application\/x-compress\"), (\"zip\", \"application\/x-zip-compressed\")]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 126, - "length": 19, - "value": "\"Capacitor.WebViewAssetHandler\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 206, - "length": 35, - "value": "\"SSLPinningHttpRequestHandlerClass\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 400, - "length": 6, - "value": "\"call\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 434, - "length": 12, - "value": "\"httpMethod\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 8, - "value": "\"config\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 950, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1028, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1106, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1185, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginConfig.swift", - "kind": "StringLiteral", - "offset": 38, - "length": 12, - "value": "\"Capacitor.PluginConfig\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/KeyPath.swift", - "kind": "StringLiteral", - "offset": 185, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/KeyPath.swift", - "kind": "StringLiteral", - "offset": 301, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 175, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 227, - "length": 7, - "value": "\"level\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 5, - "value": "\"log\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 266, - "length": 33, - "value": "\"⚡️ [\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 284, - "length": 1, - "value": "\"] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 298, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "BooleanLiteral", - "offset": 66, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 293, - "length": 82, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "IntegerLiteral", - "offset": 302, - "length": 4, - "value": "4068" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 26, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 859, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1021, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1033, - "length": 18, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1358, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1996, - "length": 3, - "value": "\"*\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 2021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2134, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2209, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 2302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2447, - "length": 3, - "value": "\"*\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 91, - "length": 11, - "value": "\"capacitor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 136, - "length": 11, - "value": "\"localhost\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 312, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 381, - "length": 7, - "value": "\"debug\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 12, - "value": "\"production\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1366, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1722, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 2356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 184, - "value": "\"<\/widget>\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3201, - "length": 21, - "value": "\"ios.appendUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3256, - "length": 17, - "value": "\"appendUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3407, - "length": 23, - "value": "\"ios.overrideUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3464, - "length": 19, - "value": "\"overrideUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 21, - "value": "\"ios.backgroundColor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3673, - "length": 17, - "value": "\"backgroundColor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3880, - "length": 24, - "value": "\"server.allowNavigation\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 18, - "value": "\"server.iosScheme\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4173, - "length": 17, - "value": "\"server.hostname\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4301, - "length": 12, - "value": "\"server.url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 18, - "value": "\"server.errorPath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4577, - "length": 18, - "value": "\"ios.contentInset\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 11, - "value": "\"automatic\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4823, - "length": 16, - "value": "\"scrollableAxes\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4952, - "length": 7, - "value": "\"never\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5063, - "length": 8, - "value": "\"always\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5290, - "length": 23, - "value": "\"ios.allowsLinkPreview\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5441, - "length": 19, - "value": "\"ios.scrollEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5586, - "length": 17, - "value": "\"ios.zoomEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5635, - "length": 13, - "value": "\"zoomEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5771, - "length": 9, - "value": "\"plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5907, - "length": 21, - "value": "\"ios.loggingBehavior\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5962, - "length": 17, - "value": "\"loggingBehavior\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6211, - "length": 40, - "value": "\"ios.limitsNavigationsToAppBoundDomains\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6401, - "length": 26, - "value": "\"ios.preferredContentMode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6567, - "length": 36, - "value": "\"ios.handleApplicationNotifications\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6764, - "length": 33, - "value": "\"ios.webContentsDebuggingEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 7234, - "length": 15, - "value": "\"DisableDeploy\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7415, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 7529, - "length": 21, - "value": "\"^[a-z][a-z0-9.+-]*$\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 8012, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 8105, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "Dictionary", - "offset": 8664, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "Dictionary", - "offset": 8743, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "Dictionary", - "offset": 344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 446, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 1014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 1229, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "BooleanLiteral", - "offset": 349, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "Dictionary", - "offset": 387, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "Dictionary", - "offset": 416, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 182, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 610, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 948, - "length": 16, - "value": "\"serverBasePath\"" - } - ] -} \ No newline at end of file diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index e0e4dae17..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,772 +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.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Capacitor -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import Capacitor -import CommonCrypto -import Cordova -import Dispatch -import Foundation -import MobileCoreServices -import Swift -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@_inheritsConvenienceInitializers @objc(CAPCookiesPlugin) public class CAPCookiesPlugin : Capacitor.CAPPlugin { - @objc override dynamic public func load() - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -public protocol Router { - func route(for path: Swift.String) -> Swift.String - var basePath: Swift.String { get set } -} -public struct CapacitorRouter : Capacitor.Router { - public init() - public var basePath: Swift.String - public func route(for path: Swift.String) -> Swift.String -} -@objc open class CapacitorUrlRequest : ObjectiveC.NSObject, Foundation.URLSessionTaskDelegate { - public var request: Foundation.URLRequest - public var headers: [Swift.String : Swift.String] - public enum CapacitorUrlRequestError : Swift.Error { - case serializationError(Swift.String?) - } - public init(_ url: Foundation.URL, method: Swift.String) - public func getRequestDataAsJson(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsFormUrlEncoded(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsMultipartFormData(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestDataAsString(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestHeader(_ index: Swift.String) -> Any? - public func getRequestData(_ body: any Capacitor.JSValue, _ contentType: Swift.String, _ dataType: Swift.String? = nil) throws -> Foundation.Data? - @available(*, deprecated, message: "Use newer function with passed headers of type [String: Any]") - public func setRequestHeaders(_ headers: [Swift.String : Swift.String]) - public func setRequestHeaders(_ headers: [Swift.String : Any]) - public func setRequestBody(_ body: any Capacitor.JSValue, _ dataType: Swift.String? = nil) throws - public func setContentType(_ data: Swift.String?) - public func setTimeout(_ timeout: Foundation.TimeInterval) - public func getUrlRequest() -> Foundation.URLRequest - @objc open func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - open func getUrlSession(_ call: Capacitor.CAPPluginCall) -> Foundation.URLSession - @objc deinit -} -@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor(unsafe) open class CAPBridgeViewController : UIKit.UIViewController { - @_Concurrency.MainActor(unsafe) final public var bridge: (any Capacitor.CAPBridgeProtocol)? { - get - } - @_Concurrency.MainActor(unsafe) public var webView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var isStatusBarVisible: Swift.Bool - @_Concurrency.MainActor(unsafe) public var statusBarStyle: UIKit.UIStatusBarStyle - @_Concurrency.MainActor(unsafe) public var statusBarAnimation: UIKit.UIStatusBarAnimation - @objc @_Concurrency.MainActor(unsafe) public var supportedOrientations: [Swift.Int] - @_Concurrency.MainActor(unsafe) final public var isNewBinary: Swift.Bool { - get - set - } - @_Concurrency.MainActor(unsafe) @objc override final public func loadView() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func canPerformUnwindSegueAction(_ action: ObjectiveC.Selector, from fromViewController: UIKit.UIViewController, withSender sender: Any) -> Swift.Bool - @_Concurrency.MainActor(unsafe) open func instanceDescriptor() -> Capacitor.InstanceDescriptor - @_Concurrency.MainActor(unsafe) open func router() -> any Capacitor.Router - @_Concurrency.MainActor(unsafe) open func webViewConfiguration(for instanceConfiguration: Capacitor.InstanceConfiguration) -> WebKit.WKWebViewConfiguration - @_Concurrency.MainActor(unsafe) open func webView(with frame: CoreFoundation.CGRect, configuration: WebKit.WKWebViewConfiguration) -> WebKit.WKWebView - @_Concurrency.MainActor(unsafe) open func capacitorDidLoad() - @_Concurrency.MainActor(unsafe) final public func loadWebView() - @_Concurrency.MainActor(unsafe) open func setStatusBarDefaults() - @_Concurrency.MainActor(unsafe) open func setScreenOrientationDefaults() - @_Concurrency.MainActor(unsafe) @objc override dynamic open var prefersStatusBarHidden: Swift.Bool { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarUpdateAnimation: UIKit.UIStatusBarAnimation { - @objc get - } - @_Concurrency.MainActor(unsafe) open func setStatusBarVisible(_ isStatusBarVisible: Swift.Bool) - @_Concurrency.MainActor(unsafe) open func setStatusBarStyle(_ statusBarStyle: UIKit.UIStatusBarStyle) - @_Concurrency.MainActor(unsafe) open func setStatusBarAnimation(_ statusBarAnimation: UIKit.UIStatusBarAnimation) - @_Concurrency.MainActor(unsafe) @objc override dynamic open var supportedInterfaceOrientations: UIKit.UIInterfaceOrientationMask { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) - @objc deinit -} -extension Capacitor.CAPBridgeViewController { - @objc @_Concurrency.MainActor(unsafe) dynamic public func getServerBasePath() -> Swift.String - @objc @_Concurrency.MainActor(unsafe) dynamic public func setServerBasePath(path: Swift.String) -} -extension Capacitor.CAPBridgeViewController : Capacitor.CAPBridgeDelegate { - @_Concurrency.MainActor(unsafe) public var bridgedWebView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var bridgedViewController: UIKit.UIViewController? { - get - } -} -@objc public protocol CAPBridgeProtocol : ObjectiveC.NSObjectProtocol { - @objc var viewController: UIKit.UIViewController? { get } - @objc var config: Capacitor.InstanceConfiguration { get } - @objc var webView: WebKit.WKWebView? { get } - @objc var notificationRouter: Capacitor.NotificationRouter { get } - @objc var isSimEnvironment: Swift.Bool { get } - @objc var isDevEnvironment: Swift.Bool { get } - @objc var userInterfaceStyle: UIKit.UIUserInterfaceStyle { get } - @objc var autoRegisterPlugins: Swift.Bool { get } - @objc var statusBarVisible: Swift.Bool { get set } - @objc var statusBarStyle: UIKit.UIStatusBarStyle { get set } - @objc var statusBarAnimation: UIKit.UIStatusBarAnimation { get set } - @objc @available(*, deprecated, renamed: "webView") - func getWebView() -> WebKit.WKWebView? - @objc @available(*, deprecated, renamed: "isSimEnvironment") - func isSimulator() -> Swift.Bool - @objc @available(*, deprecated, renamed: "isDevEnvironment") - func isDevMode() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarVisible") - func getStatusBarVisible() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarStyle") - func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @objc @available(*, deprecated, renamed: "userInterfaceStyle") - func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc @available(*, deprecated, message: "Moved - equivalent is found on config.localURL") - func getLocalUrl() -> Swift.String - @objc @available(*, deprecated, renamed: "savedCall(withID:)") - func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc @available(*, deprecated, renamed: "releaseCall(withID:)") - func releaseCall(callbackId: Swift.String) - @objc func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc func saveCall(_ call: Capacitor.CAPPluginCall) - @objc func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc func releaseCall(withID: Swift.String) - @objc func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc func eval(js: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - @objc func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc func setServerBasePath(_ path: Swift.String) - @objc func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)?) - @objc func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)?) -} -extension Capacitor.CAPBridgeProtocol { - @available(*, deprecated, message: "Use CAPLog directly") - public func modulePrint(_ plugin: Capacitor.CAPPlugin, _ items: Any...) - public func alert(_ title: Swift.String, _ message: Swift.String, _ buttonTitle: Swift.String = "OK") - @available(*, deprecated, renamed: "statusBarVisible") - public func setStatusBarVisible(_ visible: Swift.Bool) - @available(*, deprecated, renamed: "statusBarStyle") - public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @available(*, deprecated, renamed: "statusBarAnimation") - public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) -} -public enum CapacitorBridgeError : Swift.Error { - case errorExportingCoreJS - public static func == (a: Capacitor.CapacitorBridgeError, b: Capacitor.CapacitorBridgeError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.CustomNSError { - public static var errorDomain: Swift.String { - get - } - public var errorCode: Swift.Int { - get - } - public var errorUserInfo: [Swift.String : Any] { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } -} -extension WebKit.WKWebView : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == WebKit.WKWebView { - public var keyboardShouldRequireUserInteraction: Swift.Bool? { - get - } - public func setKeyboardShouldRequireUserInteraction(_ flag: Swift.Bool? = nil) -} -extension Foundation.Data : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == Foundation.Data { - public static func data(base64EncodedOrDataUrl: Swift.String) -> Foundation.Data? -} -@objc(CAPWebViewDelegationHandler) @_Concurrency.MainActor(unsafe) public class WebViewDelegationHandler : ObjectiveC.NSObject, WebKit.WKNavigationDelegate, WebKit.WKUIDelegate, WebKit.WKScriptMessageHandler, UIKit.UIScrollViewDelegate { - @_Concurrency.MainActor(unsafe) public var contentController: WebKit.WKUserContentController { - get - } - @_Concurrency.MainActor(unsafe) public init(bridge: Capacitor.CapacitorBridge? = nil) - @_Concurrency.MainActor(unsafe) public func cleanUp() - @_Concurrency.MainActor(unsafe) public func willLoadWebview(_ webView: WebKit.WKWebView?) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didStartProvisionalNavigation navigation: WebKit.WKNavigation!) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestMediaCapturePermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, type: WebKit.WKMediaCaptureType, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestDeviceOrientationAndMotionPermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, decidePolicyFor navigationAction: WebKit.WKNavigationAction, decisionHandler: @escaping (WebKit.WKNavigationActionPolicy) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFinish navigation: WebKit.WKNavigation!) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFail navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFailProvisionalNavigation navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webViewWebContentProcessDidTerminate(_ webView: WebKit.WKWebView) - @_Concurrency.MainActor(unsafe) @objc public func userContentController(_ userContentController: WebKit.WKUserContentController, didReceive message: WebKit.WKScriptMessage) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptAlertPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping () -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptConfirmPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.Bool) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: Swift.String, defaultText: Swift.String?, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.String?) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, createWebViewWith configuration: WebKit.WKWebViewConfiguration, for navigationAction: WebKit.WKNavigationAction, windowFeatures: WebKit.WKWindowFeatures) -> WebKit.WKWebView? - @_Concurrency.MainActor(unsafe) @objc public func scrollViewWillBeginZooming(_ scrollView: UIKit.UIScrollView, with view: UIKit.UIView?) - @objc deinit -} -public protocol JSValue { -} -extension Swift.String : Capacitor.JSValue { -} -extension Swift.Bool : Capacitor.JSValue { -} -extension Swift.Int : Capacitor.JSValue { -} -extension Swift.Float : Capacitor.JSValue { -} -extension Swift.Double : Capacitor.JSValue { -} -extension Foundation.NSNumber : Capacitor.JSValue { -} -extension Foundation.NSNull : Capacitor.JSValue { -} -extension Swift.Array : Capacitor.JSValue { -} -extension Foundation.Date : Capacitor.JSValue { -} -extension Swift.Dictionary : Capacitor.JSValue where Key == Swift.String, Value == any Capacitor.JSValue { -} -public typealias JSObject = [Swift.String : any Capacitor.JSValue] -public typealias JSArray = [any Capacitor.JSValue] -public protocol JSStringContainer { - func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String - func getString(_ key: Swift.String) -> Swift.String? -} -extension Capacitor.JSStringContainer { - public func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String -} -public protocol JSBoolContainer { - func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - func getBool(_ key: Swift.String) -> Swift.Bool? -} -extension Capacitor.JSBoolContainer { - public func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool -} -public protocol JSIntContainer { - func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - func getInt(_ key: Swift.String) -> Swift.Int? -} -extension Capacitor.JSIntContainer { - public func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int -} -public protocol JSFloatContainer { - func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float - func getFloat(_ key: Swift.String) -> Swift.Float? -} -extension Capacitor.JSFloatContainer { - public func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float -} -public protocol JSDoubleContainer { - func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double - func getDouble(_ key: Swift.String) -> Swift.Double? -} -extension Capacitor.JSDoubleContainer { - public func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double -} -public protocol JSDateContainer { - func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date - func getDate(_ key: Swift.String) -> Foundation.Date? -} -extension Capacitor.JSDateContainer { - public func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date -} -public protocol JSArrayContainer { - func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? - func getArray(_ key: Swift.String) -> Capacitor.JSArray? -} -extension Capacitor.JSArrayContainer { - public func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - public func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? -} -public protocol JSObjectContainer { - func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject - func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -extension Capacitor.JSObjectContainer { - public func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject -} -public protocol JSValueContainer : Capacitor.JSArrayContainer, Capacitor.JSBoolContainer, Capacitor.JSDateContainer, Capacitor.JSDoubleContainer, Capacitor.JSFloatContainer, Capacitor.JSIntContainer, Capacitor.JSObjectContainer, Capacitor.JSStringContainer { - static var jsDateFormatter: Foundation.ISO8601DateFormatter { get } - var jsObjectRepresentation: Capacitor.JSObject { get } -} -extension Capacitor.JSValueContainer { - public func getValue(_ key: Swift.String) -> (any Capacitor.JSValue)? - @available(*, renamed: "getValue(_:)", message: "All values returned conform to JSValue, use getValue(_:) instead.") - public func getAny(_ key: Swift.String) -> Any? - public func getString(_ key: Swift.String) -> Swift.String? - public func getBool(_ key: Swift.String) -> Swift.Bool? - public func getInt(_ key: Swift.String) -> Swift.Int? - public func getFloat(_ key: Swift.String) -> Swift.Float? - public func getDouble(_ key: Swift.String) -> Swift.Double? - public func getDate(_ key: Swift.String) -> Foundation.Date? - public func getArray(_ key: Swift.String) -> Capacitor.JSArray? - public func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -public enum JSTypes { -} -extension Capacitor.JSTypes { - public static func coerceDictionaryToJSObject(_ dictionary: Foundation.NSDictionary?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceDictionaryToJSObject(_ dictionary: [Swift.AnyHashable : Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceArrayToJSArray(_ array: [Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSArray? -} -@objc public class CapacitorBridge : ObjectiveC.NSObject, Capacitor.CAPBridgeProtocol { - public static var isDevEnvironment: Swift.Bool { - get - } - @objc public var webView: WebKit.WKWebView? { - @objc get - } - @objc final public let autoRegisterPlugins: Swift.Bool - @objc public var notificationRouter: Capacitor.NotificationRouter - @objc public var isSimEnvironment: Swift.Bool { - @objc get - } - @objc public var isDevEnvironment: Swift.Bool { - @objc get - } - @objc public var userInterfaceStyle: UIKit.UIUserInterfaceStyle { - @objc get - } - @objc public var statusBarVisible: Swift.Bool { - @objc get - @objc set - } - @objc public var statusBarStyle: UIKit.UIStatusBarStyle { - @objc get - @objc set - } - @objc public var statusBarAnimation: UIKit.UIStatusBarAnimation { - @objc get - @objc set - } - public static let capacitorSite: Swift.String - public static let fileStartIdentifier: Swift.String - public static let defaultScheme: Swift.String - public var webViewAssetHandler: Capacitor.WebViewAssetHandler { - get - } - public var webViewDelegationHandler: Capacitor.WebViewDelegationHandler { - get - } - weak public var bridgeDelegate: (any Capacitor.CAPBridgeDelegate)? { - get - } - @objc public var viewController: UIKit.UIViewController? { - @objc get - } - @objc public var config: Capacitor.InstanceConfiguration - @objc public func getWebView() -> WebKit.WKWebView? - @objc public func isSimulator() -> Swift.Bool - @objc public func isDevMode() -> Swift.Bool - @objc public func getStatusBarVisible() -> Swift.Bool - @nonobjc public func setStatusBarVisible(_ visible: Swift.Bool) - @objc public func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @nonobjc public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @objc public func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc public func getLocalUrl() -> Swift.String - @nonobjc public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) - @objc public func setServerBasePath(_ path: Swift.String) - public init(with configuration: Capacitor.InstanceConfiguration, delegate bridgeDelegate: any Capacitor.CAPBridgeDelegate, cordovaConfiguration: Cordova.CDVConfigParser, assetHandler: Capacitor.WebViewAssetHandler, delegationHandler: Capacitor.WebViewDelegationHandler, autoRegisterPlugins: Swift.Bool = true) - @objc deinit - @objc public func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc public func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc public func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc public func saveCall(_ call: Capacitor.CAPPluginCall) - @objc public func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc public func releaseCall(withID: Swift.String) - @objc public func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(callbackId: Swift.String) - @objc public func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc public func eval(js: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - public func logToJs(_ message: Swift.String, _ level: Swift.String = "log") - @objc public func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc public func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc public func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc public func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @objc public func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) -} -@_inheritsConvenienceInitializers @objc open class CAPInstancePlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@objc @_inheritsConvenienceInitializers public class CapacitorWKCookieObserver : ObjectiveC.NSObject, WebKit.WKHTTPCookieStoreObserver { - @objc public func cookiesDidChange(in cookieStore: WebKit.WKHTTPCookieStore) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CapacitorCookieManager { - public func getServerUrl() -> Foundation.URL? - public func getServerUrl(_ urlString: Swift.String?) -> Foundation.URL? - public func encode(_ value: Swift.String) -> Swift.String - public func decode(_ value: Swift.String) -> Swift.String - public func setCookie(_ domain: Swift.String, _ action: Swift.String) - public func setCookie(_ url: Foundation.URL, _ key: Swift.String, _ value: Swift.String, _ expires: Swift.String?, _ path: Swift.String?) - public func getCookiesAsMap(_ url: Foundation.URL) -> [Swift.String : Swift.String] - public func getCookies() -> Swift.String - public func deleteCookie(_ url: Foundation.URL, _ key: Swift.String) - public func clearCookies(_ url: Foundation.URL) - public func clearAllCookies() - public func syncCookiesToWebView() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class CAPFileManager : ObjectiveC.NSObject { - @available(*, deprecated, message: "Use portablePath(fromLocalURL:) on the Bridge") - public static func getPortablePath(host: Swift.String, uri: Foundation.URL?) -> Swift.String? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @available(*, deprecated, message: "'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@objc public class CAPBridge : ObjectiveC.NSObject { - @objc public static let statusBarTappedNotification: Foundation.Notification - public static func getLastUrl() -> Foundation.URL? - public static func handleOpenUrl(_ url: Foundation.URL, _ options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - public static func handleContinueActivity(_ userActivity: Foundation.NSUserActivity, _ restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - public static func handleAppBecameActive(_ application: UIKit.UIApplication) - @objc override dynamic public init() - @objc deinit -} -extension UIKit.UIColor : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T : UIKit.UIColor { - public static func color(r: Swift.Int, g: Swift.Int, b: Swift.Int, a: Swift.Int = 0xFF) -> UIKit.UIColor - public static func color(argb: Swift.UInt32) -> UIKit.UIColor - public static func color(fromHex: Swift.String) -> UIKit.UIColor? -} -public typealias PluginCallResultData = [Swift.String : Any] -public enum PluginCallResult { - case dictionary(Capacitor.PluginCallResultData) -} -@objc public class CAPPluginCallResult : ObjectiveC.NSObject { - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:) public init(_ data: Capacitor.PluginCallResultData?) - @objc deinit -} -@objc public class CAPPluginCallError : ObjectiveC.NSObject { - @objc final public let message: Swift.String - @objc final public let code: Swift.String? - @objc final public let error: (any Swift.Error)? - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:code:error:data:) public init(message: Swift.String, code: Swift.String?, error: (any Swift.Error)?, data: Capacitor.PluginCallResultData?) - @objc deinit -} -extension Foundation.NSNotification.Name { - public static let capacitorOpenURL: Foundation.Notification.Name - public static let capacitorOpenUniversalLink: Foundation.Notification.Name - public static let capacitorContinueActivity: Foundation.Notification.Name - public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc extension Foundation.NSNotification { - @objc public static let capacitorOpenURL: Foundation.Notification.Name - @objc public static let capacitorOpenUniversalLink: Foundation.Notification.Name - @objc public static let capacitorContinueActivity: Foundation.Notification.Name - @objc public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - @objc public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc public enum CAPNotifications : Swift.Int { - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenURL'") - case URLOpen - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenUniversalLink'") - case UniversalLinkOpen - @available(*, deprecated, message: "Notification.Name.capacitorContinueActivity'") - case ContinueActivity - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidRegisterForRemoteNotifications'") - case DidRegisterForRemoteNotificationsWithDeviceToken - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidFailToRegisterForRemoteNotifications'") - case DidFailToRegisterForRemoteNotificationsWithError - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDecidePolicyForNavigationAction'") - case DecidePolicyForNavigationAction - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers public class JSDate { - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias JSResultBody = [Swift.String : Any] -@_inheritsConvenienceInitializers @objc(CAPNotificationRouter) public class NotificationRouter : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate { - weak public var pushNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - weak public var localNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) - @objc override dynamic public init() - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginCallErrorData = [Swift.String : Any] -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginResultData = [Swift.String : Any] -extension Capacitor.CAPPluginCall : Capacitor.JSValueContainer { - public var jsObjectRepresentation: Capacitor.JSObject { - get - } -} -@objc extension Capacitor.CAPPluginCall { - @objc dynamic public var dictionaryRepresentation: Foundation.NSDictionary { - @objc get - } - @objc public static var jsDateFormatter: Foundation.ISO8601DateFormatter -} -@objc extension Capacitor.CAPPluginCall { - @objc @available(*, deprecated, message: "Presence of a key should not be considered significant. Use typed accessors to check the value instead.") - dynamic public func hasOption(_ key: Swift.String) -> Swift.Bool - @objc @available(*, deprecated, renamed: "resolve()") - dynamic public func success() - @objc @available(*, deprecated, renamed: "resolve") - dynamic public func success(_ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func resolve() - @objc dynamic public func resolve(_ data: Capacitor.PluginCallResultData = [:]) - @objc @available(*, deprecated, renamed: "reject") - dynamic public func error(_ message: Swift.String, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func reject(_ message: Swift.String, _ code: Swift.String? = nil, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData? = nil) - @objc dynamic public func unimplemented() - @objc dynamic public func unimplemented(_ message: Swift.String) - @objc dynamic public func unavailable() - @objc dynamic public func unavailable(_ message: Swift.String) -} -public protocol CapacitorExtension { - associatedtype CapacitorType - var capacitor: Self.CapacitorType { get } - static var capacitor: Self.CapacitorType.Type { get } -} -extension Capacitor.CapacitorExtension { - public var capacitor: Capacitor.CapacitorExtensionTypeWrapper { - get - } - public static var capacitor: Capacitor.CapacitorExtensionTypeWrapper.Type { - get - } -} -public struct CapacitorExtensionTypeWrapper { -} -public enum ResponseType : Swift.String { - case arrayBuffer - case blob - case document - case json - case text - public static let `default`: Capacitor.ResponseType - public init(string: Swift.String?) - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers open class HttpRequestHandler { - open class CapacitorHttpRequestBuilder { - public var url: Foundation.URL? - public var method: Swift.String? - public var params: [Swift.String : Swift.String]? - open var request: Capacitor.CapacitorUrlRequest? - public init() - public func setUrl(_ urlString: Swift.String) throws -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setMethod(_ method: Swift.String) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setUrlParams(_ params: [Swift.String : Any]) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - open func openConnection() -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func build() -> Capacitor.CapacitorUrlRequest - @objc deinit - } - public static func setCookiesFromResponse(_ response: Foundation.HTTPURLResponse, _ config: Capacitor.InstanceConfiguration?) - public static func buildResponse(_ data: Foundation.Data?, _ response: Foundation.HTTPURLResponse, responseType: Capacitor.ResponseType = .default) -> [Swift.String : Any] - public static func request(_ call: Capacitor.CAPPluginCall, _ httpMethod: Swift.String?, _ config: Capacitor.InstanceConfiguration?) throws - @objc deinit -} -extension Swift.Array : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper> -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [any Capacitor.JSValue] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [(any Capacitor.JSValue)?] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -@objc(CAPNotificationHandlerProtocol) public protocol NotificationHandlerProtocol { - @objc func willPresent(notification: UserNotifications.UNNotification) -> UserNotifications.UNNotificationPresentationOptions - @objc func didReceive(response: UserNotifications.UNNotificationResponse) -} -extension Foundation.Data { - public var sha256: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers public class AppUUID { - public static func getAppUUID() -> Swift.String - public static func regenerateAppUUID() - @objc deinit -} -@objc(CAPWebViewAssetHandler) public class WebViewAssetHandler : ObjectiveC.NSObject, WebKit.WKURLSchemeHandler { - public init(router: any Capacitor.Router) - public func setAssetPath(_ assetPath: Swift.String) - public func setServerUrl(_ serverUrl: Foundation.URL?) - @objc public func webView(_ webView: WebKit.WKWebView, start urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc public func webView(_ webView: WebKit.WKWebView, stop urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPHttpPlugin) public class CAPHttpPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers @objc public class PluginConfig : ObjectiveC.NSObject { - @objc public func getString(_ configKey: Swift.String, _ defaultValue: Swift.String? = nil) -> Swift.String? - @objc public func getBoolean(_ configKey: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - @objc public func getInt(_ configKey: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - public func getArray(_ configKey: Swift.String, _ defaultValue: Capacitor.JSArray? = nil) -> Capacitor.JSArray? - public func getObject(_ configKey: Swift.String) -> Capacitor.JSObject? - @objc public func isEmpty() -> Swift.Bool - public func getConfigJSON() -> Capacitor.JSObject - @objc deinit -} -public protocol CAPBridgeDelegate : AnyObject { - var bridgedWebView: WebKit.WKWebView? { get } - var bridgedViewController: UIKit.UIViewController? { get } -} -public struct KeyPath { -} -extension Capacitor.KeyPath : Swift.ExpressibleByStringLiteral { - public init(stringLiteral value: Swift.String) - public init(unicodeScalarLiteral value: Swift.String) - public init(extendedGraphemeClusterLiteral value: Swift.String) - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String -} -extension Swift.Dictionary where Key == Swift.String, Value == any Capacitor.JSValue { - public subscript(keyPath keyPath: Capacitor.KeyPath) -> (any Capacitor.JSValue)? { - get - } -} -@_inheritsConvenienceInitializers @objc(CAPConsolePlugin) public class CAPConsolePlugin : Capacitor.CAPPlugin { - @objc public func log(_ call: Capacitor.CAPPluginCall) - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CAPLog { - public static var enableLogging: Swift.Bool - public static func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n") - @objc deinit -} -extension Capacitor.InstanceConfiguration { - @objc dynamic public var appStartFileURL: Foundation.URL { - @objc get - } - @objc dynamic public var appStartServerURL: Foundation.URL { - @objc get - } - @objc dynamic public var errorPathURL: Foundation.URL? { - @objc get - } - @available(*, deprecated, message: "Use getPluginConfig") - @objc dynamic public func getPluginConfigValue(_ pluginId: Swift.String, _ configKey: Swift.String) -> Any? - @objc dynamic public func getPluginConfig(_ pluginId: Swift.String) -> Capacitor.PluginConfig - @objc dynamic public func shouldAllowNavigation(to host: Swift.String) -> Swift.Bool - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getValue(_ key: Swift.String) -> Any? - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getString(_ key: Swift.String) -> Swift.String? -} -public enum InstanceDescriptorDefaults { - public static let scheme: Swift.String - public static let hostname: Swift.String -} -extension Capacitor.InstanceDescriptor { - @objc dynamic public var cordovaDeployDisabled: Swift.Bool { - @objc get - } - @objc dynamic public func normalize() -} -@_inheritsConvenienceInitializers @objc(CAPApplicationDelegateProxy) @_Concurrency.MainActor(unsafe) public class ApplicationDelegateProxy : ObjectiveC.NSObject, UIKit.UIApplicationDelegate { - @_Concurrency.MainActor(unsafe) public static let shared: Capacitor.ApplicationDelegateProxy - @_Concurrency.MainActor(unsafe) public var lastURL: Foundation.URL? { - get - } - @_Concurrency.MainActor(unsafe) @objc public func application(_ app: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any] = [:]) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity, restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPWebViewPlugin) public class CAPWebViewPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -extension Capacitor.CapacitorBridgeError : Swift.Equatable {} -extension Capacitor.CapacitorBridgeError : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.Equatable {} -extension Capacitor.CAPNotifications : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.RawRepresentable {} -extension Capacitor.ResponseType : Swift.Equatable {} -extension Capacitor.ResponseType : Swift.Hashable {} -extension Capacitor.ResponseType : Swift.RawRepresentable {} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index f349d6c19..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftinterface deleted file mode 100644 index e0e4dae17..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,772 +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.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Capacitor -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import Capacitor -import CommonCrypto -import Cordova -import Dispatch -import Foundation -import MobileCoreServices -import Swift -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@_inheritsConvenienceInitializers @objc(CAPCookiesPlugin) public class CAPCookiesPlugin : Capacitor.CAPPlugin { - @objc override dynamic public func load() - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -public protocol Router { - func route(for path: Swift.String) -> Swift.String - var basePath: Swift.String { get set } -} -public struct CapacitorRouter : Capacitor.Router { - public init() - public var basePath: Swift.String - public func route(for path: Swift.String) -> Swift.String -} -@objc open class CapacitorUrlRequest : ObjectiveC.NSObject, Foundation.URLSessionTaskDelegate { - public var request: Foundation.URLRequest - public var headers: [Swift.String : Swift.String] - public enum CapacitorUrlRequestError : Swift.Error { - case serializationError(Swift.String?) - } - public init(_ url: Foundation.URL, method: Swift.String) - public func getRequestDataAsJson(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsFormUrlEncoded(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsMultipartFormData(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestDataAsString(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestHeader(_ index: Swift.String) -> Any? - public func getRequestData(_ body: any Capacitor.JSValue, _ contentType: Swift.String, _ dataType: Swift.String? = nil) throws -> Foundation.Data? - @available(*, deprecated, message: "Use newer function with passed headers of type [String: Any]") - public func setRequestHeaders(_ headers: [Swift.String : Swift.String]) - public func setRequestHeaders(_ headers: [Swift.String : Any]) - public func setRequestBody(_ body: any Capacitor.JSValue, _ dataType: Swift.String? = nil) throws - public func setContentType(_ data: Swift.String?) - public func setTimeout(_ timeout: Foundation.TimeInterval) - public func getUrlRequest() -> Foundation.URLRequest - @objc open func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - open func getUrlSession(_ call: Capacitor.CAPPluginCall) -> Foundation.URLSession - @objc deinit -} -@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor(unsafe) open class CAPBridgeViewController : UIKit.UIViewController { - @_Concurrency.MainActor(unsafe) final public var bridge: (any Capacitor.CAPBridgeProtocol)? { - get - } - @_Concurrency.MainActor(unsafe) public var webView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var isStatusBarVisible: Swift.Bool - @_Concurrency.MainActor(unsafe) public var statusBarStyle: UIKit.UIStatusBarStyle - @_Concurrency.MainActor(unsafe) public var statusBarAnimation: UIKit.UIStatusBarAnimation - @objc @_Concurrency.MainActor(unsafe) public var supportedOrientations: [Swift.Int] - @_Concurrency.MainActor(unsafe) final public var isNewBinary: Swift.Bool { - get - set - } - @_Concurrency.MainActor(unsafe) @objc override final public func loadView() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func canPerformUnwindSegueAction(_ action: ObjectiveC.Selector, from fromViewController: UIKit.UIViewController, withSender sender: Any) -> Swift.Bool - @_Concurrency.MainActor(unsafe) open func instanceDescriptor() -> Capacitor.InstanceDescriptor - @_Concurrency.MainActor(unsafe) open func router() -> any Capacitor.Router - @_Concurrency.MainActor(unsafe) open func webViewConfiguration(for instanceConfiguration: Capacitor.InstanceConfiguration) -> WebKit.WKWebViewConfiguration - @_Concurrency.MainActor(unsafe) open func webView(with frame: CoreFoundation.CGRect, configuration: WebKit.WKWebViewConfiguration) -> WebKit.WKWebView - @_Concurrency.MainActor(unsafe) open func capacitorDidLoad() - @_Concurrency.MainActor(unsafe) final public func loadWebView() - @_Concurrency.MainActor(unsafe) open func setStatusBarDefaults() - @_Concurrency.MainActor(unsafe) open func setScreenOrientationDefaults() - @_Concurrency.MainActor(unsafe) @objc override dynamic open var prefersStatusBarHidden: Swift.Bool { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarUpdateAnimation: UIKit.UIStatusBarAnimation { - @objc get - } - @_Concurrency.MainActor(unsafe) open func setStatusBarVisible(_ isStatusBarVisible: Swift.Bool) - @_Concurrency.MainActor(unsafe) open func setStatusBarStyle(_ statusBarStyle: UIKit.UIStatusBarStyle) - @_Concurrency.MainActor(unsafe) open func setStatusBarAnimation(_ statusBarAnimation: UIKit.UIStatusBarAnimation) - @_Concurrency.MainActor(unsafe) @objc override dynamic open var supportedInterfaceOrientations: UIKit.UIInterfaceOrientationMask { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) - @objc deinit -} -extension Capacitor.CAPBridgeViewController { - @objc @_Concurrency.MainActor(unsafe) dynamic public func getServerBasePath() -> Swift.String - @objc @_Concurrency.MainActor(unsafe) dynamic public func setServerBasePath(path: Swift.String) -} -extension Capacitor.CAPBridgeViewController : Capacitor.CAPBridgeDelegate { - @_Concurrency.MainActor(unsafe) public var bridgedWebView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var bridgedViewController: UIKit.UIViewController? { - get - } -} -@objc public protocol CAPBridgeProtocol : ObjectiveC.NSObjectProtocol { - @objc var viewController: UIKit.UIViewController? { get } - @objc var config: Capacitor.InstanceConfiguration { get } - @objc var webView: WebKit.WKWebView? { get } - @objc var notificationRouter: Capacitor.NotificationRouter { get } - @objc var isSimEnvironment: Swift.Bool { get } - @objc var isDevEnvironment: Swift.Bool { get } - @objc var userInterfaceStyle: UIKit.UIUserInterfaceStyle { get } - @objc var autoRegisterPlugins: Swift.Bool { get } - @objc var statusBarVisible: Swift.Bool { get set } - @objc var statusBarStyle: UIKit.UIStatusBarStyle { get set } - @objc var statusBarAnimation: UIKit.UIStatusBarAnimation { get set } - @objc @available(*, deprecated, renamed: "webView") - func getWebView() -> WebKit.WKWebView? - @objc @available(*, deprecated, renamed: "isSimEnvironment") - func isSimulator() -> Swift.Bool - @objc @available(*, deprecated, renamed: "isDevEnvironment") - func isDevMode() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarVisible") - func getStatusBarVisible() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarStyle") - func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @objc @available(*, deprecated, renamed: "userInterfaceStyle") - func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc @available(*, deprecated, message: "Moved - equivalent is found on config.localURL") - func getLocalUrl() -> Swift.String - @objc @available(*, deprecated, renamed: "savedCall(withID:)") - func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc @available(*, deprecated, renamed: "releaseCall(withID:)") - func releaseCall(callbackId: Swift.String) - @objc func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc func saveCall(_ call: Capacitor.CAPPluginCall) - @objc func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc func releaseCall(withID: Swift.String) - @objc func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc func eval(js: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - @objc func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc func setServerBasePath(_ path: Swift.String) - @objc func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)?) - @objc func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)?) -} -extension Capacitor.CAPBridgeProtocol { - @available(*, deprecated, message: "Use CAPLog directly") - public func modulePrint(_ plugin: Capacitor.CAPPlugin, _ items: Any...) - public func alert(_ title: Swift.String, _ message: Swift.String, _ buttonTitle: Swift.String = "OK") - @available(*, deprecated, renamed: "statusBarVisible") - public func setStatusBarVisible(_ visible: Swift.Bool) - @available(*, deprecated, renamed: "statusBarStyle") - public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @available(*, deprecated, renamed: "statusBarAnimation") - public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) -} -public enum CapacitorBridgeError : Swift.Error { - case errorExportingCoreJS - public static func == (a: Capacitor.CapacitorBridgeError, b: Capacitor.CapacitorBridgeError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.CustomNSError { - public static var errorDomain: Swift.String { - get - } - public var errorCode: Swift.Int { - get - } - public var errorUserInfo: [Swift.String : Any] { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } -} -extension WebKit.WKWebView : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == WebKit.WKWebView { - public var keyboardShouldRequireUserInteraction: Swift.Bool? { - get - } - public func setKeyboardShouldRequireUserInteraction(_ flag: Swift.Bool? = nil) -} -extension Foundation.Data : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == Foundation.Data { - public static func data(base64EncodedOrDataUrl: Swift.String) -> Foundation.Data? -} -@objc(CAPWebViewDelegationHandler) @_Concurrency.MainActor(unsafe) public class WebViewDelegationHandler : ObjectiveC.NSObject, WebKit.WKNavigationDelegate, WebKit.WKUIDelegate, WebKit.WKScriptMessageHandler, UIKit.UIScrollViewDelegate { - @_Concurrency.MainActor(unsafe) public var contentController: WebKit.WKUserContentController { - get - } - @_Concurrency.MainActor(unsafe) public init(bridge: Capacitor.CapacitorBridge? = nil) - @_Concurrency.MainActor(unsafe) public func cleanUp() - @_Concurrency.MainActor(unsafe) public func willLoadWebview(_ webView: WebKit.WKWebView?) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didStartProvisionalNavigation navigation: WebKit.WKNavigation!) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestMediaCapturePermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, type: WebKit.WKMediaCaptureType, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestDeviceOrientationAndMotionPermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, decidePolicyFor navigationAction: WebKit.WKNavigationAction, decisionHandler: @escaping (WebKit.WKNavigationActionPolicy) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFinish navigation: WebKit.WKNavigation!) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFail navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFailProvisionalNavigation navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webViewWebContentProcessDidTerminate(_ webView: WebKit.WKWebView) - @_Concurrency.MainActor(unsafe) @objc public func userContentController(_ userContentController: WebKit.WKUserContentController, didReceive message: WebKit.WKScriptMessage) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptAlertPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping () -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptConfirmPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.Bool) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: Swift.String, defaultText: Swift.String?, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.String?) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, createWebViewWith configuration: WebKit.WKWebViewConfiguration, for navigationAction: WebKit.WKNavigationAction, windowFeatures: WebKit.WKWindowFeatures) -> WebKit.WKWebView? - @_Concurrency.MainActor(unsafe) @objc public func scrollViewWillBeginZooming(_ scrollView: UIKit.UIScrollView, with view: UIKit.UIView?) - @objc deinit -} -public protocol JSValue { -} -extension Swift.String : Capacitor.JSValue { -} -extension Swift.Bool : Capacitor.JSValue { -} -extension Swift.Int : Capacitor.JSValue { -} -extension Swift.Float : Capacitor.JSValue { -} -extension Swift.Double : Capacitor.JSValue { -} -extension Foundation.NSNumber : Capacitor.JSValue { -} -extension Foundation.NSNull : Capacitor.JSValue { -} -extension Swift.Array : Capacitor.JSValue { -} -extension Foundation.Date : Capacitor.JSValue { -} -extension Swift.Dictionary : Capacitor.JSValue where Key == Swift.String, Value == any Capacitor.JSValue { -} -public typealias JSObject = [Swift.String : any Capacitor.JSValue] -public typealias JSArray = [any Capacitor.JSValue] -public protocol JSStringContainer { - func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String - func getString(_ key: Swift.String) -> Swift.String? -} -extension Capacitor.JSStringContainer { - public func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String -} -public protocol JSBoolContainer { - func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - func getBool(_ key: Swift.String) -> Swift.Bool? -} -extension Capacitor.JSBoolContainer { - public func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool -} -public protocol JSIntContainer { - func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - func getInt(_ key: Swift.String) -> Swift.Int? -} -extension Capacitor.JSIntContainer { - public func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int -} -public protocol JSFloatContainer { - func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float - func getFloat(_ key: Swift.String) -> Swift.Float? -} -extension Capacitor.JSFloatContainer { - public func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float -} -public protocol JSDoubleContainer { - func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double - func getDouble(_ key: Swift.String) -> Swift.Double? -} -extension Capacitor.JSDoubleContainer { - public func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double -} -public protocol JSDateContainer { - func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date - func getDate(_ key: Swift.String) -> Foundation.Date? -} -extension Capacitor.JSDateContainer { - public func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date -} -public protocol JSArrayContainer { - func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? - func getArray(_ key: Swift.String) -> Capacitor.JSArray? -} -extension Capacitor.JSArrayContainer { - public func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - public func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? -} -public protocol JSObjectContainer { - func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject - func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -extension Capacitor.JSObjectContainer { - public func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject -} -public protocol JSValueContainer : Capacitor.JSArrayContainer, Capacitor.JSBoolContainer, Capacitor.JSDateContainer, Capacitor.JSDoubleContainer, Capacitor.JSFloatContainer, Capacitor.JSIntContainer, Capacitor.JSObjectContainer, Capacitor.JSStringContainer { - static var jsDateFormatter: Foundation.ISO8601DateFormatter { get } - var jsObjectRepresentation: Capacitor.JSObject { get } -} -extension Capacitor.JSValueContainer { - public func getValue(_ key: Swift.String) -> (any Capacitor.JSValue)? - @available(*, renamed: "getValue(_:)", message: "All values returned conform to JSValue, use getValue(_:) instead.") - public func getAny(_ key: Swift.String) -> Any? - public func getString(_ key: Swift.String) -> Swift.String? - public func getBool(_ key: Swift.String) -> Swift.Bool? - public func getInt(_ key: Swift.String) -> Swift.Int? - public func getFloat(_ key: Swift.String) -> Swift.Float? - public func getDouble(_ key: Swift.String) -> Swift.Double? - public func getDate(_ key: Swift.String) -> Foundation.Date? - public func getArray(_ key: Swift.String) -> Capacitor.JSArray? - public func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -public enum JSTypes { -} -extension Capacitor.JSTypes { - public static func coerceDictionaryToJSObject(_ dictionary: Foundation.NSDictionary?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceDictionaryToJSObject(_ dictionary: [Swift.AnyHashable : Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceArrayToJSArray(_ array: [Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSArray? -} -@objc public class CapacitorBridge : ObjectiveC.NSObject, Capacitor.CAPBridgeProtocol { - public static var isDevEnvironment: Swift.Bool { - get - } - @objc public var webView: WebKit.WKWebView? { - @objc get - } - @objc final public let autoRegisterPlugins: Swift.Bool - @objc public var notificationRouter: Capacitor.NotificationRouter - @objc public var isSimEnvironment: Swift.Bool { - @objc get - } - @objc public var isDevEnvironment: Swift.Bool { - @objc get - } - @objc public var userInterfaceStyle: UIKit.UIUserInterfaceStyle { - @objc get - } - @objc public var statusBarVisible: Swift.Bool { - @objc get - @objc set - } - @objc public var statusBarStyle: UIKit.UIStatusBarStyle { - @objc get - @objc set - } - @objc public var statusBarAnimation: UIKit.UIStatusBarAnimation { - @objc get - @objc set - } - public static let capacitorSite: Swift.String - public static let fileStartIdentifier: Swift.String - public static let defaultScheme: Swift.String - public var webViewAssetHandler: Capacitor.WebViewAssetHandler { - get - } - public var webViewDelegationHandler: Capacitor.WebViewDelegationHandler { - get - } - weak public var bridgeDelegate: (any Capacitor.CAPBridgeDelegate)? { - get - } - @objc public var viewController: UIKit.UIViewController? { - @objc get - } - @objc public var config: Capacitor.InstanceConfiguration - @objc public func getWebView() -> WebKit.WKWebView? - @objc public func isSimulator() -> Swift.Bool - @objc public func isDevMode() -> Swift.Bool - @objc public func getStatusBarVisible() -> Swift.Bool - @nonobjc public func setStatusBarVisible(_ visible: Swift.Bool) - @objc public func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @nonobjc public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @objc public func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc public func getLocalUrl() -> Swift.String - @nonobjc public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) - @objc public func setServerBasePath(_ path: Swift.String) - public init(with configuration: Capacitor.InstanceConfiguration, delegate bridgeDelegate: any Capacitor.CAPBridgeDelegate, cordovaConfiguration: Cordova.CDVConfigParser, assetHandler: Capacitor.WebViewAssetHandler, delegationHandler: Capacitor.WebViewDelegationHandler, autoRegisterPlugins: Swift.Bool = true) - @objc deinit - @objc public func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc public func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc public func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc public func saveCall(_ call: Capacitor.CAPPluginCall) - @objc public func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc public func releaseCall(withID: Swift.String) - @objc public func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(callbackId: Swift.String) - @objc public func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc public func eval(js: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - public func logToJs(_ message: Swift.String, _ level: Swift.String = "log") - @objc public func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc public func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc public func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc public func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @objc public func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) -} -@_inheritsConvenienceInitializers @objc open class CAPInstancePlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@objc @_inheritsConvenienceInitializers public class CapacitorWKCookieObserver : ObjectiveC.NSObject, WebKit.WKHTTPCookieStoreObserver { - @objc public func cookiesDidChange(in cookieStore: WebKit.WKHTTPCookieStore) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CapacitorCookieManager { - public func getServerUrl() -> Foundation.URL? - public func getServerUrl(_ urlString: Swift.String?) -> Foundation.URL? - public func encode(_ value: Swift.String) -> Swift.String - public func decode(_ value: Swift.String) -> Swift.String - public func setCookie(_ domain: Swift.String, _ action: Swift.String) - public func setCookie(_ url: Foundation.URL, _ key: Swift.String, _ value: Swift.String, _ expires: Swift.String?, _ path: Swift.String?) - public func getCookiesAsMap(_ url: Foundation.URL) -> [Swift.String : Swift.String] - public func getCookies() -> Swift.String - public func deleteCookie(_ url: Foundation.URL, _ key: Swift.String) - public func clearCookies(_ url: Foundation.URL) - public func clearAllCookies() - public func syncCookiesToWebView() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class CAPFileManager : ObjectiveC.NSObject { - @available(*, deprecated, message: "Use portablePath(fromLocalURL:) on the Bridge") - public static func getPortablePath(host: Swift.String, uri: Foundation.URL?) -> Swift.String? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @available(*, deprecated, message: "'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@objc public class CAPBridge : ObjectiveC.NSObject { - @objc public static let statusBarTappedNotification: Foundation.Notification - public static func getLastUrl() -> Foundation.URL? - public static func handleOpenUrl(_ url: Foundation.URL, _ options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - public static func handleContinueActivity(_ userActivity: Foundation.NSUserActivity, _ restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - public static func handleAppBecameActive(_ application: UIKit.UIApplication) - @objc override dynamic public init() - @objc deinit -} -extension UIKit.UIColor : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T : UIKit.UIColor { - public static func color(r: Swift.Int, g: Swift.Int, b: Swift.Int, a: Swift.Int = 0xFF) -> UIKit.UIColor - public static func color(argb: Swift.UInt32) -> UIKit.UIColor - public static func color(fromHex: Swift.String) -> UIKit.UIColor? -} -public typealias PluginCallResultData = [Swift.String : Any] -public enum PluginCallResult { - case dictionary(Capacitor.PluginCallResultData) -} -@objc public class CAPPluginCallResult : ObjectiveC.NSObject { - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:) public init(_ data: Capacitor.PluginCallResultData?) - @objc deinit -} -@objc public class CAPPluginCallError : ObjectiveC.NSObject { - @objc final public let message: Swift.String - @objc final public let code: Swift.String? - @objc final public let error: (any Swift.Error)? - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:code:error:data:) public init(message: Swift.String, code: Swift.String?, error: (any Swift.Error)?, data: Capacitor.PluginCallResultData?) - @objc deinit -} -extension Foundation.NSNotification.Name { - public static let capacitorOpenURL: Foundation.Notification.Name - public static let capacitorOpenUniversalLink: Foundation.Notification.Name - public static let capacitorContinueActivity: Foundation.Notification.Name - public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc extension Foundation.NSNotification { - @objc public static let capacitorOpenURL: Foundation.Notification.Name - @objc public static let capacitorOpenUniversalLink: Foundation.Notification.Name - @objc public static let capacitorContinueActivity: Foundation.Notification.Name - @objc public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - @objc public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc public enum CAPNotifications : Swift.Int { - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenURL'") - case URLOpen - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenUniversalLink'") - case UniversalLinkOpen - @available(*, deprecated, message: "Notification.Name.capacitorContinueActivity'") - case ContinueActivity - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidRegisterForRemoteNotifications'") - case DidRegisterForRemoteNotificationsWithDeviceToken - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidFailToRegisterForRemoteNotifications'") - case DidFailToRegisterForRemoteNotificationsWithError - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDecidePolicyForNavigationAction'") - case DecidePolicyForNavigationAction - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers public class JSDate { - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias JSResultBody = [Swift.String : Any] -@_inheritsConvenienceInitializers @objc(CAPNotificationRouter) public class NotificationRouter : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate { - weak public var pushNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - weak public var localNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) - @objc override dynamic public init() - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginCallErrorData = [Swift.String : Any] -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginResultData = [Swift.String : Any] -extension Capacitor.CAPPluginCall : Capacitor.JSValueContainer { - public var jsObjectRepresentation: Capacitor.JSObject { - get - } -} -@objc extension Capacitor.CAPPluginCall { - @objc dynamic public var dictionaryRepresentation: Foundation.NSDictionary { - @objc get - } - @objc public static var jsDateFormatter: Foundation.ISO8601DateFormatter -} -@objc extension Capacitor.CAPPluginCall { - @objc @available(*, deprecated, message: "Presence of a key should not be considered significant. Use typed accessors to check the value instead.") - dynamic public func hasOption(_ key: Swift.String) -> Swift.Bool - @objc @available(*, deprecated, renamed: "resolve()") - dynamic public func success() - @objc @available(*, deprecated, renamed: "resolve") - dynamic public func success(_ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func resolve() - @objc dynamic public func resolve(_ data: Capacitor.PluginCallResultData = [:]) - @objc @available(*, deprecated, renamed: "reject") - dynamic public func error(_ message: Swift.String, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func reject(_ message: Swift.String, _ code: Swift.String? = nil, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData? = nil) - @objc dynamic public func unimplemented() - @objc dynamic public func unimplemented(_ message: Swift.String) - @objc dynamic public func unavailable() - @objc dynamic public func unavailable(_ message: Swift.String) -} -public protocol CapacitorExtension { - associatedtype CapacitorType - var capacitor: Self.CapacitorType { get } - static var capacitor: Self.CapacitorType.Type { get } -} -extension Capacitor.CapacitorExtension { - public var capacitor: Capacitor.CapacitorExtensionTypeWrapper { - get - } - public static var capacitor: Capacitor.CapacitorExtensionTypeWrapper.Type { - get - } -} -public struct CapacitorExtensionTypeWrapper { -} -public enum ResponseType : Swift.String { - case arrayBuffer - case blob - case document - case json - case text - public static let `default`: Capacitor.ResponseType - public init(string: Swift.String?) - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers open class HttpRequestHandler { - open class CapacitorHttpRequestBuilder { - public var url: Foundation.URL? - public var method: Swift.String? - public var params: [Swift.String : Swift.String]? - open var request: Capacitor.CapacitorUrlRequest? - public init() - public func setUrl(_ urlString: Swift.String) throws -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setMethod(_ method: Swift.String) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setUrlParams(_ params: [Swift.String : Any]) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - open func openConnection() -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func build() -> Capacitor.CapacitorUrlRequest - @objc deinit - } - public static func setCookiesFromResponse(_ response: Foundation.HTTPURLResponse, _ config: Capacitor.InstanceConfiguration?) - public static func buildResponse(_ data: Foundation.Data?, _ response: Foundation.HTTPURLResponse, responseType: Capacitor.ResponseType = .default) -> [Swift.String : Any] - public static func request(_ call: Capacitor.CAPPluginCall, _ httpMethod: Swift.String?, _ config: Capacitor.InstanceConfiguration?) throws - @objc deinit -} -extension Swift.Array : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper> -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [any Capacitor.JSValue] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [(any Capacitor.JSValue)?] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -@objc(CAPNotificationHandlerProtocol) public protocol NotificationHandlerProtocol { - @objc func willPresent(notification: UserNotifications.UNNotification) -> UserNotifications.UNNotificationPresentationOptions - @objc func didReceive(response: UserNotifications.UNNotificationResponse) -} -extension Foundation.Data { - public var sha256: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers public class AppUUID { - public static func getAppUUID() -> Swift.String - public static func regenerateAppUUID() - @objc deinit -} -@objc(CAPWebViewAssetHandler) public class WebViewAssetHandler : ObjectiveC.NSObject, WebKit.WKURLSchemeHandler { - public init(router: any Capacitor.Router) - public func setAssetPath(_ assetPath: Swift.String) - public func setServerUrl(_ serverUrl: Foundation.URL?) - @objc public func webView(_ webView: WebKit.WKWebView, start urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc public func webView(_ webView: WebKit.WKWebView, stop urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPHttpPlugin) public class CAPHttpPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers @objc public class PluginConfig : ObjectiveC.NSObject { - @objc public func getString(_ configKey: Swift.String, _ defaultValue: Swift.String? = nil) -> Swift.String? - @objc public func getBoolean(_ configKey: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - @objc public func getInt(_ configKey: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - public func getArray(_ configKey: Swift.String, _ defaultValue: Capacitor.JSArray? = nil) -> Capacitor.JSArray? - public func getObject(_ configKey: Swift.String) -> Capacitor.JSObject? - @objc public func isEmpty() -> Swift.Bool - public func getConfigJSON() -> Capacitor.JSObject - @objc deinit -} -public protocol CAPBridgeDelegate : AnyObject { - var bridgedWebView: WebKit.WKWebView? { get } - var bridgedViewController: UIKit.UIViewController? { get } -} -public struct KeyPath { -} -extension Capacitor.KeyPath : Swift.ExpressibleByStringLiteral { - public init(stringLiteral value: Swift.String) - public init(unicodeScalarLiteral value: Swift.String) - public init(extendedGraphemeClusterLiteral value: Swift.String) - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String -} -extension Swift.Dictionary where Key == Swift.String, Value == any Capacitor.JSValue { - public subscript(keyPath keyPath: Capacitor.KeyPath) -> (any Capacitor.JSValue)? { - get - } -} -@_inheritsConvenienceInitializers @objc(CAPConsolePlugin) public class CAPConsolePlugin : Capacitor.CAPPlugin { - @objc public func log(_ call: Capacitor.CAPPluginCall) - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CAPLog { - public static var enableLogging: Swift.Bool - public static func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n") - @objc deinit -} -extension Capacitor.InstanceConfiguration { - @objc dynamic public var appStartFileURL: Foundation.URL { - @objc get - } - @objc dynamic public var appStartServerURL: Foundation.URL { - @objc get - } - @objc dynamic public var errorPathURL: Foundation.URL? { - @objc get - } - @available(*, deprecated, message: "Use getPluginConfig") - @objc dynamic public func getPluginConfigValue(_ pluginId: Swift.String, _ configKey: Swift.String) -> Any? - @objc dynamic public func getPluginConfig(_ pluginId: Swift.String) -> Capacitor.PluginConfig - @objc dynamic public func shouldAllowNavigation(to host: Swift.String) -> Swift.Bool - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getValue(_ key: Swift.String) -> Any? - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getString(_ key: Swift.String) -> Swift.String? -} -public enum InstanceDescriptorDefaults { - public static let scheme: Swift.String - public static let hostname: Swift.String -} -extension Capacitor.InstanceDescriptor { - @objc dynamic public var cordovaDeployDisabled: Swift.Bool { - @objc get - } - @objc dynamic public func normalize() -} -@_inheritsConvenienceInitializers @objc(CAPApplicationDelegateProxy) @_Concurrency.MainActor(unsafe) public class ApplicationDelegateProxy : ObjectiveC.NSObject, UIKit.UIApplicationDelegate { - @_Concurrency.MainActor(unsafe) public static let shared: Capacitor.ApplicationDelegateProxy - @_Concurrency.MainActor(unsafe) public var lastURL: Foundation.URL? { - get - } - @_Concurrency.MainActor(unsafe) @objc public func application(_ app: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any] = [:]) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity, restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPWebViewPlugin) public class CAPWebViewPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -extension Capacitor.CapacitorBridgeError : Swift.Equatable {} -extension Capacitor.CapacitorBridgeError : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.Equatable {} -extension Capacitor.CAPNotifications : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.RawRepresentable {} -extension Capacitor.ResponseType : Swift.Equatable {} -extension Capacitor.ResponseType : Swift.Hashable {} -extension Capacitor.ResponseType : Swift.RawRepresentable {} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index e42a063a4..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,29764 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPCookiesPlugin", - "printedName": "CAPCookiesPlugin", - "children": [ - { - "kind": "Function", - "name": "load", - "printedName": "load()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)load", - "mangledName": "$s9Capacitor16CAPCookiesPluginC4loadyyF", - "moduleName": "Capacitor", - "overriding": true, - "objc_name": "load", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPCookiesPlugin", - "printedName": "Capacitor.CAPCookiesPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPCookiesPlugin", - "printedName": "Capacitor.CAPCookiesPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin(im)init", - "mangledName": "$s9Capacitor16CAPCookiesPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPCookiesPlugin", - "mangledName": "$s9Capacitor16CAPCookiesPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPCookiesPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Router", - "printedName": "Router", - "children": [ - { - "kind": "Function", - "name": "route", - "printedName": "route(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor6RouterP5route3forS2S_tF", - "mangledName": "$s9Capacitor6RouterP5route3forS2S_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "basePath", - "printedName": "basePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor6RouterP8basePathSSvp", - "mangledName": "$s9Capacitor6RouterP8basePathSSvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvg", - "mangledName": "$s9Capacitor6RouterP8basePathSSvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvs", - "mangledName": "$s9Capacitor6RouterP8basePathSSvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6RouterP8basePathSSvM", - "mangledName": "$s9Capacitor6RouterP8basePathSSvM", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.Router>", - "sugared_genericSig": "", - "protocolReq": true, - "implicit": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor6RouterP", - "mangledName": "$s9Capacitor6RouterP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorRouter", - "printedName": "CapacitorRouter", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorRouter", - "printedName": "Capacitor.CapacitorRouter", - "usr": "s:9Capacitor0A6RouterV" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A6RouterVACycfc", - "mangledName": "$s9Capacitor0A6RouterVACycfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "basePath", - "printedName": "basePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6RouterV8basePathSSvp", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvg", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvs", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6RouterV8basePathSSvM", - "mangledName": "$s9Capacitor0A6RouterV8basePathSSvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "route", - "printedName": "route(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6RouterV5route3forS2S_tF", - "mangledName": "$s9Capacitor0A6RouterV5route3forS2S_tF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor0A6RouterV", - "mangledName": "$s9Capacitor0A6RouterV", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Router", - "printedName": "Router", - "usr": "s:9Capacitor6RouterP", - "mangledName": "$s9Capacitor6RouterP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorUrlRequest", - "printedName": "CapacitorUrlRequest", - "children": [ - { - "kind": "Var", - "name": "request", - "printedName": "request", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvp", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM", - "mangledName": "$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "headers", - "printedName": "headers", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvp", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvg", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvs", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A10UrlRequestC7headersSDyS2SGvM", - "mangledName": "$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorUrlRequestError", - "printedName": "CapacitorUrlRequestError", - "children": [ - { - "kind": "Var", - "name": "serializationError", - "printedName": "serializationError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError.Type) -> (Swift.String?) -> Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequestError", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequestError", - "printedName": "Capacitor.CapacitorUrlRequest.CapacitorUrlRequestError", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO013serializationD0yAESSSgcAEmF", - "mangledName": "$s9Capacitor0A10UrlRequestC0abC5ErrorO013serializationD0yAESSSgcAEmF", - "moduleName": "Capacitor" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor0A10UrlRequestC0abC5ErrorO", - "mangledName": "$s9Capacitor0A10UrlRequestC0abC5ErrorO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:method:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc", - "mangledName": "$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getRequestDataAsJson", - "printedName": "getRequestDataAsJson(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsFormUrlEncoded", - "printedName": "getRequestDataAsFormUrlEncoded(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsMultipartFormData", - "printedName": "getRequestDataAsMultipartFormData(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestDataAsString", - "printedName": "getRequestDataAsString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestHeader", - "printedName": "getRequestHeader(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getRequestData", - "printedName": "getRequestData(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestHeaders", - "printedName": "setRequestHeaders(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestHeaders", - "printedName": "setRequestHeaders(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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": "s:9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setRequestBody", - "printedName": "setRequestBody(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF", - "mangledName": "$s9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setContentType", - "printedName": "setContentType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC14setContentTypeyySSSgF", - "mangledName": "$s9Capacitor0A10UrlRequestC14setContentTypeyySSSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setTimeout", - "printedName": "setTimeout(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC10setTimeoutyySdF", - "mangledName": "$s9Capacitor0A10UrlRequestC10setTimeoutyySdF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUrlRequest", - "printedName": "getUrlRequest()", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "urlSession", - "printedName": "urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "URLSessionTask", - "printedName": "Foundation.URLSessionTask", - "usr": "c:objc(cs)NSURLSessionTask" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Foundation.URLRequest?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URLRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "URLRequest", - "printedName": "Foundation.URLRequest", - "usr": "s:10Foundation10URLRequestV" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "mangledName": "$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUrlSession", - "printedName": "getUrlSession(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "URLSession", - "printedName": "Foundation.URLSession", - "usr": "c:objc(cs)NSURLSession" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF", - "mangledName": "$s9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest(im)init", - "mangledName": "$s9Capacitor0A10UrlRequestCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest", - "mangledName": "$s9Capacitor0A10UrlRequestC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "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": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Cordova", - "printedName": "Cordova", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeViewController", - "printedName": "CAPBridgeViewController", - "children": [ - { - "kind": "Var", - "name": "bridge", - "printedName": "bridge", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isStatusBarVisible", - "printedName": "isStatusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0Vvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0Vvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "supportedOrientations", - "printedName": "supportedOrientations", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)supportedOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "Custom", - "HasStorage", - "AccessControl", - "ObjC" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)supportedOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)setSupportedOrientations:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "isNewBinary", - "printedName": "isNewBinary", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "Lazy", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "loadView", - "printedName": "loadView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)loadView", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC04loadC0yyF", - "moduleName": "Capacitor", - "overriding": true, - "objc_name": "loadView", - "declAttributes": [ - "ObjC", - "Custom", - "Final", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "viewDidLoad", - "printedName": "viewDidLoad()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)viewDidLoad", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC11viewDidLoadyyF", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "viewDidLoad", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canPerformUnwindSegueAction", - "printedName": "canPerformUnwindSegueAction(_:from:withSender:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Selector", - "printedName": "ObjectiveC.Selector", - "usr": "s:10ObjectiveC8SelectorV" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)canPerformUnwindSegueAction:fromViewController:withSender:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC27canPerformUnwindSegueAction_4from10withSenderSb10ObjectiveC8SelectorV_So06UIViewD0CyptF", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "canPerformUnwindSegueAction:fromViewController:withSender:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "instanceDescriptor", - "printedName": "instanceDescriptor()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceDescriptor", - "printedName": "Capacitor.InstanceDescriptor", - "usr": "c:objc(cs)CAPInstanceDescriptor" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "router", - "printedName": "router()", - "children": [ - { - "kind": "TypeNominal", - "name": "Router", - "printedName": "Capacitor.Router", - "usr": "s:9Capacitor6RouterP" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webViewConfiguration", - "printedName": "webViewConfiguration(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(with:configuration:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "CGRect", - "printedName": "CoreFoundation.CGRect", - "usr": "c:@S@CGRect" - }, - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "capacitorDidLoad", - "printedName": "capacitorDidLoad()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "loadWebView", - "printedName": "loadWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarDefaults", - "printedName": "setStatusBarDefaults()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setScreenOrientationDefaults", - "printedName": "setScreenOrientationDefaults()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "prefersStatusBarHidden", - "printedName": "prefersStatusBarHidden", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)prefersStatusBarHidden", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "prefersStatusBarHidden", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)prefersStatusBarHidden", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "prefersStatusBarHidden", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)preferredStatusBarStyle", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)preferredStatusBarStyle", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "preferredStatusBarUpdateAnimation", - "printedName": "preferredStatusBarUpdateAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)preferredStatusBarUpdateAnimation", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC33preferredStatusBarUpdateAnimationSo08UIStatusgI0Vvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarUpdateAnimation", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)preferredStatusBarUpdateAnimation", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC33preferredStatusBarUpdateAnimationSo08UIStatusgI0Vvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "preferredStatusBarUpdateAnimation", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "supportedInterfaceOrientations", - "printedName": "supportedInterfaceOrientations", - "children": [ - { - "kind": "TypeNominal", - "name": "UIInterfaceOrientationMask", - "printedName": "UIKit.UIInterfaceOrientationMask", - "usr": "c:@E@UIInterfaceOrientationMask" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(py)supportedInterfaceOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvp", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "supportedInterfaceOrientations", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "AccessControl", - "Override" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIInterfaceOrientationMask", - "printedName": "UIKit.UIInterfaceOrientationMask", - "usr": "c:@E@UIInterfaceOrientationMask" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)supportedInterfaceOrientations", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvg", - "moduleName": "Capacitor", - "overriding": true, - "isOpen": true, - "objc_name": "supportedInterfaceOrientations", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nibName:bundle:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeViewController", - "printedName": "Capacitor.CAPBridgeViewController", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Bundle?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bundle", - "printedName": "Foundation.Bundle", - "usr": "c:objc(cs)NSBundle" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)initWithNibName:bundle:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "initWithNibName:bundle:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeViewController", - "printedName": "Capacitor.CAPBridgeViewController", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController(im)initWithCoder:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "initWithCoder:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "getServerBasePath", - "printedName": "getServerBasePath()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@objc(cs)CAPBridgeViewController(im)getServerBasePath", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "Custom", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(path:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@objc(cs)CAPBridgeViewController(im)setServerBasePathWithPath:", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tF", - "moduleName": "Capacitor", - "objc_name": "setServerBasePathWithPath:", - "declAttributes": [ - "Dynamic", - "Custom", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "bridgedWebView", - "printedName": "bridgedWebView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgedViewController", - "printedName": "bridgedViewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvp", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPBridgeViewController", - "mangledName": "$s9Capacitor23CAPBridgeViewControllerC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)UIViewController", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIViewController", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CAPBridgeDelegate", - "printedName": "CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP" - }, - { - "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": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeProtocol", - "printedName": "CAPBridgeProtocol", - "children": [ - { - "kind": "Var", - "name": "viewController", - "printedName": "viewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)viewController", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14viewControllerSo06UIViewE0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)viewController", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14viewControllerSo06UIViewE0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "config", - "printedName": "config", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)config", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6configSo24CAPInstanceConfigurationCvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)config", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6configSo24CAPInstanceConfigurationCvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)webView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP7webViewSo05WKWebE0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)webView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP7webViewSo05WKWebE0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "notificationRouter", - "printedName": "notificationRouter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)notificationRouter", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18notificationRouterAA012NotificationE0Cvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)notificationRouter", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18notificationRouterAA012NotificationE0Cvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isSimEnvironment", - "printedName": "isSimEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)isSimEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isSimEnvironmentSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isSimEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isSimEnvironmentSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)isDevEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isDevEnvironmentSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isDevEnvironment", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16isDevEnvironmentSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "userInterfaceStyle", - "printedName": "userInterfaceStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)userInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18userInterfaceStyleSo06UIUsereF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)userInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18userInterfaceStyleSo06UIUsereF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "autoRegisterPlugins", - "printedName": "autoRegisterPlugins", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)autoRegisterPlugins", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19autoRegisterPluginsSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)autoRegisterPlugins", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19autoRegisterPluginsSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "statusBarVisible", - "printedName": "statusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarVisible:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP16statusBarVisibleSbvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarStyle:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14statusBarStyleSo08UIStatuseF0Vvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(py)statusBarAnimation", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvp", - "moduleName": "Capacitor", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)statusBarAnimation", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setStatusBarAnimation:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18statusBarAnimationSo08UIStatuseF0Vvs", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Function", - "name": "getWebView", - "printedName": "getWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getWebView", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP10getWebViewSo05WKWebF0CSgyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isSimulator", - "printedName": "isSimulator()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isSimulator", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11isSimulatorSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isDevMode", - "printedName": "isDevMode()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)isDevMode", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9isDevModeSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarVisible", - "printedName": "getStatusBarVisible()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getStatusBarVisible", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP19getStatusBarVisibleSbyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarStyle", - "printedName": "getStatusBarStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getStatusBarStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP17getStatusBarStyleSo08UIStatusfG0VyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUserInterfaceStyle", - "printedName": "getUserInterfaceStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getUserInterfaceStyle", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP21getUserInterfaceStyleSo06UIUserfG0VyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLocalUrl", - "printedName": "getLocalUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getLocalUrl", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11getLocalUrlSSyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSavedCall", - "printedName": "getSavedCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)getSavedCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP12getSavedCallySo09CAPPluginF0CSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(callbackId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCallWithCallbackId:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCall10callbackIdySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "plugin", - "printedName": "plugin(withName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPlugin?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)pluginWithName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP6plugin8withNameSo9CAPPluginCSgSS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "saveCall", - "printedName": "saveCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)saveCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP8saveCallyySo09CAPPluginE0CF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "savedCall", - "printedName": "savedCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)savedCallWithID:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9savedCall6withIDSo09CAPPluginE0CSgSS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCall:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCallyySo09CAPPluginE0CF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)releaseCallWithID:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP11releaseCall6withIDySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "evalWithPlugin", - "printedName": "evalWithPlugin(_:js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)evalWithPlugin:js:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14evalWithPlugin_2jsySo9CAPPluginC_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "eval", - "printedName": "eval(js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)evalWithJs:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP4eval2jsySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerJSEventWithEventName:target:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14triggerJSEvent9eventName6targetySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:data:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerJSEventWithEventName:target:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP14triggerJSEvent9eventName6target4dataySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerWindowJSEventWithEventName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP20triggerWindowJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerWindowJSEventWithEventName:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP20triggerWindowJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerDocumentJSEventWithEventName:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22triggerDocumentJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)triggerDocumentJSEventWithEventName:data:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22triggerDocumentJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "localURL", - "printedName": "localURL(fromWebURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)localURLFromWebURL:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP8localURL07fromWebE010Foundation0E0VSgAI_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "portablePath", - "printedName": "portablePath(fromLocalURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)portablePathFromLocalURL:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP12portablePath12fromLocalURL10Foundation0H0VSgAI_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)setServerBasePath:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP17setServerBasePathyySSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginType", - "printedName": "registerPluginType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPPlugin.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)registerPluginType:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP18registerPluginTypeyySo9CAPPluginCmF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginInstance", - "printedName": "registerPluginInstance(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)registerPluginInstance:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP22registerPluginInstanceyySo9CAPPluginCF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showAlertWith", - "printedName": "showAlertWith(title:message:buttonTitle:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)showAlertWithTitle:message:buttonTitle:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP13showAlertWith5title7message11buttonTitleySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentVC", - "printedName": "presentVC(_:animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)presentVC:animated:completion:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissVC", - "printedName": "dismissVC(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol(im)dismissVCWithAnimated:completion:", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP9dismissVC8animated10completionySb_yycSgtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "modulePrint", - "printedName": "modulePrint(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "alert", - "printedName": "alert(_:_:_:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF", - "mangledName": "$s9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeProtocol>", - "sugared_genericSig": "", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorBridgeError", - "printedName": "CapacitorBridgeError", - "children": [ - { - "kind": "Var", - "name": "errorExportingCoreJS", - "printedName": "errorExportingCoreJS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CapacitorBridgeError.Type) -> Capacitor.CapacitorBridgeError", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorBridgeError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor0A11BridgeErrorO20errorExportingCoreJSyA2CmF", - "mangledName": "$s9Capacitor0A11BridgeErrorO20errorExportingCoreJSyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - }, - { - "kind": "TypeNominal", - "name": "CapacitorBridgeError", - "printedName": "Capacitor.CapacitorBridgeError", - "usr": "s:9Capacitor0A11BridgeErrorO" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO9hashValueSivp", - "mangledName": "$s9Capacitor0A11BridgeErrorO9hashValueSivp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO9hashValueSivg", - "mangledName": "$s9Capacitor0A11BridgeErrorO9hashValueSivg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF", - "mangledName": "$s9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF", - "moduleName": "Capacitor", - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "errorDomain", - "printedName": "errorDomain", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO11errorDomainSSvpZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO11errorDomainSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO11errorDomainSSvgZ", - "mangledName": "$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZ", - "moduleName": "Capacitor", - "static": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorCode", - "printedName": "errorCode", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO9errorCodeSivp", - "mangledName": "$s9Capacitor0A11BridgeErrorO9errorCodeSivp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO9errorCodeSivg", - "mangledName": "$s9Capacitor0A11BridgeErrorO9errorCodeSivg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorUserInfo", - "printedName": "errorUserInfo", - "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": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvp", - "mangledName": "$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "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": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg", - "mangledName": "$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvp", - "mangledName": "$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg", - "mangledName": "$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor0A11BridgeErrorO", - "mangledName": "$s9Capacitor0A11BridgeErrorO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "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": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomNSError", - "printedName": "CustomNSError", - "usr": "s:10Foundation13CustomNSErrorP", - "mangledName": "$s10Foundation13CustomNSErrorP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "WebViewDelegationHandler", - "printedName": "WebViewDelegationHandler", - "children": [ - { - "kind": "Var", - "name": "contentController", - "printedName": "contentController", - "children": [ - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvp", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorBridge?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "cleanUp", - "printedName": "cleanUp()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor24WebViewDelegationHandlerC7cleanUpyyF", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC7cleanUpyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "willLoadWebview", - "printedName": "willLoadWebview(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didStartProvisionalNavigation:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didStartProvisionalNavigation:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtF", - "moduleName": "Capacitor", - "objc_name": "webView:didStartProvisionalNavigation:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:requestMediaCapturePermissionFor:initiatedByFrame:type:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKSecurityOrigin", - "printedName": "WebKit.WKSecurityOrigin", - "usr": "c:objc(cs)WKSecurityOrigin" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeNominal", - "name": "WKMediaCaptureType", - "printedName": "WebKit.WKMediaCaptureType", - "usr": "c:@E@WKMediaCaptureType" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKPermissionDecision) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKPermissionDecision", - "printedName": "WebKit.WKPermissionDecision", - "usr": "c:@E@WKPermissionDecision" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctF", - "moduleName": "Capacitor", - "intro_iOS": "15", - "objc_name": "webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:requestDeviceOrientationAndMotionPermissionFor:initiatedByFrame:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKSecurityOrigin", - "printedName": "WebKit.WKSecurityOrigin", - "usr": "c:objc(cs)WKSecurityOrigin" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKPermissionDecision) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKPermissionDecision", - "printedName": "WebKit.WKPermissionDecision", - "usr": "c:@E@WKPermissionDecision" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctF", - "moduleName": "Capacitor", - "intro_iOS": "15", - "objc_name": "webView:requestDeviceOrientationAndMotionPermissionForOrigin:initiatedByFrame:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:decidePolicyFor:decisionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationAction", - "printedName": "WebKit.WKNavigationAction", - "usr": "c:objc(cs)WKNavigationAction" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(WebKit.WKNavigationActionPolicy) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationActionPolicy", - "printedName": "WebKit.WKNavigationActionPolicy", - "usr": "c:@E@WKNavigationActionPolicy" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:decidePolicyForNavigationAction:decisionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF", - "moduleName": "Capacitor", - "objc_name": "webView:decidePolicyForNavigationAction:decisionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFinish:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFinishNavigation:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtF", - "moduleName": "Capacitor", - "objc_name": "webView:didFinishNavigation:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFail:withError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFailNavigation:withError:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:didFailNavigation:withError:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:didFailProvisionalNavigation:withError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "ImplicitlyUnwrappedOptional", - "printedName": "WebKit.WKNavigation?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKNavigation", - "printedName": "WebKit.WKNavigation", - "usr": "c:objc(cs)WKNavigation" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:didFailProvisionalNavigation:withError:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:didFailProvisionalNavigation:withError:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webViewWebContentProcessDidTerminate", - "printedName": "webViewWebContentProcessDidTerminate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webViewWebContentProcessDidTerminate:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CF", - "moduleName": "Capacitor", - "objc_name": "webViewWebContentProcessDidTerminate:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "userContentController", - "printedName": "userContentController(_:didReceive:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKUserContentController", - "printedName": "WebKit.WKUserContentController", - "usr": "c:objc(cs)WKUserContentController" - }, - { - "kind": "TypeNominal", - "name": "WKScriptMessage", - "printedName": "WebKit.WKScriptMessage", - "usr": "c:objc(cs)WKScriptMessage" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)userContentController:didReceiveScriptMessage:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtF", - "moduleName": "Capacitor", - "objc_name": "userContentController:didReceiveScriptMessage:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "WKFrameInfo", - "printedName": "WebKit.WKFrameInfo", - "usr": "c:objc(cs)WKFrameInfo" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF", - "moduleName": "Capacitor", - "objc_name": "webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:createWebViewWith:for:windowFeatures:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKWebViewConfiguration", - "printedName": "WebKit.WKWebViewConfiguration", - "usr": "c:objc(cs)WKWebViewConfiguration" - }, - { - "kind": "TypeNominal", - "name": "WKNavigationAction", - "printedName": "WebKit.WKNavigationAction", - "usr": "c:objc(cs)WKNavigationAction" - }, - { - "kind": "TypeNominal", - "name": "WKWindowFeatures", - "printedName": "WebKit.WKWindowFeatures", - "usr": "c:objc(cs)WKWindowFeatures" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtF", - "moduleName": "Capacitor", - "objc_name": "webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "scrollViewWillBeginZooming", - "printedName": "scrollViewWillBeginZooming(_:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIScrollView", - "printedName": "UIKit.UIScrollView", - "usr": "c:objc(cs)UIScrollView" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIView?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)scrollViewWillBeginZooming:withView:", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtF", - "moduleName": "Capacitor", - "objc_name": "scrollViewWillBeginZooming:withView:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler(im)init", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler", - "mangledName": "$s9Capacitor24WebViewDelegationHandlerC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewDelegationHandler", - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "JSValue", - "printedName": "JSValue", - "declKind": "Protocol", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "children": [ - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerP9getStringyS2S_SStF", - "mangledName": "$s9Capacitor17JSStringContainerP9getStringyS2S_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerP9getStringySSSgSSF", - "mangledName": "$s9Capacitor17JSStringContainerP9getStringySSSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF", - "mangledName": "$s9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "children": [ - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF", - "mangledName": "$s9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerP7getBoolySbSgSSF", - "mangledName": "$s9Capacitor15JSBoolContainerP7getBoolySbSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF", - "mangledName": "$s9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSBoolContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "children": [ - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerP6getIntySiSS_SitF", - "mangledName": "$s9Capacitor14JSIntContainerP6getIntySiSS_SitF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerP6getIntySiSgSSF", - "mangledName": "$s9Capacitor14JSIntContainerP6getIntySiSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF", - "mangledName": "$s9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSIntContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "children": [ - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerP8getFloatySfSS_SftF", - "mangledName": "$s9Capacitor16JSFloatContainerP8getFloatySfSS_SftF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerP8getFloatySfSgSSF", - "mangledName": "$s9Capacitor16JSFloatContainerP8getFloatySfSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF", - "mangledName": "$s9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSFloatContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "children": [ - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF", - "mangledName": "$s9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerP9getDoubleySdSgSSF", - "mangledName": "$s9Capacitor17JSDoubleContainerP9getDoubleySdSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF", - "mangledName": "$s9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDoubleContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "children": [ - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF", - "mangledName": "$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSgSSF", - "mangledName": "$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF", - "mangledName": "$s9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSDateContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "children": [ - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_1_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_1_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_1_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[τ_1_0]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_1_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_1_0.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_1_0" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF", - "mangledName": "$s9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : Capacitor.JSArrayContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "children": [ - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF", - "mangledName": "$s9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSObjectContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "JSValueContainer", - "printedName": "JSValueContainer", - "children": [ - { - "kind": "Var", - "name": "jsDateFormatter", - "printedName": "jsDateFormatter", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvpZ", - "mangledName": "$s9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvpZ", - "moduleName": "Capacitor", - "static": true, - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvgZ", - "mangledName": "$s9Capacitor16JSValueContainerP15jsDateFormatterSo09NSISO8601eF0CvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "jsObjectRepresentation", - "printedName": "jsObjectRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvp", - "mangledName": "$s9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvg", - "mangledName": "$s9Capacitor16JSValueContainerP22jsObjectRepresentationSDySSAA0B0_pGvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getValue", - "printedName": "getValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAny", - "printedName": "getAny(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getStringySSSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBool", - "printedName": "getBool(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Int?", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE6getIntySiSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE6getIntySiSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getFloat", - "printedName": "getFloat(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Float?", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDouble", - "printedName": "getDouble(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDate", - "printedName": "getDate(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Date?", - "children": [ - { - "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE8getArrayySayAA0B0_pGSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE8getArrayySayAA0B0_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSF", - "mangledName": "$s9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.JSValueContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor16JSValueContainerP", - "mangledName": "$s9Capacitor16JSValueContainerP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : Capacitor.JSArrayContainer, τ_0_0 : Capacitor.JSBoolContainer, τ_0_0 : Capacitor.JSDateContainer, τ_0_0 : Capacitor.JSDoubleContainer, τ_0_0 : Capacitor.JSFloatContainer, τ_0_0 : Capacitor.JSIntContainer, τ_0_0 : Capacitor.JSObjectContainer, τ_0_0 : Capacitor.JSStringContainer>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP" - }, - { - "kind": "Conformance", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP" - }, - { - "kind": "Conformance", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP" - }, - { - "kind": "Conformance", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP" - }, - { - "kind": "Conformance", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP" - }, - { - "kind": "Conformance", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP" - }, - { - "kind": "Conformance", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP" - }, - { - "kind": "Conformance", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "JSTypes", - "printedName": "JSTypes", - "children": [ - { - "kind": "Function", - "name": "coerceDictionaryToJSObject", - "printedName": "coerceDictionaryToJSObject(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSDictionary?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "coerceDictionaryToJSObject", - "printedName": "coerceDictionaryToJSObject(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "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": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "coerceArrayToJSArray", - "printedName": "coerceArrayToJSArray(_:formattingDatesAsStrings:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ", - "mangledName": "$s9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor7JSTypesO", - "mangledName": "$s9Capacitor7JSTypesO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Dispatch", - "printedName": "Dispatch", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "WebKit", - "printedName": "WebKit", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Cordova", - "printedName": "Cordova", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorBridge", - "printedName": "CapacitorBridge", - "children": [ - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC16isDevEnvironmentSbvpZ", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webView", - "printedName": "webView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)webView", - "mangledName": "$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvp", - "moduleName": "Capacitor", - "objc_name": "webView", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)webView", - "mangledName": "$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvg", - "moduleName": "Capacitor", - "objc_name": "webView", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "autoRegisterPlugins", - "printedName": "autoRegisterPlugins", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)autoRegisterPlugins", - "mangledName": "$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvp", - "moduleName": "Capacitor", - "objc_name": "autoRegisterPlugins", - "declAttributes": [ - "Final", - "ObjC", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "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@Capacitor@objc(cs)CapacitorBridge(im)autoRegisterPlugins", - "mangledName": "$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "autoRegisterPlugins", - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "notificationRouter", - "printedName": "notificationRouter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)notificationRouter", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvp", - "moduleName": "Capacitor", - "objc_name": "notificationRouter", - "declAttributes": [ - "ObjC", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)notificationRouter", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "notificationRouter", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setNotificationRouter:", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0Cvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM", - "mangledName": "$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "isSimEnvironment", - "printedName": "isSimEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)isSimEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isSimEnvironmentSbvp", - "moduleName": "Capacitor", - "objc_name": "isSimEnvironment", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isSimEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isSimEnvironmentSbvg", - "moduleName": "Capacitor", - "objc_name": "isSimEnvironment", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isDevEnvironment", - "printedName": "isDevEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)isDevEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvp", - "moduleName": "Capacitor", - "objc_name": "isDevEnvironment", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isDevEnvironment", - "mangledName": "$s9Capacitor0A6BridgeC16isDevEnvironmentSbvg", - "moduleName": "Capacitor", - "objc_name": "isDevEnvironment", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "userInterfaceStyle", - "printedName": "userInterfaceStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)userInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "userInterfaceStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)userInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "userInterfaceStyle", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "statusBarVisible", - "printedName": "statusBarVisible", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvp", - "moduleName": "Capacitor", - "objc_name": "statusBarVisible", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvg", - "moduleName": "Capacitor", - "objc_name": "statusBarVisible", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarVisible:", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarVisible:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC16statusBarVisibleSbvM", - "mangledName": "$s9Capacitor0A6BridgeC16statusBarVisibleSbvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarStyle", - "printedName": "statusBarStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "statusBarStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "statusBarStyle", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarStyle:", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarStyle:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM", - "mangledName": "$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "statusBarAnimation", - "printedName": "statusBarAnimation", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)statusBarAnimation", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvp", - "moduleName": "Capacitor", - "objc_name": "statusBarAnimation", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)statusBarAnimation", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvg", - "moduleName": "Capacitor", - "objc_name": "statusBarAnimation", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setStatusBarAnimation:", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvs", - "moduleName": "Capacitor", - "objc_name": "setStatusBarAnimation:", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM", - "mangledName": "$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "capacitorSite", - "printedName": "capacitorSite", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC13capacitorSiteSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC13capacitorSiteSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC13capacitorSiteSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC13capacitorSiteSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "fileStartIdentifier", - "printedName": "fileStartIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC19fileStartIdentifierSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC19fileStartIdentifierSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "defaultScheme", - "printedName": "defaultScheme", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC13defaultSchemeSSvpZ", - "mangledName": "$s9Capacitor0A6BridgeC13defaultSchemeSSvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "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:9Capacitor0A6BridgeC13defaultSchemeSSvgZ", - "mangledName": "$s9Capacitor0A6BridgeC13defaultSchemeSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webViewAssetHandler", - "printedName": "webViewAssetHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvp", - "mangledName": "$s9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvg", - "mangledName": "$s9Capacitor0A6BridgeC19webViewAssetHandlerAA03WebdeF0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "webViewDelegationHandler", - "printedName": "webViewDelegationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvp", - "mangledName": "$s9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasStorage", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvg", - "mangledName": "$s9Capacitor0A6BridgeC24webViewDelegationHandlerAA03WebdeF0Cvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgeDelegate", - "printedName": "bridgeDelegate", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.CAPBridgeDelegate?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvp", - "mangledName": "$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "SetterAccess", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPBridgeDelegate?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridgeDelegate", - "printedName": "Capacitor.CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg", - "mangledName": "$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "viewController", - "printedName": "viewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)viewController", - "mangledName": "$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvp", - "moduleName": "Capacitor", - "objc_name": "viewController", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)viewController", - "mangledName": "$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvg", - "moduleName": "Capacitor", - "objc_name": "viewController", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "config", - "printedName": "config", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(py)config", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvp", - "moduleName": "Capacitor", - "objc_name": "config", - "declAttributes": [ - "ObjC", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)config", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvg", - "moduleName": "Capacitor", - "implicit": true, - "objc_name": "config", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setConfig:", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvs", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM", - "mangledName": "$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "getWebView", - "printedName": "getWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getWebView", - "mangledName": "$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyF", - "moduleName": "Capacitor", - "objc_name": "getWebView", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isSimulator", - "printedName": "isSimulator()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isSimulator", - "mangledName": "$s9Capacitor0A6BridgeC11isSimulatorSbyF", - "moduleName": "Capacitor", - "objc_name": "isSimulator", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isDevMode", - "printedName": "isDevMode()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)isDevMode", - "mangledName": "$s9Capacitor0A6BridgeC9isDevModeSbyF", - "moduleName": "Capacitor", - "objc_name": "isDevMode", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarVisible", - "printedName": "getStatusBarVisible()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getStatusBarVisible", - "mangledName": "$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyF", - "moduleName": "Capacitor", - "objc_name": "getStatusBarVisible", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarVisible", - "printedName": "setStatusBarVisible(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC19setStatusBarVisibleyySbF", - "mangledName": "$s9Capacitor0A6BridgeC19setStatusBarVisibleyySbF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getStatusBarStyle", - "printedName": "getStatusBarStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getStatusBarStyle", - "mangledName": "$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyF", - "moduleName": "Capacitor", - "objc_name": "getStatusBarStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarStyle", - "printedName": "setStatusBarStyle(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF", - "mangledName": "$s9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getUserInterfaceStyle", - "printedName": "getUserInterfaceStyle()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserInterfaceStyle", - "printedName": "UIKit.UIUserInterfaceStyle", - "usr": "c:@E@UIUserInterfaceStyle" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getUserInterfaceStyle", - "mangledName": "$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyF", - "moduleName": "Capacitor", - "objc_name": "getUserInterfaceStyle", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getLocalUrl", - "printedName": "getLocalUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getLocalUrl", - "mangledName": "$s9Capacitor0A6BridgeC11getLocalUrlSSyF", - "moduleName": "Capacitor", - "objc_name": "getLocalUrl", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setStatusBarAnimation", - "printedName": "setStatusBarAnimation(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIStatusBarAnimation", - "printedName": "UIKit.UIStatusBarAnimation", - "usr": "c:@E@UIStatusBarAnimation" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF", - "mangledName": "$s9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "NonObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerBasePath", - "printedName": "setServerBasePath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)setServerBasePath:", - "mangledName": "$s9Capacitor0A6BridgeC17setServerBasePathyySSF", - "moduleName": "Capacitor", - "objc_name": "setServerBasePath:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(with:delegate:cordovaConfiguration:assetHandler:delegationHandler:autoRegisterPlugins:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - }, - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeDelegate", - "printedName": "Capacitor.CAPBridgeDelegate", - "usr": "s:9Capacitor17CAPBridgeDelegateP" - }, - { - "kind": "TypeNominal", - "name": "CDVConfigParser", - "printedName": "Cordova.CDVConfigParser", - "usr": "c:objc(cs)CDVConfigParser" - }, - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - }, - { - "kind": "TypeNominal", - "name": "WebViewDelegationHandler", - "printedName": "Capacitor.WebViewDelegationHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewDelegationHandler" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "hasDefaultArg": true, - "usr": "s:Sb" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc", - "mangledName": "$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "registerPluginType", - "printedName": "registerPluginType(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPPlugin.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)registerPluginType:", - "mangledName": "$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmF", - "moduleName": "Capacitor", - "objc_name": "registerPluginType:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "registerPluginInstance", - "printedName": "registerPluginInstance(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)registerPluginInstance:", - "mangledName": "$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCF", - "moduleName": "Capacitor", - "objc_name": "registerPluginInstance:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "plugin", - "printedName": "plugin(withName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPlugin?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)pluginWithName:", - "mangledName": "$s9Capacitor0A6BridgeC6plugin8withNameSo9CAPPluginCSgSS_tF", - "moduleName": "Capacitor", - "objc_name": "pluginWithName:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "saveCall", - "printedName": "saveCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)saveCall:", - "mangledName": "$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CF", - "moduleName": "Capacitor", - "objc_name": "saveCall:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "savedCall", - "printedName": "savedCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)savedCallWithID:", - "mangledName": "$s9Capacitor0A6BridgeC9savedCall6withIDSo09CAPPluginD0CSgSS_tF", - "moduleName": "Capacitor", - "objc_name": "savedCallWithID:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCall:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CF", - "moduleName": "Capacitor", - "objc_name": "releaseCall:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(withID:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCallWithID:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCall6withIDySS_tF", - "moduleName": "Capacitor", - "objc_name": "releaseCallWithID:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getSavedCall", - "printedName": "getSavedCall(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPPluginCall?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)getSavedCall:", - "mangledName": "$s9Capacitor0A6BridgeC12getSavedCallySo09CAPPluginE0CSgSSF", - "moduleName": "Capacitor", - "objc_name": "getSavedCall:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "releaseCall", - "printedName": "releaseCall(callbackId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)releaseCallWithCallbackId:", - "mangledName": "$s9Capacitor0A6BridgeC11releaseCall10callbackIdySS_tF", - "moduleName": "Capacitor", - "objc_name": "releaseCallWithCallbackId:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "evalWithPlugin", - "printedName": "evalWithPlugin(_:js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPlugin", - "printedName": "Capacitor.CAPPlugin", - "usr": "c:objc(cs)CAPPlugin" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)evalWithPlugin:js:", - "mangledName": "$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStF", - "moduleName": "Capacitor", - "objc_name": "evalWithPlugin:js:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "eval", - "printedName": "eval(js:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)evalWithJs:", - "mangledName": "$s9Capacitor0A6BridgeC4eval2jsySS_tF", - "moduleName": "Capacitor", - "objc_name": "evalWithJs:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerJSEventWithEventName:target:", - "mangledName": "$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerJSEventWithEventName:target:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerJSEvent", - "printedName": "triggerJSEvent(eventName:target:data:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerJSEventWithEventName:target:data:", - "mangledName": "$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6target4dataySS_S2StF", - "moduleName": "Capacitor", - "objc_name": "triggerJSEventWithEventName:target:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerWindowJSEventWithEventName:", - "mangledName": "$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "objc_name": "triggerWindowJSEventWithEventName:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerWindowJSEvent", - "printedName": "triggerWindowJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerWindowJSEventWithEventName:data:", - "mangledName": "$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerWindowJSEventWithEventName:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerDocumentJSEventWithEventName:", - "mangledName": "$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventNameySS_tF", - "moduleName": "Capacitor", - "objc_name": "triggerDocumentJSEventWithEventName:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "triggerDocumentJSEvent", - "printedName": "triggerDocumentJSEvent(eventName:data:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)triggerDocumentJSEventWithEventName:data:", - "mangledName": "$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventName4dataySS_SStF", - "moduleName": "Capacitor", - "objc_name": "triggerDocumentJSEventWithEventName:data:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logToJs", - "printedName": "logToJs(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A6BridgeC7logToJsyySS_SStF", - "mangledName": "$s9Capacitor0A6BridgeC7logToJsyySS_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "localURL", - "printedName": "localURL(fromWebURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)localURLFromWebURL:", - "mangledName": "$s9Capacitor0A6BridgeC8localURL07fromWebD010Foundation0D0VSgAI_tF", - "moduleName": "Capacitor", - "objc_name": "localURLFromWebURL:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "portablePath", - "printedName": "portablePath(fromLocalURL:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)portablePathFromLocalURL:", - "mangledName": "$s9Capacitor0A6BridgeC12portablePath12fromLocalURL10Foundation0G0VSgAI_tF", - "moduleName": "Capacitor", - "objc_name": "portablePathFromLocalURL:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "showAlertWith", - "printedName": "showAlertWith(title:message:buttonTitle:)", - "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": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)showAlertWithTitle:message:buttonTitle:", - "mangledName": "$s9Capacitor0A6BridgeC13showAlertWith5title7message11buttonTitleySS_S2StF", - "moduleName": "Capacitor", - "objc_name": "showAlertWithTitle:message:buttonTitle:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentVC", - "printedName": "presentVC(_:animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)presentVC:animated:completion:", - "mangledName": "$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF", - "moduleName": "Capacitor", - "objc_name": "presentVC:animated:completion:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissVC", - "printedName": "dismissVC(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)dismissVCWithAnimated:completion:", - "mangledName": "$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtF", - "moduleName": "Capacitor", - "objc_name": "dismissVCWithAnimated:completion:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorBridge", - "printedName": "Capacitor.CapacitorBridge", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge(im)init", - "mangledName": "$s9Capacitor0A6BridgeCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorBridge", - "mangledName": "$s9Capacitor0A6BridgeC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "CAPBridgeProtocol", - "printedName": "CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol", - "mangledName": "$s9Capacitor17CAPBridgeProtocolP" - }, - { - "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": "TypeDecl", - "name": "CAPInstancePlugin", - "printedName": "CAPInstancePlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPInstancePlugin", - "printedName": "Capacitor.CAPInstancePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPInstancePlugin", - "printedName": "Capacitor.CAPInstancePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin(im)init", - "mangledName": "$s9Capacitor17CAPInstancePluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPInstancePlugin", - "mangledName": "$s9Capacitor17CAPInstancePluginC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorWKCookieObserver", - "printedName": "CapacitorWKCookieObserver", - "children": [ - { - "kind": "Function", - "name": "cookiesDidChange", - "printedName": "cookiesDidChange(in:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKHTTPCookieStore", - "printedName": "WebKit.WKHTTPCookieStore", - "usr": "c:objc(cs)WKHTTPCookieStore" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver(im)cookiesDidChangeInCookieStore:", - "mangledName": "$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tF", - "moduleName": "Capacitor", - "objc_name": "cookiesDidChangeInCookieStore:", - "declAttributes": [ - "ObjC", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorWKCookieObserver", - "printedName": "Capacitor.CapacitorWKCookieObserver", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver(im)init", - "mangledName": "$s9Capacitor0A16WKCookieObserverCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CapacitorWKCookieObserver", - "mangledName": "$s9Capacitor0A16WKCookieObserverC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "TypeDecl", - "name": "CapacitorCookieManager", - "printedName": "CapacitorCookieManager", - "children": [ - { - "kind": "Function", - "name": "getServerUrl", - "printedName": "getServerUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF", - "mangledName": "$s9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getServerUrl", - "printedName": "getServerUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF", - "mangledName": "$s9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "encode", - "printedName": "encode(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC6encodeyS2SF", - "mangledName": "$s9Capacitor0A13CookieManagerC6encodeyS2SF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "decode", - "printedName": "decode(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC6decodeyS2SF", - "mangledName": "$s9Capacitor0A13CookieManagerC6decodeyS2SF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setCookie", - "printedName": "setCookie(_:_:)", - "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" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC03setB0yySS_SStF", - "mangledName": "$s9Capacitor0A13CookieManagerC03setB0yySS_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setCookie", - "printedName": "setCookie(_:_:_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF", - "mangledName": "$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getCookiesAsMap", - "printedName": "getCookiesAsMap(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF", - "mangledName": "$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getCookies", - "printedName": "getCookies()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC10getCookiesSSyF", - "mangledName": "$s9Capacitor0A13CookieManagerC10getCookiesSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteCookie", - "printedName": "deleteCookie(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF", - "mangledName": "$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearCookies", - "printedName": "clearCookies(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF", - "mangledName": "$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "clearAllCookies", - "printedName": "clearAllCookies()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC15clearAllCookiesyyF", - "mangledName": "$s9Capacitor0A13CookieManagerC15clearAllCookiesyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "syncCookiesToWebView", - "printedName": "syncCookiesToWebView()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF", - "mangledName": "$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor0A13CookieManagerC", - "mangledName": "$s9Capacitor0A13CookieManagerC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "TypeDecl", - "name": "CAPFileManager", - "printedName": "CAPFileManager", - "children": [ - { - "kind": "Function", - "name": "getPortablePath", - "printedName": "getPortablePath(host:uri:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ", - "mangledName": "$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ", - "moduleName": "Capacitor", - "static": true, - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPFileManager", - "printedName": "Capacitor.CAPFileManager", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager(im)init", - "mangledName": "$s9Capacitor14CAPFileManagerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPFileManager", - "mangledName": "$s9Capacitor14CAPFileManagerC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridge", - "printedName": "CAPBridge", - "children": [ - { - "kind": "Var", - "name": "statusBarTappedNotification", - "printedName": "statusBarTappedNotification", - "children": [ - { - "kind": "TypeNominal", - "name": "Notification", - "printedName": "Foundation.Notification", - "usr": "s:10Foundation12NotificationV" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(cpy)statusBarTappedNotification", - "mangledName": "$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Notification", - "printedName": "Foundation.Notification", - "usr": "s:10Foundation12NotificationV" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(cm)statusBarTappedNotification", - "mangledName": "$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getLastUrl", - "printedName": "getLastUrl()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ", - "mangledName": "$s9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleOpenUrl", - "printedName": "handleOpenUrl(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenURLOptionsKey", - "usr": "c:@T@UIApplicationOpenURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ", - "mangledName": "$s9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleContinueActivity", - "printedName": "handleContinueActivity(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "NSUserActivity", - "printedName": "Foundation.NSUserActivity", - "usr": "c:objc(cs)NSUserActivity" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([UIKit.UIUserActivityRestoring]?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[UIKit.UIUserActivityRestoring]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[UIKit.UIUserActivityRestoring]", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserActivityRestoring", - "printedName": "UIKit.UIUserActivityRestoring", - "usr": "c:objc(pl)UIUserActivityRestoring" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ", - "mangledName": "$s9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "handleAppBecameActive", - "printedName": "handleAppBecameActive(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ", - "mangledName": "$s9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPBridge", - "printedName": "Capacitor.CAPBridge", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge(im)init", - "mangledName": "$s9Capacitor9CAPBridgeCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPBridge", - "mangledName": "$s9Capacitor9CAPBridgeC", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "PluginCallResult", - "printedName": "PluginCallResult", - "children": [ - { - "kind": "Var", - "name": "dictionary", - "printedName": "dictionary", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.PluginCallResult.Type) -> ([Swift.String : Any]) -> Capacitor.PluginCallResult", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([Swift.String : Any]) -> Capacitor.PluginCallResult", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - }, - { - "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" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.PluginCallResult.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor16PluginCallResultO10dictionaryyACSDySSypGcACmF", - "mangledName": "$s9Capacitor16PluginCallResultO10dictionaryyACSDySSypGcACmF", - "moduleName": "Capacitor" - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor16PluginCallResultO", - "mangledName": "$s9Capacitor16PluginCallResultO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CAPPluginCallResult", - "printedName": "CAPPluginCallResult", - "children": [ - { - "kind": "Var", - "name": "resultData", - "printedName": "resultData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvp", - "mangledName": "$s9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvg", - "mangledName": "$s9Capacitor19CAPPluginCallResultC10resultDataAA06PlugincD0OSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "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@Capacitor@objc(cs)CAPPluginCallResult(py)data", - "mangledName": "$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "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@Capacitor@objc(cs)CAPPluginCallResult(im)data", - "mangledName": "$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallResult", - "printedName": "Capacitor.CAPPluginCallResult", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult" - }, - { - "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": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult(im)init:", - "mangledName": "$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfc", - "moduleName": "Capacitor", - "objc_name": "init:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallResult", - "printedName": "Capacitor.CAPPluginCallResult", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult(im)init", - "mangledName": "$s9Capacitor19CAPPluginCallResultCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallResult", - "mangledName": "$s9Capacitor19CAPPluginCallResultC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "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": "TypeDecl", - "name": "CAPPluginCallError", - "printedName": "CAPPluginCallError", - "children": [ - { - "kind": "Var", - "name": "message", - "printedName": "message", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)message", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7messageSSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "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": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)message", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7messageSSvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "code", - "printedName": "code", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)code", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4codeSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)code", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4codeSSSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "error", - "printedName": "error", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(py)error", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)error", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "resultData", - "printedName": "resultData", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvp", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.PluginCallResult?", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginCallResult", - "printedName": "Capacitor.PluginCallResult", - "usr": "s:9Capacitor16PluginCallResultO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvg", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC10resultDataAA06PluginC6ResultOSgvg", - "moduleName": "Capacitor", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "data", - "printedName": "data", - "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@Capacitor@objc(cs)CAPPluginCallError(py)data", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "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@Capacitor@objc(cs)CAPPluginCallError(im)data", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(message:code:error:data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallError", - "printedName": "Capacitor.CAPPluginCallError", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "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": "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": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)init:code:error:data:", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfc", - "moduleName": "Capacitor", - "objc_name": "init:code:error:data:", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPPluginCallError", - "printedName": "Capacitor.CAPPluginCallError", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError(im)init", - "mangledName": "$s9Capacitor18CAPPluginCallErrorCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPPluginCallError", - "mangledName": "$s9Capacitor18CAPPluginCallErrorC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "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": "TypeDecl", - "name": "CAPNotifications", - "printedName": "CAPNotifications", - "children": [ - { - "kind": "Var", - "name": "URLOpen", - "printedName": "URLOpen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsURLOpen", - "mangledName": "$s9Capacitor16CAPNotificationsO7URLOpenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "UniversalLinkOpen", - "printedName": "UniversalLinkOpen", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsUniversalLinkOpen", - "mangledName": "$s9Capacitor16CAPNotificationsO17UniversalLinkOpenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 1 - }, - { - "kind": "Var", - "name": "ContinueActivity", - "printedName": "ContinueActivity", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsContinueActivity", - "mangledName": "$s9Capacitor16CAPNotificationsO16ContinueActivityyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "DidRegisterForRemoteNotificationsWithDeviceToken", - "printedName": "DidRegisterForRemoteNotificationsWithDeviceToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDidRegisterForRemoteNotificationsWithDeviceToken", - "mangledName": "$s9Capacitor16CAPNotificationsO48DidRegisterForRemoteNotificationsWithDeviceTokenyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "DidFailToRegisterForRemoteNotificationsWithError", - "printedName": "DidFailToRegisterForRemoteNotificationsWithError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDidFailToRegisterForRemoteNotificationsWithError", - "mangledName": "$s9Capacitor16CAPNotificationsO48DidFailToRegisterForRemoteNotificationsWithErroryA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "DecidePolicyForNavigationAction", - "printedName": "DecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.CAPNotifications.Type) -> Capacitor.CAPNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CAPNotifications.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@Capacitor@E@CAPNotifications@CAPNotificationsDecidePolicyForNavigationAction", - "mangledName": "$s9Capacitor16CAPNotificationsO31DecidePolicyForNavigationActionyA2CmF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Available", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Function", - "name": "name", - "printedName": "name()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor16CAPNotificationsO4nameSSyF", - "mangledName": "$s9Capacitor16CAPNotificationsO4nameSSyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CAPNotifications?", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPNotifications", - "printedName": "Capacitor.CAPNotifications", - "usr": "c:@M@Capacitor@E@CAPNotifications" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfc", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfc", - "moduleName": "Capacitor", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueSivp", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueSivp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor16CAPNotificationsO8rawValueSivg", - "mangledName": "$s9Capacitor16CAPNotificationsO8rawValueSivg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@Capacitor@E@CAPNotifications", - "mangledName": "$s9Capacitor16CAPNotificationsO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "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": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "JSDate", - "printedName": "JSDate", - "declKind": "Class", - "usr": "s:9Capacitor6JSDateC", - "mangledName": "$s9Capacitor6JSDateC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "NotificationRouter", - "printedName": "NotificationRouter", - "children": [ - { - "kind": "Var", - "name": "pushNotificationHandler", - "printedName": "pushNotificationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.NotificationHandlerProtocol?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvp", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvg", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvs", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM", - "mangledName": "$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "localNotificationHandler", - "printedName": "localNotificationHandler", - "children": [ - { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "Capacitor.NotificationHandlerProtocol?" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvp", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvg", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.NotificationHandlerProtocol?", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationHandlerProtocol", - "printedName": "Capacitor.NotificationHandlerProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvs", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM", - "mangledName": "$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "userNotificationCenter", - "printedName": "userNotificationCenter(_:willPresent:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNUserNotificationCenter", - "printedName": "UserNotifications.UNUserNotificationCenter", - "usr": "c:objc(cs)UNUserNotificationCenter" - }, - { - "kind": "TypeNominal", - "name": "UNNotification", - "printedName": "UserNotifications.UNNotification", - "usr": "c:objc(cs)UNNotification" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationPresentationOptions", - "printedName": "UserNotifications.UNNotificationPresentationOptions", - "usr": "c:@E@UNNotificationPresentationOptions" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)userNotificationCenter:willPresentNotification:withCompletionHandler:", - "mangledName": "$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF", - "moduleName": "Capacitor", - "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "userNotificationCenter", - "printedName": "userNotificationCenter(_:didReceive:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNUserNotificationCenter", - "printedName": "UserNotifications.UNUserNotificationCenter", - "usr": "c:objc(cs)UNUserNotificationCenter" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "mangledName": "$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF", - "moduleName": "Capacitor", - "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationRouter", - "printedName": "Capacitor.NotificationRouter", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter(im)init", - "mangledName": "$s9Capacitor18NotificationRouterCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPNotificationRouter", - "mangledName": "$s9Capacitor18NotificationRouterC", - "moduleName": "Capacitor", - "objc_name": "CAPNotificationRouter", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "AssociatedType", - "name": "CapacitorType", - "printedName": "CapacitorType", - "declKind": "AssociatedType", - "usr": "s:9Capacitor0A9ExtensionP0A4TypeQa", - "mangledName": "$s9Capacitor0A9ExtensionP0A4TypeQa", - "moduleName": "Capacitor", - "protocolReq": true - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzvp", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzvg", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.CapacitorType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ] - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvpZ", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvpZ", - "moduleName": "Capacitor", - "static": true, - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.CapacitorType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.CapacitorType" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvgZ", - "mangledName": "$s9Capacitor0A9ExtensionP9capacitor0A4TypeQzmvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "static": true, - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvp", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvp", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitor", - "printedName": "capacitor", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvpZ", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvpZ", - "moduleName": "Capacitor", - "static": true, - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ", - "mangledName": "$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CapacitorExtension>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "Var", - "name": "keyboardShouldRequireUserInteraction", - "printedName": "keyboardShouldRequireUserInteraction", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvp", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvp", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == WebKit.WKWebView>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "setKeyboardShouldRequireUserInteraction", - "printedName": "setKeyboardShouldRequireUserInteraction(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Bool?", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == WebKit.WKWebView>", - "sugared_genericSig": "", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "data", - "printedName": "data(base64EncodedOrDataUrl:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == Foundation.Data>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(r:g:b:a:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "hasDefaultArg": true, - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(argb:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "color", - "printedName": "color(fromHex:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIColor?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : UIKit.UIColor>", - "sugared_genericSig": "", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingNullValues", - "printedName": "replacingNullValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue?]", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingOptionalValues", - "printedName": "replacingOptionalValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingNullValues", - "printedName": "replacingNullValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue?]", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE19replacingNullValuesAFyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE19replacingNullValuesAFyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue?]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "replacingOptionalValues", - "printedName": "replacingOptionalValues()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 == [Capacitor.JSValue?]>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV", - "mangledName": "$s9Capacitor0A20ExtensionTypeWrapperV", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "ResponseType", - "printedName": "ResponseType", - "children": [ - { - "kind": "Var", - "name": "arrayBuffer", - "printedName": "arrayBuffer", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO11arrayBufferyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO11arrayBufferyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "blob", - "printedName": "blob", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4blobyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4blobyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "document", - "printedName": "document", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO8documentyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO8documentyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "json", - "printedName": "json", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4jsonyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4jsonyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "text", - "printedName": "text", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Capacitor.ResponseType.Type) -> Capacitor.ResponseType", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "Capacitor.ResponseType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:9Capacitor12ResponseTypeO4textyA2CmF", - "mangledName": "$s9Capacitor12ResponseTypeO4textyA2CmF", - "moduleName": "Capacitor" - }, - { - "kind": "Var", - "name": "default", - "printedName": "default", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor12ResponseTypeO7defaultACvpZ", - "mangledName": "$s9Capacitor12ResponseTypeO7defaultACvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor12ResponseTypeO7defaultACvgZ", - "mangledName": "$s9Capacitor12ResponseTypeO7defaultACvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor12ResponseTypeO6stringACSSSg_tcfc", - "mangledName": "$s9Capacitor12ResponseTypeO6stringACSSSg_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.ResponseType?", - "children": [ - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor12ResponseTypeO8rawValueACSgSS_tcfc", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueACSgSS_tcfc", - "moduleName": "Capacitor", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor12ResponseTypeO8rawValueSSvp", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueSSvp", - "moduleName": "Capacitor", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor12ResponseTypeO8rawValueSSvg", - "mangledName": "$s9Capacitor12ResponseTypeO8rawValueSSvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor12ResponseTypeO", - "mangledName": "$s9Capacitor12ResponseTypeO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "String", - "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": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "TypeDecl", - "name": "HttpRequestHandler", - "printedName": "HttpRequestHandler", - "children": [ - { - "kind": "TypeDecl", - "name": "CapacitorHttpRequestBuilder", - "printedName": "CapacitorHttpRequestBuilder", - "children": [ - { - "kind": "Var", - "name": "url", - "printedName": "url", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "method", - "printedName": "method", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "params", - "printedName": "params", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Swift.String]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Swift.String]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "request", - "printedName": "request", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvp", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvp", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.CapacitorUrlRequest?", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM", - "moduleName": "Capacitor", - "implicit": true, - "isOpen": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setUrl", - "printedName": "setUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setMethod", - "printedName": "setMethod(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setUrlParams", - "printedName": "setUrlParams(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - }, - { - "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": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openConnection", - "printedName": "openConnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorHttpRequestBuilder", - "printedName": "Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "build", - "printedName": "build()", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorUrlRequest", - "printedName": "Capacitor.CapacitorUrlRequest", - "usr": "c:@M@Capacitor@objc(cs)CapacitorUrlRequest" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor18HttpRequestHandlerC0abC7BuilderC", - "mangledName": "$s9Capacitor18HttpRequestHandlerC0abC7BuilderC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Function", - "name": "setCookiesFromResponse", - "printedName": "setCookiesFromResponse(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.InstanceConfiguration?", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "buildResponse", - "printedName": "buildResponse(_:_:responseType:)", - "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" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.Data?", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "HTTPURLResponse", - "printedName": "Foundation.HTTPURLResponse", - "usr": "c:objc(cs)NSHTTPURLResponse" - }, - { - "kind": "TypeNominal", - "name": "ResponseType", - "printedName": "Capacitor.ResponseType", - "hasDefaultArg": true, - "usr": "s:9Capacitor12ResponseTypeO" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "request", - "printedName": "request(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.InstanceConfiguration?", - "children": [ - { - "kind": "TypeNominal", - "name": "InstanceConfiguration", - "printedName": "Capacitor.InstanceConfiguration", - "usr": "c:objc(cs)CAPInstanceConfiguration" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ", - "mangledName": "$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor18HttpRequestHandlerC", - "mangledName": "$s9Capacitor18HttpRequestHandlerC", - "moduleName": "Capacitor", - "isOpen": true, - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "NotificationHandlerProtocol", - "printedName": "NotificationHandlerProtocol", - "children": [ - { - "kind": "Function", - "name": "willPresent", - "printedName": "willPresent(notification:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UNNotificationPresentationOptions", - "printedName": "UserNotifications.UNNotificationPresentationOptions", - "usr": "c:@E@UNNotificationPresentationOptions" - }, - { - "kind": "TypeNominal", - "name": "UNNotification", - "printedName": "UserNotifications.UNNotification", - "usr": "c:objc(cs)UNNotification" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol(im)willPresentWithNotification:", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP11willPresent12notificationSo33UNNotificationPresentationOptionsVSo0H0C_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.NotificationHandlerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceive", - "printedName": "didReceive(response:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol(im)didReceiveWithResponse:", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP10didReceive8responseySo22UNNotificationResponseC_tF", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.NotificationHandlerProtocol>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@Capacitor@objc(pl)CAPNotificationHandlerProtocol", - "mangledName": "$s9Capacitor27NotificationHandlerProtocolP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "objc_name": "CAPNotificationHandlerProtocol", - "declAttributes": [ - "AccessControl", - "ObjC" - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "AppUUID", - "printedName": "AppUUID", - "children": [ - { - "kind": "Function", - "name": "getAppUUID", - "printedName": "getAppUUID()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7AppUUIDC03getbC0SSyFZ", - "mangledName": "$s9Capacitor7AppUUIDC03getbC0SSyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "regenerateAppUUID", - "printedName": "regenerateAppUUID()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor7AppUUIDC010regeneratebC0yyFZ", - "mangledName": "$s9Capacitor7AppUUIDC010regeneratebC0yyFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor7AppUUIDC", - "mangledName": "$s9Capacitor7AppUUIDC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "WebViewAssetHandler", - "printedName": "WebViewAssetHandler", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(router:)", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - }, - { - "kind": "TypeNominal", - "name": "Router", - "printedName": "Capacitor.Router", - "usr": "s:9Capacitor6RouterP" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "setAssetPath", - "printedName": "setAssetPath(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor19WebViewAssetHandlerC03setD4PathyySSF", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03setD4PathyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setServerUrl", - "printedName": "setServerUrl(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:start:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKURLSchemeTask", - "printedName": "WebKit.WKURLSchemeTask", - "usr": "c:objc(pl)WKURLSchemeTask" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)webView:startURLSchemeTask:", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:startURLSchemeTask:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "webView", - "printedName": "webView(_:stop:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - }, - { - "kind": "TypeNominal", - "name": "WKURLSchemeTask", - "printedName": "WebKit.WKURLSchemeTask", - "usr": "c:objc(pl)WKURLSchemeTask" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)webView:stopURLSchemeTask:", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptF", - "moduleName": "Capacitor", - "objc_name": "webView:stopURLSchemeTask:", - "declAttributes": [ - "ObjC", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "WebViewAssetHandler", - "printedName": "Capacitor.WebViewAssetHandler", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler(im)init", - "mangledName": "$s9Capacitor19WebViewAssetHandlerCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewAssetHandler", - "mangledName": "$s9Capacitor19WebViewAssetHandlerC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewAssetHandler", - "declAttributes": [ - "AccessControl", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPHttpPlugin", - "printedName": "CAPHttpPlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPHttpPlugin", - "printedName": "Capacitor.CAPHttpPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPHttpPlugin", - "printedName": "Capacitor.CAPHttpPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin(im)init", - "mangledName": "$s9Capacitor13CAPHttpPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPHttpPlugin", - "mangledName": "$s9Capacitor13CAPHttpPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPHttpPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "PluginConfig", - "printedName": "PluginConfig", - "children": [ - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getString::", - "mangledName": "$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getBoolean", - "printedName": "getBoolean(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getBoolean::", - "mangledName": "$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getInt", - "printedName": "getInt(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)getInt::", - "mangledName": "$s9Capacitor12PluginConfigC6getIntySiSS_SitF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getArray", - "printedName": "getArray(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sa" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF", - "mangledName": "$s9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getObject", - "printedName": "getObject(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Capacitor.JSValue]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF", - "mangledName": "$s9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "isEmpty", - "printedName": "isEmpty()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)isEmpty", - "mangledName": "$s9Capacitor12PluginConfigC7isEmptySbyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getConfigJSON", - "printedName": "getConfigJSON()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF", - "mangledName": "$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginConfig", - "printedName": "Capacitor.PluginConfig", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig(im)init", - "mangledName": "$s9Capacitor12PluginConfigCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig", - "mangledName": "$s9Capacitor12PluginConfigC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": 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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPBridgeDelegate", - "printedName": "CAPBridgeDelegate", - "children": [ - { - "kind": "Var", - "name": "bridgedWebView", - "printedName": "bridgedWebView", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvp", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "WebKit.WKWebView?", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvg", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP14bridgedWebViewSo05WKWebF0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "bridgedViewController", - "printedName": "bridgedViewController", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvp", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvp", - "moduleName": "Capacitor", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvg", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP21bridgedViewControllerSo06UIViewF0CSgvg", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 where τ_0_0 : Capacitor.CAPBridgeDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Protocol", - "usr": "s:9Capacitor17CAPBridgeDelegateP", - "mangledName": "$s9Capacitor17CAPBridgeDelegateP", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "KeyPath", - "printedName": "KeyPath", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(stringLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV13stringLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV13stringLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(unicodeScalarLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV20unicodeScalarLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV20unicodeScalarLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(extendedGraphemeClusterLiteral:)", - "children": [ - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:9Capacitor7KeyPathV30extendedGraphemeClusterLiteralACSS_tcfc", - "mangledName": "$s9Capacitor7KeyPathV30extendedGraphemeClusterLiteralACSS_tcfc", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:9Capacitor7KeyPathV", - "mangledName": "$s9Capacitor7KeyPathV", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPConsolePlugin", - "printedName": "CAPConsolePlugin", - "children": [ - { - "kind": "Function", - "name": "log", - "printedName": "log(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CAPPluginCall", - "printedName": "Capacitor.CAPPluginCall", - "usr": "c:objc(cs)CAPPluginCall" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)log:", - "mangledName": "$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCF", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPConsolePlugin", - "printedName": "Capacitor.CAPConsolePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPConsolePlugin", - "printedName": "Capacitor.CAPConsolePlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin(im)init", - "mangledName": "$s9Capacitor16CAPConsolePluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPConsolePlugin", - "mangledName": "$s9Capacitor16CAPConsolePluginC", - "moduleName": "Capacitor", - "objc_name": "CAPConsolePlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "TypeDecl", - "name": "CAPLog", - "printedName": "CAPLog", - "children": [ - { - "kind": "Var", - "name": "enableLogging", - "printedName": "enableLogging", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvpZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvgZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvsZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvsZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor6CAPLogC13enableLoggingSbvMZ", - "mangledName": "$s9Capacitor6CAPLogC13enableLoggingSbvMZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "print", - "printedName": "print(_:separator:terminator:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ", - "mangledName": "$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "Final", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:9Capacitor6CAPLogC", - "mangledName": "$s9Capacitor6CAPLogC", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "InstanceDescriptorDefaults", - "printedName": "InstanceDescriptorDefaults", - "children": [ - { - "kind": "Var", - "name": "scheme", - "printedName": "scheme", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ", - "moduleName": "Capacitor", - "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:9Capacitor26InstanceDescriptorDefaultsO6schemeSSvgZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "hostname", - "printedName": "hostname", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ", - "moduleName": "Capacitor", - "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:9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvgZ", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:9Capacitor26InstanceDescriptorDefaultsO", - "mangledName": "$s9Capacitor26InstanceDescriptorDefaultsO", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "ApplicationDelegateProxy", - "printedName": "ApplicationDelegateProxy", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24ApplicationDelegateProxyC6sharedACvpZ", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC6sharedACvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "Custom", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24ApplicationDelegateProxyC6sharedACvgZ", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC6sharedACvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "lastURL", - "printedName": "lastURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvp", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "SetterAccess", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg", - "moduleName": "Capacitor", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "application", - "printedName": "application(_:open:options:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "OpenURLOptionsKey", - "printedName": "UIKit.UIApplication.OpenURLOptionsKey", - "usr": "c:@T@UIApplicationOpenURLOptionsKey" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)application:openURL:options:", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", - "moduleName": "Capacitor", - "objc_name": "application:openURL:options:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "application", - "printedName": "application(_:continue:restorationHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UIApplication", - "printedName": "UIKit.UIApplication", - "usr": "c:objc(cs)UIApplication" - }, - { - "kind": "TypeNominal", - "name": "NSUserActivity", - "printedName": "Foundation.NSUserActivity", - "usr": "c:objc(cs)NSUserActivity" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([UIKit.UIUserActivityRestoring]?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[UIKit.UIUserActivityRestoring]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[UIKit.UIUserActivityRestoring]", - "children": [ - { - "kind": "TypeNominal", - "name": "UIUserActivityRestoring", - "printedName": "UIKit.UIUserActivityRestoring", - "usr": "c:objc(pl)UIUserActivityRestoring" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)application:continueUserActivity:restorationHandler:", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctF", - "moduleName": "Capacitor", - "objc_name": "application:continueUserActivity:restorationHandler:", - "declAttributes": [ - "ObjC", - "Custom", - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApplicationDelegateProxy", - "printedName": "Capacitor.ApplicationDelegateProxy", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy(im)init", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPApplicationDelegateProxy", - "mangledName": "$s9Capacitor24ApplicationDelegateProxyC", - "moduleName": "Capacitor", - "objc_name": "CAPApplicationDelegateProxy", - "declAttributes": [ - "Custom", - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "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": "Capacitor" - }, - { - "kind": "TypeDecl", - "name": "CAPWebViewPlugin", - "printedName": "CAPWebViewPlugin", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(bridge:pluginId:pluginName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPWebViewPlugin", - "printedName": "Capacitor.CAPWebViewPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin" - }, - { - "kind": "TypeNominal", - "name": "CAPBridgeProtocol", - "printedName": "Capacitor.CAPBridgeProtocol", - "usr": "c:@M@Capacitor@objc(pl)CAPBridgeProtocol" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin(im)initWithBridge:pluginId:pluginName:", - "mangledName": "$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2Stcfc", - "moduleName": "Capacitor", - "deprecated": true, - "overriding": true, - "implicit": true, - "objc_name": "initWithBridge:pluginId:pluginName:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override", - "Available" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "CAPWebViewPlugin", - "printedName": "Capacitor.CAPWebViewPlugin", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin" - } - ], - "declKind": "Constructor", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin(im)init", - "mangledName": "$s9Capacitor16CAPWebViewPluginCACycfc", - "moduleName": "Capacitor", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - } - ], - "declKind": "Class", - "usr": "c:@M@Capacitor@objc(cs)CAPWebViewPlugin", - "mangledName": "$s9Capacitor16CAPWebViewPluginC", - "moduleName": "Capacitor", - "objc_name": "CAPWebViewPlugin", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)CAPPlugin", - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Capacitor.CAPPlugin", - "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": "TypeDecl", - "name": "WKWebView", - "printedName": "WKWebView", - "declKind": "Class", - "usr": "c:objc(cs)WKWebView", - "moduleName": "WebKit", - "isOpen": true, - "intro_iOS": "8.0", - "objc_name": "WKWebView", - "declAttributes": [ - "Custom", - "Available", - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIView", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIView", - "UIKit.UIResponder", - "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": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "WKWebView", - "printedName": "WebKit.WKWebView", - "usr": "c:objc(cs)WKWebView" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Data", - "printedName": "Data", - "children": [ - { - "kind": "Var", - "name": "sha256", - "printedName": "sha256", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:10Foundation4DataV9CapacitorE6sha256SSvp", - "mangledName": "$s10Foundation4DataV9CapacitorE6sha256SSvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:10Foundation4DataV9CapacitorE6sha256SSvg", - "mangledName": "$s10Foundation4DataV9CapacitorE6sha256SSvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:10Foundation4DataV", - "mangledName": "$s10Foundation4DataV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Frozen", - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "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": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, - { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Foundation.Data.Iterator", - "usr": "s:10Foundation4DataV8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSData", - "printedName": "Foundation.NSData", - "usr": "c:objc(cs)NSData" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bool", - "printedName": "Bool", - "declKind": "Struct", - "usr": "s:Sb", - "mangledName": "$sSb", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinBooleanLiteral", - "printedName": "_ExpressibleByBuiltinBooleanLiteral", - "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "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": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Int", - "printedName": "Int", - "declKind": "Struct", - "usr": "s:Si", - "mangledName": "$sSi", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" - }, - { - "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ - { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", - "children": [ - { - "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int.Words", - "usr": "s:Si5WordsV" - } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int.SIMD2Storage", - "usr": "s:Si12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int.SIMD4Storage", - "usr": "s:Si12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int.SIMD8Storage", - "usr": "s:Si12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int.SIMD16Storage", - "usr": "s:Si13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int.SIMD32Storage", - "usr": "s:Si13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int.SIMD64Storage", - "usr": "s:Si13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" - } - ] - } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ - { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNumber", - "printedName": "NSNumber", - "declKind": "Class", - "usr": "c:objc(cs)NSNumber", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNumber", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSValue", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "Foundation.NSValue", - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNull", - "printedName": "NSNull", - "declKind": "Class", - "usr": "c:objc(cs)NSNull", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNull", - "declAttributes": [ - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Array", - "printedName": "Array", - "declKind": "Struct", - "usr": "s:Sa", - "mangledName": "$sSa", - "moduleName": "Swift", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_DestructorSafeContainer", - "printedName": "_DestructorSafeContainer", - "usr": "s:s24_DestructorSafeContainerP", - "mangledName": "$ss24_DestructorSafeContainerP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "_ArrayProtocol", - "printedName": "_ArrayProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "_Buffer", - "printedName": "_Buffer", - "children": [ - { - "kind": "TypeNominal", - "name": "_ArrayBuffer", - "printedName": "Swift._ArrayBuffer<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s12_ArrayBufferV" - } - ] - } - ], - "usr": "s:s14_ArrayProtocolP", - "mangledName": "$ss14_ArrayProtocolP" - }, - { - "kind": "Conformance", - "name": "RandomAccessCollection", - "printedName": "RandomAccessCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sk", - "mangledName": "$sSk" - }, - { - "kind": "Conformance", - "name": "MutableCollection", - "printedName": "MutableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:SM", - "mangledName": "$sSM" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "Range", - "printedName": "Swift.Range", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "usr": "s:Sn" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "IndexingIterator", - "printedName": "Swift.IndexingIterator<[τ_0_0]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[τ_0_0]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s16IndexingIteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "ExpressibleByArrayLiteral", - "printedName": "ExpressibleByArrayLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ArrayLiteralElement", - "printedName": "ArrayLiteralElement", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - } - ], - "usr": "s:s25ExpressibleByArrayLiteralP", - "mangledName": "$ss25ExpressibleByArrayLiteralP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "ArraySlice", - "printedName": "Swift.ArraySlice<τ_0_0>", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ], - "usr": "s:s10ArraySliceV" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSArray", - "printedName": "Foundation.NSArray", - "usr": "c:objc(cs)NSArray" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "ContiguousBytes", - "printedName": "ContiguousBytes", - "usr": "s:10Foundation15ContiguousBytesP", - "mangledName": "$s10Foundation15ContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "EncodableWithConfiguration", - "printedName": "EncodableWithConfiguration", - "children": [ - { - "kind": "TypeWitness", - "name": "EncodingConfiguration", - "printedName": "EncodingConfiguration", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.EncodingConfiguration" - } - ] - } - ], - "usr": "s:10Foundation26EncodableWithConfigurationP", - "mangledName": "$s10Foundation26EncodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DecodableWithConfiguration", - "printedName": "DecodableWithConfiguration", - "children": [ - { - "kind": "TypeWitness", - "name": "DecodingConfiguration", - "printedName": "DecodingConfiguration", - "children": [ - { - "kind": "TypeNominal", - "name": "DependentMember", - "printedName": "τ_0_0.DecodingConfiguration" - } - ] - } - ], - "usr": "s:10Foundation26DecodableWithConfigurationP", - "mangledName": "$s10Foundation26DecodableWithConfigurationP" - }, - { - "kind": "Conformance", - "name": "DataProtocol", - "printedName": "DataProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "Regions", - "printedName": "Regions", - "children": [ - { - "kind": "TypeNominal", - "name": "CollectionOfOne", - "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.UInt8]", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt8", - "printedName": "Swift.UInt8", - "usr": "s:s5UInt8V" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:s15CollectionOfOneV" - } - ] - } - ], - "usr": "s:10Foundation12DataProtocolP", - "mangledName": "$s10Foundation12DataProtocolP" - }, - { - "kind": "Conformance", - "name": "MutableDataProtocol", - "printedName": "MutableDataProtocol", - "usr": "s:10Foundation19MutableDataProtocolP", - "mangledName": "$s10Foundation19MutableDataProtocolP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Date", - "printedName": "Date", - "declKind": "Struct", - "usr": "s:10Foundation4DateV", - "mangledName": "$s10Foundation4DateV", - "moduleName": "Foundation", - "intro_Macosx": "10.10", - "intro_iOS": "8.0", - "intro_tvOS": "9.0", - "intro_watchOS": "2.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "ReferenceConvertible", - "printedName": "ReferenceConvertible", - "children": [ - { - "kind": "TypeWitness", - "name": "ReferenceType", - "printedName": "ReferenceType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:10Foundation20ReferenceConvertibleP", - "mangledName": "$s10Foundation20ReferenceConvertibleP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDate", - "printedName": "Foundation.NSDate", - "usr": "c:objc(cs)NSDate" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Dictionary", - "printedName": "Dictionary", - "children": [ - { - "kind": "Subscript", - "name": "subscript", - "printedName": "subscript(keyPath:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - } - ], - "declKind": "Subscript", - "usr": "s:SD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcip", - "mangledName": "$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcip", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 == Swift.String, τ_0_1 == Capacitor.JSValue>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Capacitor.JSValue?", - "children": [ - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "KeyPath", - "printedName": "Capacitor.KeyPath", - "usr": "s:9Capacitor7KeyPathV" - } - ], - "declKind": "Accessor", - "usr": "s:SD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig", - "mangledName": "$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig", - "moduleName": "Capacitor", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 == Swift.String, τ_0_1 == Capacitor.JSValue>", - "sugared_genericSig": "", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:SD", - "mangledName": "$sSD", - "moduleName": "Swift", - "genericSig": "<τ_0_0, τ_0_1 where τ_0_0 : Swift.Hashable>", - "sugared_genericSig": "", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "JSValue", - "printedName": "JSValue", - "usr": "s:9Capacitor7JSValueP", - "mangledName": "$s9Capacitor7JSValueP" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(key: τ_0_0, value: τ_0_1)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Index", - "usr": "s:SD5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.Dictionary<τ_0_0, τ_0_1>.Iterator", - "usr": "s:SD8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Slice", - "printedName": "Swift.Slice<[τ_0_0 : τ_0_1]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:s5SliceV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices<[τ_0_0 : τ_0_1]>", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[τ_0_0 : τ_0_1]", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - }, - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "ExpressibleByDictionaryLiteral", - "printedName": "ExpressibleByDictionaryLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "Key", - "printedName": "Key", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Value", - "printedName": "Value", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_1" - } - ] - } - ], - "usr": "s:s30ExpressibleByDictionaryLiteralP", - "mangledName": "$ss30ExpressibleByDictionaryLiteralP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIColor", - "printedName": "UIColor", - "declKind": "Class", - "usr": "c:objc(cs)UIColor", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIColor", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "Conformance", - "name": "CapacitorExtension", - "printedName": "CapacitorExtension", - "children": [ - { - "kind": "TypeWitness", - "name": "CapacitorType", - "printedName": "CapacitorType", - "children": [ - { - "kind": "TypeNominal", - "name": "CapacitorExtensionTypeWrapper", - "printedName": "Capacitor.CapacitorExtensionTypeWrapper", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "usr": "s:9Capacitor0A20ExtensionTypeWrapperV" - } - ] - } - ], - "usr": "s:9Capacitor0A9ExtensionP", - "mangledName": "$s9Capacitor0A9ExtensionP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByColorLiteral", - "printedName": "_ExpressibleByColorLiteral", - "usr": "s:s26_ExpressibleByColorLiteralP", - "mangledName": "$ss26_ExpressibleByColorLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "capacitorOpenURL", - "printedName": "capacitorOpenURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE16capacitorOpenURLABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorOpenUniversalLink", - "printedName": "capacitorOpenUniversalLink", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorContinueActivity", - "printedName": "capacitorContinueActivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidRegisterForRemoteNotifications", - "printedName": "capacitorDidRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidFailToRegisterForRemoteNotifications", - "printedName": "capacitorDidFailToRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDecidePolicyForNavigationAction", - "printedName": "capacitorDecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorStatusBarTapped", - "printedName": "capacitorStatusBarTapped", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvgZ", - "mangledName": "$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NSNotification", - "printedName": "NSNotification", - "children": [ - { - "kind": "Var", - "name": "capacitorOpenURL", - "printedName": "capacitorOpenURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorOpenURL", - "mangledName": "$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorOpenURL", - "mangledName": "$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorOpenUniversalLink", - "printedName": "capacitorOpenUniversalLink", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorOpenUniversalLink", - "mangledName": "$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorOpenUniversalLink", - "mangledName": "$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorContinueActivity", - "printedName": "capacitorContinueActivity", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorContinueActivity", - "mangledName": "$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorContinueActivity", - "mangledName": "$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidRegisterForRemoteNotifications", - "printedName": "capacitorDidRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDidRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDidRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDidFailToRegisterForRemoteNotifications", - "printedName": "capacitorDidFailToRegisterForRemoteNotifications", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDidFailToRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDidFailToRegisterForRemoteNotifications", - "mangledName": "$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorDecidePolicyForNavigationAction", - "printedName": "capacitorDecidePolicyForNavigationAction", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorDecidePolicyForNavigationAction", - "mangledName": "$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorDecidePolicyForNavigationAction", - "mangledName": "$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "capacitorStatusBarTapped", - "printedName": "capacitorStatusBarTapped", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cpy)capacitorStatusBarTapped", - "mangledName": "$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavpZ", - "moduleName": "Capacitor", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)NSNotification(cm)capacitorStatusBarTapped", - "mangledName": "$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)NSNotification", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSNotification", - "declAttributes": [ - "ObjC", - "NonSendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CAPPluginCall", - "printedName": "CAPPluginCall", - "children": [ - { - "kind": "Var", - "name": "jsObjectRepresentation", - "printedName": "jsObjectRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Var", - "usr": "s:So13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvp", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvp", - "moduleName": "Capacitor", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Capacitor.JSValue]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "JSValue", - "printedName": "Capacitor.JSValue", - "usr": "s:9Capacitor7JSValueP" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Accessor", - "usr": "s:So13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg", - "moduleName": "Capacitor", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "dictionaryRepresentation", - "printedName": "dictionaryRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(py)dictionaryRepresentation", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvp", - "moduleName": "Capacitor", - "objc_name": "dictionaryRepresentation", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NSDictionary", - "printedName": "Foundation.NSDictionary", - "usr": "c:objc(cs)NSDictionary" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)dictionaryRepresentation", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvg", - "moduleName": "Capacitor", - "objc_name": "dictionaryRepresentation", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "jsDateFormatter", - "printedName": "jsDateFormatter", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cpy)jsDateFormatter", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvpZ", - "moduleName": "Capacitor", - "static": true, - "objc_name": "jsDateFormatter", - "declAttributes": [ - "HasInitialValue", - "Final", - "ObjC", - "HasStorage", - "AccessControl" - ], - "isFromExtension": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cm)jsDateFormatter", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "objc_name": "jsDateFormatter", - "declAttributes": [ - "Final", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ISO8601DateFormatter", - "printedName": "Foundation.ISO8601DateFormatter", - "usr": "c:objc(cs)NSISO8601DateFormatter" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(cm)setJsDateFormatter:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ", - "moduleName": "Capacitor", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Function", - "name": "hasOption", - "printedName": "hasOption(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)hasOption:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "success", - "printedName": "success()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)success", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7successyyF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "success", - "printedName": "success(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)success:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7successyySDySSypGF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resolve", - "printedName": "resolve()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)resolve", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7resolveyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "resolve", - "printedName": "resolve(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)resolve:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE7resolveyySDySSypGF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "error", - "printedName": "error(_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)error:::", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "Available", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "reject", - "printedName": "reject(_:_:_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Error?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "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" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)reject::::", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unimplemented", - "printedName": "unimplemented()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unimplemented", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE13unimplementedyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unimplemented", - "printedName": "unimplemented(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unimplemented:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE13unimplementedyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unavailable", - "printedName": "unavailable()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unavailable", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE11unavailableyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unavailable", - "printedName": "unavailable(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPPluginCall(im)unavailable:", - "mangledName": "$sSo13CAPPluginCallC9CapacitorE11unavailableyySSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPPluginCall", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPPluginCall", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "Conformance", - "name": "JSValueContainer", - "printedName": "JSValueContainer", - "usr": "s:9Capacitor16JSValueContainerP", - "mangledName": "$s9Capacitor16JSValueContainerP" - }, - { - "kind": "Conformance", - "name": "JSStringContainer", - "printedName": "JSStringContainer", - "usr": "s:9Capacitor17JSStringContainerP", - "mangledName": "$s9Capacitor17JSStringContainerP" - }, - { - "kind": "Conformance", - "name": "JSBoolContainer", - "printedName": "JSBoolContainer", - "usr": "s:9Capacitor15JSBoolContainerP", - "mangledName": "$s9Capacitor15JSBoolContainerP" - }, - { - "kind": "Conformance", - "name": "JSIntContainer", - "printedName": "JSIntContainer", - "usr": "s:9Capacitor14JSIntContainerP", - "mangledName": "$s9Capacitor14JSIntContainerP" - }, - { - "kind": "Conformance", - "name": "JSFloatContainer", - "printedName": "JSFloatContainer", - "usr": "s:9Capacitor16JSFloatContainerP", - "mangledName": "$s9Capacitor16JSFloatContainerP" - }, - { - "kind": "Conformance", - "name": "JSDoubleContainer", - "printedName": "JSDoubleContainer", - "usr": "s:9Capacitor17JSDoubleContainerP", - "mangledName": "$s9Capacitor17JSDoubleContainerP" - }, - { - "kind": "Conformance", - "name": "JSDateContainer", - "printedName": "JSDateContainer", - "usr": "s:9Capacitor15JSDateContainerP", - "mangledName": "$s9Capacitor15JSDateContainerP" - }, - { - "kind": "Conformance", - "name": "JSArrayContainer", - "printedName": "JSArrayContainer", - "usr": "s:9Capacitor16JSArrayContainerP", - "mangledName": "$s9Capacitor16JSArrayContainerP" - }, - { - "kind": "Conformance", - "name": "JSObjectContainer", - "printedName": "JSObjectContainer", - "usr": "s:9Capacitor17JSObjectContainerP", - "mangledName": "$s9Capacitor17JSObjectContainerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "InstanceConfiguration", - "printedName": "InstanceConfiguration", - "children": [ - { - "kind": "Var", - "name": "appStartFileURL", - "printedName": "appStartFileURL", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)appStartFileURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15appStartFileURL10Foundation0G0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)appStartFileURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15appStartFileURL10Foundation0G0Vvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "appStartServerURL", - "printedName": "appStartServerURL", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)appStartServerURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE17appStartServerURL10Foundation0G0Vvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)appStartServerURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE17appStartServerURL10Foundation0G0Vvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "errorPathURL", - "printedName": "errorPathURL", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(py)errorPathURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)errorPathURL", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "getPluginConfigValue", - "printedName": "getPluginConfigValue(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getPluginConfigValue::", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getPluginConfig", - "printedName": "getPluginConfig(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "PluginConfig", - "printedName": "Capacitor.PluginConfig", - "usr": "c:@M@Capacitor@objc(cs)PluginConfig" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getPluginConfig:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "shouldAllowNavigation", - "printedName": "shouldAllowNavigation(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)shouldAllowNavigationTo:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tF", - "moduleName": "Capacitor", - "objc_name": "shouldAllowNavigationTo:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getValue", - "printedName": "getValue(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getValue:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getString", - "printedName": "getString(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceConfiguration(im)getString:", - "mangledName": "$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSF", - "moduleName": "Capacitor", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPInstanceConfiguration", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPInstanceConfiguration", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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": "TypeDecl", - "name": "InstanceDescriptor", - "printedName": "InstanceDescriptor", - "children": [ - { - "kind": "Var", - "name": "cordovaDeployDisabled", - "printedName": "cordovaDeployDisabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(py)cordovaDeployDisabled", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvp", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(im)cordovaDeployDisabled", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvg", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "normalize", - "printedName": "normalize()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@Capacitor@@objc(cs)CAPInstanceDescriptor(im)normalize", - "mangledName": "$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyF", - "moduleName": "Capacitor", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:objc(cs)CAPInstanceDescriptor", - "moduleName": "Capacitor", - "isOpen": true, - "objc_name": "CAPInstanceDescriptor", - "declAttributes": [ - "ObjC", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": 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" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 362, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 396, - "length": 26, - "value": "\"Invalid URL \/ Server URL\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 18, - "value": "\"Must provide key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 675, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 710, - "length": 20, - "value": "\"Must provide value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 802, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 836, - "length": 16, - "value": "\"Invalid domain\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 894, - "length": 9, - "value": "\"expires\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 905, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 943, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 951, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1165, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1198, - "length": 18, - "value": "\"Must provide key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1287, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1321, - "length": 26, - "value": "\"Invalid URL \/ Server URL\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookies.swift", - "kind": "StringLiteral", - "offset": 1540, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Router.swift", - "kind": "StringLiteral", - "offset": 358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Router.swift", - "kind": "StringLiteral", - "offset": 623, - "length": 13, - "value": "\"\/index.html\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Dictionary", - "offset": 400, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 582, - "length": 34, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 590, - "length": 1, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 601, - "length": 1, - "value": "\",\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 609, - "length": 1, - "value": "\";q=0.5\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 662, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 683, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 691, - "length": 1, - "value": "\";q=0.5\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 750, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 791, - "length": 17, - "value": "\"Accept-Language\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 1329, - "length": 97, - "value": "\"[ data ] argument for request of content-type [ application\/json ] must be serializable to JSON\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "BooleanLiteral", - "offset": 1616, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Array", - "offset": 1675, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 1854, - "length": 111, - "value": "\"[ data ] argument for request with content-type [ multipart\/form-data ] may only be a plain javascript object\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2095, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2110, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2113, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 125, - "value": "\"[ data ] argument for request with content-type [ application\/x-www-form-urlencoded ] may only be a plain javascript object\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2849, - "length": 43, - "value": "\"multipart\/form-data; boundary=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2891, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2951, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 2983, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3078, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3096, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3147, - "length": 57, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3193, - "length": 1, - "value": "\"\"\r\n\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3307, - "length": 25, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3325, - "length": 2, - "value": "\"--\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 3571, - "length": 49, - "value": "\"[ data ] argument could not be parsed as string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "Dictionary", - "offset": 3761, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4207, - "length": 36, - "value": "\"Data must be an array for FormData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4406, - "length": 43, - "value": "\"multipart\/form-data; boundary=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4448, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4508, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4540, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4728, - "length": 36, - "value": "\"Data must be an array for FormData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4809, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4844, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4914, - "length": 12, - "value": "\"base64File\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 4965, - "length": 10, - "value": "\"fileName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5020, - "length": 13, - "value": "\"contentType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5064, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5082, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5137, - "length": 81, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5184, - "length": 1, - "value": "\"\"; filename=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5211, - "length": 1, - "value": "\"\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5268, - "length": 39, - "value": "\"Content-Type: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5302, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5357, - "length": 39, - "value": "\"Content-Transfer-Encoding: binary\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5446, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5561, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5619, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5658, - "length": 23, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5676, - "length": 1, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5731, - "length": 54, - "value": "\"Content-Disposition: form-data; name=\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5778, - "length": 1, - "value": "\"\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5835, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 5946, - "length": 6, - "value": "\"\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6020, - "length": 25, - "value": "\"\r\n--\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6038, - "length": 2, - "value": "\"--\r\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6234, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6367, - "length": 49, - "value": "\"[ data ] argument could not be parsed as string\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6513, - "length": 10, - "value": "\"formData\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6805, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 6916, - "length": 35, - "value": "\"application\/x-www-form-urlencoded\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7054, - "length": 21, - "value": "\"multipart\/form-data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7221, - "length": 75, - "value": "\"[ data ] argument could not be parsed for content type [ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7293, - "length": 1, - "value": "\" ]\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7861, - "length": 11, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7871, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7931, - "length": 11, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 7941, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8092, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8350, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 8913, - "length": 18, - "value": "\"disableRedirects\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "BooleanLiteral", - "offset": 8936, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorUrlRequest.swift", - "kind": "StringLiteral", - "offset": 30, - "length": 19, - "value": "\"Capacitor.CapacitorUrlRequest\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 331, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "Array", - "offset": 511, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 623, - "length": 17, - "value": "\"CFBundleVersion\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 714, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 23, - "value": "\"lastBinaryVersionCode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 931, - "length": 23, - "value": "\"lastBinaryVersionName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1025, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1077, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1117, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 1147, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 2849, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 16, - "value": "\"serverBasePath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3537, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3693, - "length": 9, - "value": "\"NoCloud\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 3752, - "length": 23, - "value": "\"ionic_built_snapshots\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 3874, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4771, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 4838, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "Array", - "offset": 4915, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5320, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5351, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5671, - "length": 8, - "value": "\"mobile\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 5791, - "length": 9, - "value": "\"desktop\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7013, - "length": 49, - "value": "\"⚡️ Loading app at \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7058, - "length": 3, - "value": "\"...\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7353, - "length": 19, - "value": "\"UIStatusBarHidden\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 7468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7548, - "length": 18, - "value": "\"UIStatusBarStyle\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7618, - "length": 29, - "value": "\"UIStatusBarStyleDarkContent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 7749, - "length": 25, - "value": "\"UIStatusBarStyleDefault\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8021, - "length": 34, - "value": "\"UISupportedInterfaceOrientations\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8160, - "length": 32, - "value": "\"UIInterfaceOrientationPortrait\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8355, - "length": 42, - "value": "\"UIInterfaceOrientationPortraitUpsideDown\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8570, - "length": 37, - "value": "\"UIInterfaceOrientationLandscapeLeft\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 8775, - "length": 38, - "value": "\"UIInterfaceOrientationLandscapeRight\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 9017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "FloatLiteral", - "offset": 9639, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "FloatLiteral", - "offset": 9881, - "length": 3, - "value": "0.2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10214, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10332, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10515, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10704, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 10888, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 11196, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 12330, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "BooleanLiteral", - "offset": 13231, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13706, - "length": 17, - "value": "\"CFBundleVersion\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13797, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 13955, - "length": 23, - "value": "\"lastBinaryVersionCode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14019, - "length": 23, - "value": "\"lastBinaryVersionName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14062, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14074, - "length": 16, - "value": "\"serverBasePath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14277, - "length": 103, - "value": "\"⚡️ ERROR: Unable to find application directory at: \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14376, - "length": 1, - "value": "\"\"!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14528, - "length": 81, - "value": "\"Unable to find capacitor.config.json, make sure it exists and run npx cap copy.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14714, - "length": 67, - "value": "\"Unable to parse capacitor.config.json. Make sure it's valid JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 14893, - "length": 70, - "value": "\"Unable to find config.xml, make sure it exists and run npx cap copy.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15075, - "length": 55, - "value": "\"Unable to parse config.xml. Make sure it's valid XML.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15266, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15291, - "length": 48, - "value": "\"⚡️ ERROR: Unable to load \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15338, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15362, - "length": 69, - "value": "\"⚡️ This file is the root of your web app and must exist before\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15454, - "length": 70, - "value": "\"⚡️ Capacitor can run. Ensure you've run capacitor copy at least\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "StringLiteral", - "offset": 15547, - "length": 79, - "value": "\"⚡️ or, if embedding, that this directory exists as a resource directory.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeViewController.swift", - "kind": "IntegerLiteral", - "offset": 15718, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3862, - "length": 9, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 3890, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 4, - "value": "\"OK\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 4873, - "length": 17, - "value": "\"CapacitorBridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "IntegerLiteral", - "offset": 5002, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5082, - "length": 6, - "value": "\"info\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5250, - "length": 52, - "value": "\"Unable to export JavaScript bridge code to webview\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPBridgeProtocol.swift", - "kind": "StringLiteral", - "offset": 5313, - "length": 39, - "value": "\"Capacitor bridge initialization error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "IntegerLiteral", - "offset": 720, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 1342, - "length": 4, - "value": "\"WK\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 1371, - "length": 13, - "value": "\"ContentView\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WKWebView+Capacitor.swift", - "kind": "StringLiteral", - "offset": 2739, - "length": 86, - "value": "\"_elementDidFocus:userIsInteracting:blurPreviousNode:activityStateChanges:userObject:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Data+Capacitor.swift", - "kind": "StringLiteral", - "offset": 697, - "length": 7, - "value": "\"data:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Data+Capacitor.swift", - "kind": "StringLiteral", - "offset": 741, - "length": 9, - "value": "\"base64,\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 658, - "length": 8, - "value": "\"bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 1564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 3391, - "length": 21, - "value": "\"shouldOverrideLoad:\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 3638, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 3777, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 4372, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 4927, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 5530, - "length": 24, - "value": "\"⚡️ WebView loaded\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6121, - "length": 32, - "value": "\"⚡️ WebView failed to load\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6176, - "length": 17, - "value": "\"⚡️ Error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6642, - "length": 47, - "value": "\"⚡️ WebView failed provisional navigation\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 6712, - "length": 17, - "value": "\"⚡️ Error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7220, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7242, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7269, - "length": 10, - "value": "\"js.error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7318, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7433, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7481, - "length": 10, - "value": "\"pluginId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7507, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7544, - "length": 12, - "value": "\"methodName\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7572, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7613, - "length": 12, - "value": "\"callbackId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7680, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 7712, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7748, - "length": 9, - "value": "\"Console\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 7793, - "length": 23, - "value": "\"⚡️ To Native -> \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8025, - "length": 9, - "value": "\"cordova\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8073, - "length": 9, - "value": "\"service\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8098, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8135, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8159, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8200, - "length": 12, - "value": "\"callbackId\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8264, - "length": 12, - "value": "\"actionArgs\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Array", - "offset": 8291, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8325, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 8372, - "length": 23, - "value": "\"To Native Cordova -> \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 9248, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 9392, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 9859, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 9934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10009, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10080, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10157, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 10554, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10744, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 22, - "value": "\"CapacitorCookies.get\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11032, - "length": 22, - "value": "\"CapacitorCookies.set\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11158, - "length": 8, - "value": "\"action\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11224, - "length": 8, - "value": "\"domain\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11376, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11552, - "length": 28, - "value": "\"CapacitorCookies.isEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11657, - "length": 18, - "value": "\"CapacitorCookies\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11750, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 11761, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11887, - "length": 15, - "value": "\"CapacitorHttp\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 11979, - "length": 15, - "value": "\"CapacitorHttp\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12069, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 12080, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12653, - "length": 8, - "value": "\"Cancel\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 12801, - "length": 4, - "value": "\"Ok\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 13103, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "Dictionary", - "offset": 13432, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "BooleanLiteral", - "offset": 13729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13848, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13862, - "length": 12, - "value": "\"No message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13899, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13920, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13948, - "length": 6, - "value": "\"line\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13959, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13986, - "length": 5, - "value": "\"col\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 13996, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14022, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14070, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14243, - "length": 44, - "value": "\"\n⚡️ ------ STARTUP JS ERROR ------\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14310, - "length": 20, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14329, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14353, - "length": 21, - "value": "\"⚡️ URL: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14397, - "length": 36, - "value": "\"⚡️ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14425, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14432, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 14456, - "length": 65, - "value": "\"\n⚡️ See above for help with debugging blank-screen issues\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewDelegationHandler.swift", - "kind": "StringLiteral", - "offset": 188, - "length": 24, - "value": "\"Capacitor.WebViewDelegationHandler\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 5731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 5977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "BooleanLiteral", - "offset": 6199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSTypes.swift", - "kind": "Dictionary", - "offset": 7523, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 815, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 1172, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 1593, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2628, - "length": 27, - "value": "\"tmpViewControllerAppeared\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2696, - "length": 26, - "value": "\"https:\/\/capacitorjs.com\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2767, - "length": 19, - "value": "\"\/_capacitor_file_\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 2825, - "length": 11, - "value": "\"capacitor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 3639, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 3789, - "length": 8, - "value": "\"bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Array", - "offset": 3877, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 4997, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5437, - "length": 36, - "value": "\"⚡️ ❌ Capacitor: FATAL ERROR\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5496, - "length": 25, - "value": "\"⚡️ ❌ Error was: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5663, - "length": 84, - "value": "\"⚡️ ❌ Unable to export required Bridge JavaScript. Bridge will not function.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5774, - "length": 101, - "value": "\"⚡️ ❌ You should run \"npx capacitor copy\" to ensure the Bridge JS is added to your project.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 5959, - "length": 13, - "value": "\"⚡️ ❌ \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 6044, - "length": 27, - "value": "\"⚡️ ❌ Unknown error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 6105, - "length": 62, - "value": "\"⚡️ ❌ Please verify your installation or file an issue\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 6457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 8832, - "length": 8, - "value": "\"resume\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 9098, - "length": 7, - "value": "\"pause\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 9823, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 10124, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 10326, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11136, - "length": 233, - "value": "\"\n⚡️ ❌ Cannot register class \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11200, - "length": 1, - "value": "\": CAPInstancePlugin through registerPluginType(_:).\n⚡️ ❌ Use `registerPluginInstance(_:)` to register subclasses of CAPInstancePlugin.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11680, - "length": 184, - "value": "\"\n⚡️ Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11743, - "length": 4, - "value": "\" must conform to CAPBridgedPlugin.\n⚡️ Not loading plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11848, - "length": 9369, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 11972, - "length": 79, - "value": "\"⚡️ Overriding existing registered plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12050, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12687, - "length": 78, - "value": "\"⚡️ Unable to load plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 12741, - "length": 1, - "value": "\". No such module found.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 14236, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14750, - "length": 44, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14782, - "length": 4, - "value": "\"docs\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 14793, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15015, - "length": 83, - "value": "\"⚡️ Warning: isWebDebuggable only functions as intended on iOS 16.4 and above.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15840, - "length": 92, - "value": "\"⚡️ Error loading plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 15886, - "length": 3, - "value": "\" for call. Check that the pluginId is correct\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16021, - "length": 13, - "value": "\"addListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16053, - "length": 16, - "value": "\"removeListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16130, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16256, - "length": 90, - "value": "\"⚡️ Error calling method \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16300, - "length": 2, - "value": "\" on plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16327, - "length": 1, - "value": "\": No method found.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16377, - "length": 93, - "value": "\"⚡️ Ensure plugin method exists and uses @objc in its declaration, and has been defined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16731, - "length": 124, - "value": "\"⚡️ Error: Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16771, - "length": 4, - "value": "\" does not respond to method call \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16820, - "length": 1, - "value": "\"\" using selector \"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16851, - "length": 1, - "value": "\"\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 16882, - "length": 138, - "value": "\"⚡️ Ensure plugin method exists, uses @objc in its declaration, and arguments match selector without callbacks in CAP_PLUGIN_METHOD.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 17047, - "length": 75, - "value": "\"⚡️ Learn more: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 17121, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 17705, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 18042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 18210, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 18248, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 18827, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 18934, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Dictionary", - "offset": 19144, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20040, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20055, - "length": 1, - "value": "\":\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20136, - "length": 86, - "value": "\"Error: Plugin \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20176, - "length": 4, - "value": "\" does not respond to method call \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20220, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20253, - "length": 63, - "value": "\"Ensure plugin method exists and uses @objc in its declaration\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20404, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "Array", - "offset": 20428, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 20834, - "length": 41, - "value": "\"Error: Cordova Plugin mapping not found\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21105, - "length": 15, - "value": "\"⚡️ TO JS\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "IntegerLiteral", - "offset": 21140, - "length": 3, - "value": "256" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21227, - "length": 310, - "value": "\" window.Capacitor.fromNative({\n callbackId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21320, - "length": 2, - "value": "\"',\n pluginId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21365, - "length": 2, - "value": "\"',\n methodName: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21414, - "length": 2, - "value": "\"',\n save: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21443, - "length": 1, - "value": "\",\n success: true,\n data: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21505, - "length": 1, - "value": "\"\n })\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21876, - "length": 180, - "value": "\"window.Capacitor.fromNative({ callbackId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21939, - "length": 14, - "value": "\"', pluginId: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 21970, - "length": 16, - "value": "\"', methodName: '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22005, - "length": 68, - "value": "\"', success: false, error: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22053, - "length": 1, - "value": "\"})\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 237, - "value": "\"window.Capacitor.withPlugin('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22591, - "length": 21, - "value": "\"', function(plugin) {\nif(!plugin) { console.error('Unable to execute JS in plugin, no such plugin found for id \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22727, - "length": 5, - "value": "\"'); }\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22746, - "length": 1, - "value": "\"\n});\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 22975, - "length": 23, - "value": "\"⚡️ JS Eval error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23488, - "length": 23, - "value": "\"⚡️ JS Eval error\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23687, - "length": 60, - "value": "\"window.Capacitor.triggerEvent('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23731, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23744, - "length": 4, - "value": "\"')\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23866, - "length": 69, - "value": "\"window.Capacitor.triggerEvent('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23910, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23923, - "length": 13, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 23933, - "length": 1, - "value": "\")\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24066, - "length": 8, - "value": "\"window\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24219, - "length": 8, - "value": "\"window\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24372, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24529, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24621, - "length": 5, - "value": "\"log\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24715, - "length": 50, - "value": "\"window.Capacitor.logJs('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24750, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 24762, - "length": 25, - "value": "\"')\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 25593, - "length": 5, - "value": "\"res\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 25688, - "length": 6, - "value": "\"file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "BooleanLiteral", - "offset": 26605, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CapacitorBridge.swift", - "kind": "StringLiteral", - "offset": 531, - "length": 15, - "value": "\"Capacitor.CapacitorBridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 904, - "length": 9, - "value": "\"http:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 938, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1257, - "length": 21, - "value": "\"http:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1277, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 1826, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2207, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2221, - "length": 64, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2228, - "length": 1, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2237, - "length": 1, - "value": "\"; expires=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2263, - "length": 1, - "value": "\"; path=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2280, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "Dictionary", - "offset": 2613, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3092, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3161, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3266, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3277, - "length": 1, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3289, - "length": 23, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorCookieManager.swift", - "kind": "StringLiteral", - "offset": 3311, - "length": 4, - "value": "\"; \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPFile.swift", - "kind": "StringLiteral", - "offset": 449, - "length": 9, - "value": "\"file:\/\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPFile.swift", - "kind": "StringLiteral", - "offset": 466, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 298, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 365, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 404, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 442, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 481, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 605, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 611, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 654, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 659, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 699, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 742, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 748, - "length": 4, - "value": "0xFF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "StringLiteral", - "offset": 942, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "StringLiteral", - "offset": 965, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1036, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1069, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1101, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1134, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1251, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1289, - "length": 8, - "value": "0xFF0000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1302, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1308, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1350, - "length": 8, - "value": "0x00FF00" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1363, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1368, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1408, - "length": 8, - "value": "0x0000FF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1420, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1464, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1502, - "length": 11, - "value": "0xFF000000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1518, - "length": 2, - "value": "24" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1524, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1566, - "length": 10, - "value": "0x00FF0000" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1581, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1587, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1628, - "length": 10, - "value": "0x0000FF00" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1643, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1648, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "IntegerLiteral", - "offset": 1689, - "length": 10, - "value": "0x000000FF" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/UIColor.swift", - "kind": "FloatLiteral", - "offset": 1703, - "length": 5, - "value": "255.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "Array", - "offset": 792, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 19, - "value": "\"Capacitor.CAPPluginCallResult\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 3201, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginCallResult.swift", - "kind": "StringLiteral", - "offset": 2510, - "length": 18, - "value": "\"Capacitor.CAPPluginCallError\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 402, - "length": 30, - "value": "\"CapacitorOpenURLNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 513, - "length": 40, - "value": "\"CapacitorOpenUniversalLinkNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 633, - "length": 39, - "value": "\"CapacitorContinueActivityNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 777, - "length": 56, - "value": "\"CapacitorDidRegisterForRemoteNotificationsNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 944, - "length": 62, - "value": "\"CapacitorDidFailToRegisterForRemoteNotificationsNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 1109, - "length": 54, - "value": "\"CapacitorDecidePolicyForNavigationActionNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "StringLiteral", - "offset": 1242, - "length": 38, - "value": "\"CapacitorStatusBarTappedNotification\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2366, - "length": 17, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2480, - "length": 16, - "value": "2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2622, - "length": 48, - "value": "3" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2802, - "length": 48, - "value": "4" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2974, - "length": 31, - "value": "5" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2366, - "length": 17, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2480, - "length": 16, - "value": "2" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2622, - "length": 48, - "value": "3" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2802, - "length": 48, - "value": "4" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPNotifications.swift", - "kind": "IntegerLiteral", - "offset": 2974, - "length": 31, - "value": "5" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 11, - "value": "\"undefined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 4, - "value": "\"{}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 11, - "value": "\"undefined\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1128, - "length": 4, - "value": "\"{}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1705, - "length": 109, - "value": "\"[Capacitor Plugin Error] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1749, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1766, - "length": 1, - "value": "\" - Unable to serialize plugin response as JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1845, - "length": 90, - "value": "\"Ensure that all data passed to success callback from module method is JSON serializable!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 76, - "value": "\"Unable to serialize plugin response as JSON: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2055, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2581, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2623, - "length": 14, - "value": "\"errorMessage\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2691, - "length": 6, - "value": "\"code\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 2854, - "length": 17, - "value": "\"ERROR MESSAGE: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "IntegerLiteral", - "offset": 2888, - "length": 3, - "value": "512" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3032, - "length": 109, - "value": "\"[Capacitor Plugin Error] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3076, - "length": 1, - "value": "\" - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3093, - "length": 1, - "value": "\" - Unable to serialize plugin response as JSON.\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3172, - "length": 90, - "value": "\"Ensure that all data passed to success callback from module method is JSON serializable!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3307, - "length": 76, - "value": "\"Unable to serialize plugin response as JSON: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3382, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "StringLiteral", - "offset": 3679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JS.swift", - "kind": "Dictionary", - "offset": 3770, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 714, - "length": 99, - "value": "\"Push notification handler overriding previous instance: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 812, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 1035, - "length": 100, - "value": "\"Local notification handler overriding previous instance: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "BooleanLiteral", - "offset": 1617, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "Array", - "offset": 1900, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/NotificationRouter.swift", - "kind": "BooleanLiteral", - "offset": 2270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 419, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "BooleanLiteral", - "offset": 998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1171, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1288, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1489, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 1696, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2079, - "length": 17, - "value": "\"not implemented\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2213, - "length": 15, - "value": "\"UNIMPLEMENTED\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 2248, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2306, - "length": 15, - "value": "\"not available\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 13, - "value": "\"UNAVAILABLE\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPluginCall.swift", - "kind": "Dictionary", - "offset": 2469, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 162, - "length": 13, - "value": "\"arraybuffer\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 6, - "value": "\"blob\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 219, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 6, - "value": "\"json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 162, - "length": 13, - "value": "\"arraybuffer\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 192, - "length": 6, - "value": "\"blob\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 219, - "length": 10, - "value": "\"document\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 246, - "length": 6, - "value": "\"json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 269, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 2109, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "BooleanLiteral", - "offset": 2238, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Array", - "offset": 2328, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Array", - "offset": 2402, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3435, - "length": 12, - "value": "\"Set-Cookie\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3520, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3610, - "length": 9, - "value": "\"domain=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3665, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3772, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3799, - "length": 3, - "value": "\";\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "IntegerLiteral", - "offset": 3804, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 3947, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 4230, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4267, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4314, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4367, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4462, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4472, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4564, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4594, - "length": 21, - "value": "\"application\/default\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4663, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4729, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 4851, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5006, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5257, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5347, - "length": 8, - "value": "\"method\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5357, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5403, - "length": 9, - "value": "\"headers\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 5417, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5476, - "length": 8, - "value": "\"params\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "Dictionary", - "offset": 5489, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5553, - "length": 14, - "value": "\"responseType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 6, - "value": "\"text\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5623, - "length": 16, - "value": "\"connectTimeout\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5682, - "length": 13, - "value": "\"readTimeout\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5735, - "length": 10, - "value": "\"dataType\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 5750, - "length": 5, - "value": "\"any\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "FloatLiteral", - "offset": 6411, - "length": 8, - "value": "600000.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "FloatLiteral", - "offset": 6423, - "length": 6, - "value": "1000.0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/HttpRequestHandler.swift", - "kind": "StringLiteral", - "offset": 6502, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 78, - "length": 31, - "value": "\"plugins\/ios\/#defining-methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW73\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 357, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW17\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW24\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 78, - "length": 31, - "value": "\"plugins\/ios\/#defining-methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW73\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 357, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW17\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/DocLinks.swift", - "kind": "StringLiteral", - "offset": 553, - "length": 159, - "value": "\"https:\/\/developer.apple.com\/library\/content\/documentation\/General\/Reference\/InfoPlistKeyReference\/Articles\/CocoaKeys.html#\/\/apple_ref\/doc\/uid\/TP40009251-SW24\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 391, - "length": 10, - "value": "\"_options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 437, - "length": 11, - "value": "\"_callback\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 621, - "length": 136, - "value": "\"window.Capacitor = { DEBUG: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 660, - "length": 1, - "value": "\", isLoggingEnabled: \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 697, - "length": 1, - "value": "\", Plugins: {} }; window.WEBVIEW_SERVER_URL = '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 754, - "length": 3, - "value": "\"';\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 861, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 15, - "value": "\"native-bridge\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1150, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1188, - "length": 89, - "value": "\"ERROR: Required native-bridge.js file in Capacitor not found. Bridge will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 110, - "value": "\"ERROR: Unable to read required native-bridge.js file from the Capacitor framework. Bridge will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1837, - "length": 16, - "value": "\"public\/cordova\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1870, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 1908, - "length": 79, - "value": "\"ERROR: Required cordova.js file not found. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2126, - "length": 24, - "value": "\"public\/cordova_plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2167, - "length": 4, - "value": "\"js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2205, - "length": 88, - "value": "\"ERROR: Required cordova_plugins.js file not found. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 2626, - "length": 82, - "value": "\"ERROR: Unable to read required cordova files. Cordova plugins will not function!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3022, - "length": 425, - "value": "\"(function(w) {\nvar a = (w.Capacitor = w.Capacitor || {});\nvar p = (a.Plugins = a.Plugins || {});\nvar t = (p['\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3231, - "length": 9, - "value": "\"'] = {});\nt.addListener = function(eventName, callback) {\nreturn w.Capacitor.addListener('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3377, - "length": 24, - "value": "\"', eventName, callback);\n}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3616, - "length": 43, - "value": "\"})(window);\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 3830, - "length": 243, - "value": "\"(function(w) {\nvar a = (w.Capacitor = w.Capacitor || {});\nvar h = (a.PluginHeaders = a.PluginHeaders || []);\nh.push(\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4023, - "length": 1, - "value": "\");\n})(window);\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4126, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 4233, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4454, - "length": 13, - "value": "\"addListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4519, - "length": 16, - "value": "\"removeListener\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4587, - "length": 20, - "value": "\"removeAllListeners\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4616, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4665, - "length": 18, - "value": "\"checkPermissions\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4692, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4741, - "length": 20, - "value": "\"requestPermissions\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 9, - "value": "\"promise\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 5110, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 5977, - "length": 4, - "value": "\", \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6207, - "length": 51, - "value": "\"t['\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6226, - "length": 33, - "value": "\"'] = function(\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6254, - "length": 1, - "value": "\") {\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6406, - "length": 141, - "value": "\"return w.Capacitor.nativeCallback('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6483, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6500, - "length": 23, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6521, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6666, - "length": 140, - "value": "\"return w.Capacitor.nativePromise('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6742, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6759, - "length": 23, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6780, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 6926, - "length": 163, - "value": "\"return w.Capacitor.nativeCallback('\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7003, - "length": 4, - "value": "\"', '\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7020, - "length": 45, - "value": "\"', \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7041, - "length": 1, - "value": "\", \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7063, - "length": 1, - "value": "\");\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7133, - "length": 66, - "value": "\"Error: plugin method return type \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7180, - "length": 2, - "value": "\" is not supported!\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7263, - "length": 3, - "value": "\"}\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7307, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 7478, - "length": 16, - "value": "\"public\/plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "Array", - "offset": 7920, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 8316, - "length": 31, - "value": "\"Error while enumerating files\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "BooleanLiteral", - "offset": 8656, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/JSExport.swift", - "kind": "StringLiteral", - "offset": 8765, - "length": 26, - "value": "\"Unable to inject js file\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 150, - "length": 6, - "value": "\"%02x\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "IntegerLiteral", - "offset": 265, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 547, - "length": 18, - "value": "\"CapacitorAppUUID\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/AppUUID.swift", - "kind": "StringLiteral", - "offset": 1221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1278, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1530, - "length": 29, - "value": "\"Access-Control-Allow-Origin\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1618, - "length": 30, - "value": "\"Access-Control-Allow-Methods\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1652, - "length": 14, - "value": "\"GET, OPTIONS\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 1763, - "length": 7, - "value": "\"Range\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2071, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2116, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2143, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2196, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2203, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2247, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2288, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2338, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2584, - "length": 15, - "value": "\"Accept-Ranges\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2603, - "length": 7, - "value": "\"bytes\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2635, - "length": 15, - "value": "\"Content-Range\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2654, - "length": 44, - "value": "\"bytes \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2673, - "length": 1, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2684, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2697, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 2723, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 2836, - "length": 3, - "value": "206" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 3036, - "length": 12, - "value": "\"cordova.js\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "IntegerLiteral", - "offset": 3579, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4180, - "length": 13, - "value": "\"scheme stop\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4833, - "length": 26, - "value": "\"application\/octet-stream\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 4885, - "length": 11, - "value": "\"text\/html\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "Array", - "offset": 4993, - "length": 109, - "value": "[\"m4v\", \"mov\", \"mp4\", \"aac\", \"ac3\", \"aiff\", \"au\", \"flac\", \"m4a\", \"mp3\", \"wav\"]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "BooleanLiteral", - "offset": 5188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "BooleanLiteral", - "offset": 5218, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "Dictionary", - "offset": 5251, - "length": 14028, - "value": "[(\"aaf\", \"application\/octet-stream\"), (\"aca\", \"application\/octet-stream\"), (\"accdb\", \"application\/msaccess\"), (\"accde\", \"application\/msaccess\"), (\"accdt\", \"application\/msaccess\"), (\"acx\", \"application\/internet-property-stream\"), (\"afm\", \"application\/octet-stream\"), (\"ai\", \"application\/postscript\"), (\"aif\", \"audio\/x-aiff\"), (\"aifc\", \"audio\/aiff\"), (\"aiff\", \"audio\/aiff\"), (\"application\", \"application\/x-ms-application\"), (\"art\", \"image\/x-jg\"), (\"asd\", \"application\/octet-stream\"), (\"asf\", \"video\/x-ms-asf\"), (\"asi\", \"application\/octet-stream\"), (\"asm\", \"text\/plain\"), (\"asr\", \"video\/x-ms-asf\"), (\"asx\", \"video\/x-ms-asf\"), (\"atom\", \"application\/atom+xml\"), (\"au\", \"audio\/basic\"), (\"avi\", \"video\/x-msvideo\"), (\"axs\", \"application\/olescript\"), (\"bas\", \"text\/plain\"), (\"bcpio\", \"application\/x-bcpio\"), (\"bin\", \"application\/octet-stream\"), (\"bmp\", \"image\/bmp\"), (\"c\", \"text\/plain\"), (\"cab\", \"application\/octet-stream\"), (\"calx\", \"application\/vnd.ms-office.calx\"), (\"cat\", \"application\/vnd.ms-pki.seccat\"), (\"cdf\", \"application\/x-cdf\"), (\"chm\", \"application\/octet-stream\"), (\"class\", \"application\/x-java-applet\"), (\"clp\", \"application\/x-msclip\"), (\"cmx\", \"image\/x-cmx\"), (\"cnf\", \"text\/plain\"), (\"cod\", \"image\/cis-cod\"), (\"cpio\", \"application\/x-cpio\"), (\"cpp\", \"text\/plain\"), (\"crd\", \"application\/x-mscardfile\"), (\"crl\", \"application\/pkix-crl\"), (\"crt\", \"application\/x-x509-ca-cert\"), (\"csh\", \"application\/x-csh\"), (\"css\", \"text\/css\"), (\"csv\", \"application\/octet-stream\"), (\"cur\", \"application\/octet-stream\"), (\"dcr\", \"application\/x-director\"), (\"deploy\", \"application\/octet-stream\"), (\"der\", \"application\/x-x509-ca-cert\"), (\"dib\", \"image\/bmp\"), (\"dir\", \"application\/x-director\"), (\"disco\", \"text\/xml\"), (\"dll\", \"application\/x-msdownload\"), (\"dll.config\", \"text\/xml\"), (\"dlm\", \"text\/dlm\"), (\"doc\", \"application\/msword\"), (\"docm\", \"application\/vnd.ms-word.document.macroEnabled.12\"), (\"docx\", \"application\/vnd.openxmlformats-officedocument.wordprocessingml.document\"), (\"dot\", \"application\/msword\"), (\"dotm\", \"application\/vnd.ms-word.template.macroEnabled.12\"), (\"dotx\", \"application\/vnd.openxmlformats-officedocument.wordprocessingml.template\"), (\"dsp\", \"application\/octet-stream\"), (\"dtd\", \"text\/xml\"), (\"dvi\", \"application\/x-dvi\"), (\"dwf\", \"drawing\/x-dwf\"), (\"dwp\", \"application\/octet-stream\"), (\"dxr\", \"application\/x-director\"), (\"eml\", \"message\/rfc822\"), (\"emz\", \"application\/octet-stream\"), (\"eot\", \"application\/octet-stream\"), (\"eps\", \"application\/postscript\"), (\"etx\", \"text\/x-setext\"), (\"evy\", \"application\/envoy\"), (\"exe\", \"application\/octet-stream\"), (\"exe.config\", \"text\/xml\"), (\"fdf\", \"application\/vnd.fdf\"), (\"fif\", \"application\/fractals\"), (\"fla\", \"application\/octet-stream\"), (\"flr\", \"x-world\/x-vrml\"), (\"flv\", \"video\/x-flv\"), (\"gif\", \"image\/gif\"), (\"gtar\", \"application\/x-gtar\"), (\"gz\", \"application\/x-gzip\"), (\"h\", \"text\/plain\"), (\"hdf\", \"application\/x-hdf\"), (\"hdml\", \"text\/x-hdml\"), (\"hhc\", \"application\/x-oleobject\"), (\"hhk\", \"application\/octet-stream\"), (\"hhp\", \"application\/octet-stream\"), (\"hlp\", \"application\/winhlp\"), (\"hqx\", \"application\/mac-binhex40\"), (\"hta\", \"application\/hta\"), (\"htc\", \"text\/x-component\"), (\"htm\", \"text\/html\"), (\"html\", \"text\/html\"), (\"htt\", \"text\/webviewhtml\"), (\"hxt\", \"text\/html\"), (\"ico\", \"image\/x-icon\"), (\"ics\", \"application\/octet-stream\"), (\"ief\", \"image\/ief\"), (\"iii\", \"application\/x-iphone\"), (\"inf\", \"application\/octet-stream\"), (\"ins\", \"application\/x-internet-signup\"), (\"isp\", \"application\/x-internet-signup\"), (\"IVF\", \"video\/x-ivf\"), (\"jar\", \"application\/java-archive\"), (\"java\", \"application\/octet-stream\"), (\"jck\", \"application\/liquidmotion\"), (\"jcz\", \"application\/liquidmotion\"), (\"jfif\", \"image\/pjpeg\"), (\"jpb\", \"application\/octet-stream\"), (\"jpe\", \"image\/jpeg\"), (\"jpeg\", \"image\/jpeg\"), (\"jpg\", \"image\/jpeg\"), (\"js\", \"application\/x-javascript\"), (\"jsx\", \"text\/jscript\"), (\"latex\", \"application\/x-latex\"), (\"lit\", \"application\/x-ms-reader\"), (\"lpk\", \"application\/octet-stream\"), (\"lsf\", \"video\/x-la-asf\"), (\"lsx\", \"video\/x-la-asf\"), (\"lzh\", \"application\/octet-stream\"), (\"m13\", \"application\/x-msmediaview\"), (\"m14\", \"application\/x-msmediaview\"), (\"m1v\", \"video\/mpeg\"), (\"m3u\", \"audio\/x-mpegurl\"), (\"man\", \"application\/x-troff-man\"), (\"manifest\", \"application\/x-ms-manifest\"), (\"map\", \"text\/plain\"), (\"mdb\", \"application\/x-msaccess\"), (\"mdp\", \"application\/octet-stream\"), (\"me\", \"application\/x-troff-me\"), (\"mht\", \"message\/rfc822\"), (\"mhtml\", \"message\/rfc822\"), (\"mid\", \"audio\/mid\"), (\"midi\", \"audio\/mid\"), (\"mix\", \"application\/octet-stream\"), (\"mmf\", \"application\/x-smaf\"), (\"mno\", \"text\/xml\"), (\"mny\", \"application\/x-msmoney\"), (\"mov\", \"video\/quicktime\"), (\"movie\", \"video\/x-sgi-movie\"), (\"mp2\", \"video\/mpeg\"), (\"mp3\", \"audio\/mpeg\"), (\"mpa\", \"video\/mpeg\"), (\"mpe\", \"video\/mpeg\"), (\"mpeg\", \"video\/mpeg\"), (\"mpg\", \"video\/mpeg\"), (\"mpp\", \"application\/vnd.ms-project\"), (\"mpv2\", \"video\/mpeg\"), (\"ms\", \"application\/x-troff-ms\"), (\"msi\", \"application\/octet-stream\"), (\"mso\", \"application\/octet-stream\"), (\"mvb\", \"application\/x-msmediaview\"), (\"mvc\", \"application\/x-miva-compiled\"), (\"nc\", \"application\/x-netcdf\"), (\"nsc\", \"video\/x-ms-asf\"), (\"nws\", \"message\/rfc822\"), (\"ocx\", \"application\/octet-stream\"), (\"oda\", \"application\/oda\"), (\"odc\", \"text\/x-ms-odc\"), (\"ods\", \"application\/oleobject\"), (\"one\", \"application\/onenote\"), (\"onea\", \"application\/onenote\"), (\"onetoc\", \"application\/onenote\"), (\"onetoc2\", \"application\/onenote\"), (\"onetmp\", \"application\/onenote\"), (\"onepkg\", \"application\/onenote\"), (\"osdx\", \"application\/opensearchdescription+xml\"), (\"p10\", \"application\/pkcs10\"), (\"p12\", \"application\/x-pkcs12\"), (\"p7b\", \"application\/x-pkcs7-certificates\"), (\"p7c\", \"application\/pkcs7-mime\"), (\"p7m\", \"application\/pkcs7-mime\"), (\"p7r\", \"application\/x-pkcs7-certreqresp\"), (\"p7s\", \"application\/pkcs7-signature\"), (\"pbm\", \"image\/x-portable-bitmap\"), (\"pcx\", \"application\/octet-stream\"), (\"pcz\", \"application\/octet-stream\"), (\"pdf\", \"application\/pdf\"), (\"pfb\", \"application\/octet-stream\"), (\"pfm\", \"application\/octet-stream\"), (\"pfx\", \"application\/x-pkcs12\"), (\"pgm\", \"image\/x-portable-graymap\"), (\"pko\", \"application\/vnd.ms-pki.pko\"), (\"pma\", \"application\/x-perfmon\"), (\"pmc\", \"application\/x-perfmon\"), (\"pml\", \"application\/x-perfmon\"), (\"pmr\", \"application\/x-perfmon\"), (\"pmw\", \"application\/x-perfmon\"), (\"png\", \"image\/png\"), (\"pnm\", \"image\/x-portable-anymap\"), (\"pnz\", \"image\/png\"), (\"pot\", \"application\/vnd.ms-powerpoint\"), (\"potm\", \"application\/vnd.ms-powerpoint.template.macroEnabled.12\"), (\"potx\", \"application\/vnd.openxmlformats-officedocument.presentationml.template\"), (\"ppam\", \"application\/vnd.ms-powerpoint.addin.macroEnabled.12\"), (\"ppm\", \"image\/x-portable-pixmap\"), (\"pps\", \"application\/vnd.ms-powerpoint\"), (\"ppsm\", \"application\/vnd.ms-powerpoint.slideshow.macroEnabled.12\"), (\"ppsx\", \"application\/vnd.openxmlformats-officedocument.presentationml.slideshow\"), (\"ppt\", \"application\/vnd.ms-powerpoint\"), (\"pptm\", \"application\/vnd.ms-powerpoint.presentation.macroEnabled.12\"), (\"pptx\", \"application\/vnd.openxmlformats-officedocument.presentationml.presentation\"), (\"prf\", \"application\/pics-rules\"), (\"prm\", \"application\/octet-stream\"), (\"prx\", \"application\/octet-stream\"), (\"ps\", \"application\/postscript\"), (\"psd\", \"application\/octet-stream\"), (\"psm\", \"application\/octet-stream\"), (\"psp\", \"application\/octet-stream\"), (\"pub\", \"application\/x-mspublisher\"), (\"qt\", \"video\/quicktime\"), (\"qtl\", \"application\/x-quicktimeplayer\"), (\"qxd\", \"application\/octet-stream\"), (\"ra\", \"audio\/x-pn-realaudio\"), (\"ram\", \"audio\/x-pn-realaudio\"), (\"rar\", \"application\/octet-stream\"), (\"ras\", \"image\/x-cmu-raster\"), (\"rf\", \"image\/vnd.rn-realflash\"), (\"rgb\", \"image\/x-rgb\"), (\"rm\", \"application\/vnd.rn-realmedia\"), (\"rmi\", \"audio\/mid\"), (\"roff\", \"application\/x-troff\"), (\"rpm\", \"audio\/x-pn-realaudio-plugin\"), (\"rtf\", \"application\/rtf\"), (\"rtx\", \"text\/richtext\"), (\"scd\", \"application\/x-msschedule\"), (\"sct\", \"text\/scriptlet\"), (\"sea\", \"application\/octet-stream\"), (\"setpay\", \"application\/set-payment-initiation\"), (\"setreg\", \"application\/set-registration-initiation\"), (\"sgml\", \"text\/sgml\"), (\"sh\", \"application\/x-sh\"), (\"shar\", \"application\/x-shar\"), (\"sit\", \"application\/x-stuffit\"), (\"sldm\", \"application\/vnd.ms-powerpoint.slide.macroEnabled.12\"), (\"sldx\", \"application\/vnd.openxmlformats-officedocument.presentationml.slide\"), (\"smd\", \"audio\/x-smd\"), (\"smi\", \"application\/octet-stream\"), (\"smx\", \"audio\/x-smd\"), (\"smz\", \"audio\/x-smd\"), (\"snd\", \"audio\/basic\"), (\"snp\", \"application\/octet-stream\"), (\"spc\", \"application\/x-pkcs7-certificates\"), (\"spl\", \"application\/futuresplash\"), (\"src\", \"application\/x-wais-source\"), (\"ssm\", \"application\/streamingmedia\"), (\"sst\", \"application\/vnd.ms-pki.certstore\"), (\"stl\", \"application\/vnd.ms-pki.stl\"), (\"sv4cpio\", \"application\/x-sv4cpio\"), (\"sv4crc\", \"application\/x-sv4crc\"), (\"svg\", \"image\/svg+xml\"), (\"swf\", \"application\/x-shockwave-flash\"), (\"t\", \"application\/x-troff\"), (\"tar\", \"application\/x-tar\"), (\"tcl\", \"application\/x-tcl\"), (\"tex\", \"application\/x-tex\"), (\"texi\", \"application\/x-texinfo\"), (\"texinfo\", \"application\/x-texinfo\"), (\"tgz\", \"application\/x-compressed\"), (\"thmx\", \"application\/vnd.ms-officetheme\"), (\"thn\", \"application\/octet-stream\"), (\"tif\", \"image\/tiff\"), (\"tiff\", \"image\/tiff\"), (\"toc\", \"application\/octet-stream\"), (\"tr\", \"application\/x-troff\"), (\"trm\", \"application\/x-msterminal\"), (\"tsv\", \"text\/tab-separated-values\"), (\"ttf\", \"application\/octet-stream\"), (\"txt\", \"text\/plain\"), (\"u32\", \"application\/octet-stream\"), (\"uls\", \"text\/iuls\"), (\"ustar\", \"application\/x-ustar\"), (\"vbs\", \"text\/vbscript\"), (\"vcf\", \"text\/x-vcard\"), (\"vcs\", \"text\/plain\"), (\"vdx\", \"application\/vnd.ms-visio.viewer\"), (\"vml\", \"text\/xml\"), (\"vsd\", \"application\/vnd.visio\"), (\"vss\", \"application\/vnd.visio\"), (\"vst\", \"application\/vnd.visio\"), (\"vsto\", \"application\/x-ms-vsto\"), (\"vsw\", \"application\/vnd.visio\"), (\"vsx\", \"application\/vnd.visio\"), (\"vtx\", \"application\/vnd.visio\"), (\"wasm\", \"application\/wasm\"), (\"wav\", \"audio\/wav\"), (\"wax\", \"audio\/x-ms-wax\"), (\"wbmp\", \"image\/vnd.wap.wbmp\"), (\"wcm\", \"application\/vnd.ms-works\"), (\"wdb\", \"application\/vnd.ms-works\"), (\"wks\", \"application\/vnd.ms-works\"), (\"wm\", \"video\/x-ms-wm\"), (\"wma\", \"audio\/x-ms-wma\"), (\"wmd\", \"application\/x-ms-wmd\"), (\"wmf\", \"application\/x-msmetafile\"), (\"wml\", \"text\/vnd.wap.wml\"), (\"wmlc\", \"application\/vnd.wap.wmlc\"), (\"wmls\", \"text\/vnd.wap.wmlscript\"), (\"wmlsc\", \"application\/vnd.wap.wmlscriptc\"), (\"wmp\", \"video\/x-ms-wmp\"), (\"wmv\", \"video\/x-ms-wmv\"), (\"wmx\", \"video\/x-ms-wmx\"), (\"wmz\", \"application\/x-ms-wmz\"), (\"wps\", \"application\/vnd.ms-works\"), (\"wri\", \"application\/x-mswrite\"), (\"wrl\", \"x-world\/x-vrml\"), (\"wrz\", \"x-world\/x-vrml\"), (\"wsdl\", \"text\/xml\"), (\"wvx\", \"video\/x-ms-wvx\"), (\"x\", \"application\/directx\"), (\"xaf\", \"x-world\/x-vrml\"), (\"xaml\", \"application\/xaml+xml\"), (\"xap\", \"application\/x-silverlight-app\"), (\"xbap\", \"application\/x-ms-xbap\"), (\"xbm\", \"image\/x-xbitmap\"), (\"xdr\", \"text\/plain\"), (\"xht\", \"application\/xhtml+xml\"), (\"xhtml\", \"application\/xhtml+xml\"), (\"xla\", \"application\/vnd.ms-excel\"), (\"xlam\", \"application\/vnd.ms-excel.addin.macroEnabled.12\"), (\"xlc\", \"application\/vnd.ms-excel\"), (\"xlm\", \"application\/vnd.ms-excel\"), (\"xls\", \"application\/vnd.ms-excel\"), (\"xlsb\", \"application\/vnd.ms-excel.sheet.binary.macroEnabled.12\"), (\"xlsm\", \"application\/vnd.ms-excel.sheet.macroEnabled.12\"), (\"xlsx\", \"application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\"), (\"xlt\", \"application\/vnd.ms-excel\"), (\"xltm\", \"application\/vnd.ms-excel.template.macroEnabled.12\"), (\"xltx\", \"application\/vnd.openxmlformats-officedocument.spreadsheetml.template\"), (\"xlw\", \"application\/vnd.ms-excel\"), (\"xml\", \"text\/xml\"), (\"xof\", \"x-world\/x-vrml\"), (\"xpm\", \"image\/x-xpixmap\"), (\"xps\", \"application\/vnd.ms-xpsdocument\"), (\"xsd\", \"text\/xml\"), (\"xsf\", \"text\/xml\"), (\"xsl\", \"text\/xml\"), (\"xslt\", \"text\/xml\"), (\"xsn\", \"application\/octet-stream\"), (\"xtp\", \"application\/octet-stream\"), (\"xwd\", \"image\/x-xwindowdump\"), (\"z\", \"application\/x-compress\"), (\"zip\", \"application\/x-zip-compressed\")]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/WebViewAssetHandler.swift", - "kind": "StringLiteral", - "offset": 126, - "length": 19, - "value": "\"Capacitor.WebViewAssetHandler\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 206, - "length": 35, - "value": "\"SSLPinningHttpRequestHandlerClass\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 400, - "length": 6, - "value": "\"call\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 434, - "length": 12, - "value": "\"httpMethod\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 487, - "length": 8, - "value": "\"config\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 950, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1028, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1106, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1185, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/CapacitorHttp.swift", - "kind": "StringLiteral", - "offset": 1267, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/PluginConfig.swift", - "kind": "StringLiteral", - "offset": 38, - "length": 12, - "value": "\"Capacitor.PluginConfig\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/KeyPath.swift", - "kind": "StringLiteral", - "offset": 185, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/KeyPath.swift", - "kind": "StringLiteral", - "offset": 301, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 175, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 227, - "length": 7, - "value": "\"level\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 5, - "value": "\"log\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 266, - "length": 33, - "value": "\"⚡️ [\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 284, - "length": 1, - "value": "\"] - \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/Console.swift", - "kind": "StringLiteral", - "offset": 298, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "BooleanLiteral", - "offset": 66, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 138, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 164, - "length": 4, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 285, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "StringLiteral", - "offset": 293, - "length": 82, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "IntegerLiteral", - "offset": 302, - "length": 4, - "value": "4068" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPLog.swift", - "kind": "IntegerLiteral", - "offset": 348, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 834, - "length": 26, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 859, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1021, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1033, - "length": 18, - "value": "\"\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1358, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 1402, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 1996, - "length": 3, - "value": "\"*\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 2021, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2134, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2209, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "BooleanLiteral", - "offset": 2302, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceConfiguration.swift", - "kind": "StringLiteral", - "offset": 2447, - "length": 3, - "value": "\"*\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 91, - "length": 11, - "value": "\"capacitor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 136, - "length": 11, - "value": "\"localhost\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 312, - "length": 6, - "value": "\"none\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 381, - "length": 7, - "value": "\"debug\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 452, - "length": 12, - "value": "\"production\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1260, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1366, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 1722, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 2356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 184, - "value": "\"<\/widget>\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3201, - "length": 21, - "value": "\"ios.appendUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3256, - "length": 17, - "value": "\"appendUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3407, - "length": 23, - "value": "\"ios.overrideUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3464, - "length": 19, - "value": "\"overrideUserAgent\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 21, - "value": "\"ios.backgroundColor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3673, - "length": 17, - "value": "\"backgroundColor\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 3880, - "length": 24, - "value": "\"server.allowNavigation\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 18, - "value": "\"server.iosScheme\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4173, - "length": 17, - "value": "\"server.hostname\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4301, - "length": 12, - "value": "\"server.url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 18, - "value": "\"server.errorPath\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4577, - "length": 18, - "value": "\"ios.contentInset\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 11, - "value": "\"automatic\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4823, - "length": 16, - "value": "\"scrollableAxes\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 4952, - "length": 7, - "value": "\"never\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5063, - "length": 8, - "value": "\"always\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5290, - "length": 23, - "value": "\"ios.allowsLinkPreview\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5441, - "length": 19, - "value": "\"ios.scrollEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5586, - "length": 17, - "value": "\"ios.zoomEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5635, - "length": 13, - "value": "\"zoomEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5771, - "length": 9, - "value": "\"plugins\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5907, - "length": 21, - "value": "\"ios.loggingBehavior\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 5962, - "length": 17, - "value": "\"loggingBehavior\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6211, - "length": 40, - "value": "\"ios.limitsNavigationsToAppBoundDomains\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6401, - "length": 26, - "value": "\"ios.preferredContentMode\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6567, - "length": 36, - "value": "\"ios.handleApplicationNotifications\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 6764, - "length": 33, - "value": "\"ios.webContentsDebuggingEnabled\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 7234, - "length": 15, - "value": "\"DisableDeploy\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7292, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7415, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "StringLiteral", - "offset": 7529, - "length": 21, - "value": "\"^[a-z][a-z0-9.+-]*$\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 7661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 8012, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "BooleanLiteral", - "offset": 8105, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "Dictionary", - "offset": 8664, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPInstanceDescriptor.swift", - "kind": "Dictionary", - "offset": 8743, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "Dictionary", - "offset": 344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 446, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 9, - "value": "\"options\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 640, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 1014, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 5, - "value": "\"url\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPApplicationDelegateProxy.swift", - "kind": "BooleanLiteral", - "offset": 1229, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "BooleanLiteral", - "offset": 349, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "Dictionary", - "offset": 387, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/CAPPlugin+LoadInstance.swift", - "kind": "Dictionary", - "offset": 416, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 182, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 610, - "length": 6, - "value": "\"path\"" - }, - { - "filePath": "\/Users\/mark\/Developer\/core\/capacitor\/ios\/Capacitor\/Capacitor\/Plugins\/WebView.swift", - "kind": "StringLiteral", - "offset": 948, - "length": 16, - "value": "\"serverBasePath\"" - } - ] -} \ No newline at end of file diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index ed2bea8d6..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,772 +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.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Capacitor -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import Capacitor -import CommonCrypto -import Cordova -import Dispatch -import Foundation -import MobileCoreServices -import Swift -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@_inheritsConvenienceInitializers @objc(CAPCookiesPlugin) public class CAPCookiesPlugin : Capacitor.CAPPlugin { - @objc override dynamic public func load() - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -public protocol Router { - func route(for path: Swift.String) -> Swift.String - var basePath: Swift.String { get set } -} -public struct CapacitorRouter : Capacitor.Router { - public init() - public var basePath: Swift.String - public func route(for path: Swift.String) -> Swift.String -} -@objc open class CapacitorUrlRequest : ObjectiveC.NSObject, Foundation.URLSessionTaskDelegate { - public var request: Foundation.URLRequest - public var headers: [Swift.String : Swift.String] - public enum CapacitorUrlRequestError : Swift.Error { - case serializationError(Swift.String?) - } - public init(_ url: Foundation.URL, method: Swift.String) - public func getRequestDataAsJson(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsFormUrlEncoded(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsMultipartFormData(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestDataAsString(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestHeader(_ index: Swift.String) -> Any? - public func getRequestData(_ body: any Capacitor.JSValue, _ contentType: Swift.String, _ dataType: Swift.String? = nil) throws -> Foundation.Data? - @available(*, deprecated, message: "Use newer function with passed headers of type [String: Any]") - public func setRequestHeaders(_ headers: [Swift.String : Swift.String]) - public func setRequestHeaders(_ headers: [Swift.String : Any]) - public func setRequestBody(_ body: any Capacitor.JSValue, _ dataType: Swift.String? = nil) throws - public func setContentType(_ data: Swift.String?) - public func setTimeout(_ timeout: Foundation.TimeInterval) - public func getUrlRequest() -> Foundation.URLRequest - @objc open func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - open func getUrlSession(_ call: Capacitor.CAPPluginCall) -> Foundation.URLSession - @objc deinit -} -@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor(unsafe) open class CAPBridgeViewController : UIKit.UIViewController { - @_Concurrency.MainActor(unsafe) final public var bridge: (any Capacitor.CAPBridgeProtocol)? { - get - } - @_Concurrency.MainActor(unsafe) public var webView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var isStatusBarVisible: Swift.Bool - @_Concurrency.MainActor(unsafe) public var statusBarStyle: UIKit.UIStatusBarStyle - @_Concurrency.MainActor(unsafe) public var statusBarAnimation: UIKit.UIStatusBarAnimation - @objc @_Concurrency.MainActor(unsafe) public var supportedOrientations: [Swift.Int] - @_Concurrency.MainActor(unsafe) final public var isNewBinary: Swift.Bool { - get - set - } - @_Concurrency.MainActor(unsafe) @objc override final public func loadView() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func canPerformUnwindSegueAction(_ action: ObjectiveC.Selector, from fromViewController: UIKit.UIViewController, withSender sender: Any) -> Swift.Bool - @_Concurrency.MainActor(unsafe) open func instanceDescriptor() -> Capacitor.InstanceDescriptor - @_Concurrency.MainActor(unsafe) open func router() -> any Capacitor.Router - @_Concurrency.MainActor(unsafe) open func webViewConfiguration(for instanceConfiguration: Capacitor.InstanceConfiguration) -> WebKit.WKWebViewConfiguration - @_Concurrency.MainActor(unsafe) open func webView(with frame: CoreFoundation.CGRect, configuration: WebKit.WKWebViewConfiguration) -> WebKit.WKWebView - @_Concurrency.MainActor(unsafe) open func capacitorDidLoad() - @_Concurrency.MainActor(unsafe) final public func loadWebView() - @_Concurrency.MainActor(unsafe) open func setStatusBarDefaults() - @_Concurrency.MainActor(unsafe) open func setScreenOrientationDefaults() - @_Concurrency.MainActor(unsafe) @objc override dynamic open var prefersStatusBarHidden: Swift.Bool { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarUpdateAnimation: UIKit.UIStatusBarAnimation { - @objc get - } - @_Concurrency.MainActor(unsafe) open func setStatusBarVisible(_ isStatusBarVisible: Swift.Bool) - @_Concurrency.MainActor(unsafe) open func setStatusBarStyle(_ statusBarStyle: UIKit.UIStatusBarStyle) - @_Concurrency.MainActor(unsafe) open func setStatusBarAnimation(_ statusBarAnimation: UIKit.UIStatusBarAnimation) - @_Concurrency.MainActor(unsafe) @objc override dynamic open var supportedInterfaceOrientations: UIKit.UIInterfaceOrientationMask { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) - @objc deinit -} -extension Capacitor.CAPBridgeViewController { - @objc @_Concurrency.MainActor(unsafe) dynamic public func getServerBasePath() -> Swift.String - @objc @_Concurrency.MainActor(unsafe) dynamic public func setServerBasePath(path: Swift.String) -} -extension Capacitor.CAPBridgeViewController : Capacitor.CAPBridgeDelegate { - @_Concurrency.MainActor(unsafe) public var bridgedWebView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var bridgedViewController: UIKit.UIViewController? { - get - } -} -@objc public protocol CAPBridgeProtocol : ObjectiveC.NSObjectProtocol { - @objc var viewController: UIKit.UIViewController? { get } - @objc var config: Capacitor.InstanceConfiguration { get } - @objc var webView: WebKit.WKWebView? { get } - @objc var notificationRouter: Capacitor.NotificationRouter { get } - @objc var isSimEnvironment: Swift.Bool { get } - @objc var isDevEnvironment: Swift.Bool { get } - @objc var userInterfaceStyle: UIKit.UIUserInterfaceStyle { get } - @objc var autoRegisterPlugins: Swift.Bool { get } - @objc var statusBarVisible: Swift.Bool { get set } - @objc var statusBarStyle: UIKit.UIStatusBarStyle { get set } - @objc var statusBarAnimation: UIKit.UIStatusBarAnimation { get set } - @objc @available(*, deprecated, renamed: "webView") - func getWebView() -> WebKit.WKWebView? - @objc @available(*, deprecated, renamed: "isSimEnvironment") - func isSimulator() -> Swift.Bool - @objc @available(*, deprecated, renamed: "isDevEnvironment") - func isDevMode() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarVisible") - func getStatusBarVisible() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarStyle") - func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @objc @available(*, deprecated, renamed: "userInterfaceStyle") - func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc @available(*, deprecated, message: "Moved - equivalent is found on config.localURL") - func getLocalUrl() -> Swift.String - @objc @available(*, deprecated, renamed: "savedCall(withID:)") - func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc @available(*, deprecated, renamed: "releaseCall(withID:)") - func releaseCall(callbackId: Swift.String) - @objc func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc func saveCall(_ call: Capacitor.CAPPluginCall) - @objc func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc func releaseCall(withID: Swift.String) - @objc func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc func eval(js: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - @objc func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc func setServerBasePath(_ path: Swift.String) - @objc func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)?) - @objc func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)?) -} -extension Capacitor.CAPBridgeProtocol { - @available(*, deprecated, message: "Use CAPLog directly") - public func modulePrint(_ plugin: Capacitor.CAPPlugin, _ items: Any...) - public func alert(_ title: Swift.String, _ message: Swift.String, _ buttonTitle: Swift.String = "OK") - @available(*, deprecated, renamed: "statusBarVisible") - public func setStatusBarVisible(_ visible: Swift.Bool) - @available(*, deprecated, renamed: "statusBarStyle") - public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @available(*, deprecated, renamed: "statusBarAnimation") - public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) -} -public enum CapacitorBridgeError : Swift.Error { - case errorExportingCoreJS - public static func == (a: Capacitor.CapacitorBridgeError, b: Capacitor.CapacitorBridgeError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.CustomNSError { - public static var errorDomain: Swift.String { - get - } - public var errorCode: Swift.Int { - get - } - public var errorUserInfo: [Swift.String : Any] { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } -} -extension WebKit.WKWebView : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == WebKit.WKWebView { - public var keyboardShouldRequireUserInteraction: Swift.Bool? { - get - } - public func setKeyboardShouldRequireUserInteraction(_ flag: Swift.Bool? = nil) -} -extension Foundation.Data : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == Foundation.Data { - public static func data(base64EncodedOrDataUrl: Swift.String) -> Foundation.Data? -} -@objc(CAPWebViewDelegationHandler) @_Concurrency.MainActor(unsafe) public class WebViewDelegationHandler : ObjectiveC.NSObject, WebKit.WKNavigationDelegate, WebKit.WKUIDelegate, WebKit.WKScriptMessageHandler, UIKit.UIScrollViewDelegate { - @_Concurrency.MainActor(unsafe) public var contentController: WebKit.WKUserContentController { - get - } - @_Concurrency.MainActor(unsafe) public init(bridge: Capacitor.CapacitorBridge? = nil) - @_Concurrency.MainActor(unsafe) public func cleanUp() - @_Concurrency.MainActor(unsafe) public func willLoadWebview(_ webView: WebKit.WKWebView?) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didStartProvisionalNavigation navigation: WebKit.WKNavigation!) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestMediaCapturePermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, type: WebKit.WKMediaCaptureType, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestDeviceOrientationAndMotionPermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, decidePolicyFor navigationAction: WebKit.WKNavigationAction, decisionHandler: @escaping (WebKit.WKNavigationActionPolicy) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFinish navigation: WebKit.WKNavigation!) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFail navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFailProvisionalNavigation navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webViewWebContentProcessDidTerminate(_ webView: WebKit.WKWebView) - @_Concurrency.MainActor(unsafe) @objc public func userContentController(_ userContentController: WebKit.WKUserContentController, didReceive message: WebKit.WKScriptMessage) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptAlertPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping () -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptConfirmPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.Bool) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: Swift.String, defaultText: Swift.String?, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.String?) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, createWebViewWith configuration: WebKit.WKWebViewConfiguration, for navigationAction: WebKit.WKNavigationAction, windowFeatures: WebKit.WKWindowFeatures) -> WebKit.WKWebView? - @_Concurrency.MainActor(unsafe) @objc public func scrollViewWillBeginZooming(_ scrollView: UIKit.UIScrollView, with view: UIKit.UIView?) - @objc deinit -} -public protocol JSValue { -} -extension Swift.String : Capacitor.JSValue { -} -extension Swift.Bool : Capacitor.JSValue { -} -extension Swift.Int : Capacitor.JSValue { -} -extension Swift.Float : Capacitor.JSValue { -} -extension Swift.Double : Capacitor.JSValue { -} -extension Foundation.NSNumber : Capacitor.JSValue { -} -extension Foundation.NSNull : Capacitor.JSValue { -} -extension Swift.Array : Capacitor.JSValue { -} -extension Foundation.Date : Capacitor.JSValue { -} -extension Swift.Dictionary : Capacitor.JSValue where Key == Swift.String, Value == any Capacitor.JSValue { -} -public typealias JSObject = [Swift.String : any Capacitor.JSValue] -public typealias JSArray = [any Capacitor.JSValue] -public protocol JSStringContainer { - func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String - func getString(_ key: Swift.String) -> Swift.String? -} -extension Capacitor.JSStringContainer { - public func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String -} -public protocol JSBoolContainer { - func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - func getBool(_ key: Swift.String) -> Swift.Bool? -} -extension Capacitor.JSBoolContainer { - public func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool -} -public protocol JSIntContainer { - func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - func getInt(_ key: Swift.String) -> Swift.Int? -} -extension Capacitor.JSIntContainer { - public func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int -} -public protocol JSFloatContainer { - func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float - func getFloat(_ key: Swift.String) -> Swift.Float? -} -extension Capacitor.JSFloatContainer { - public func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float -} -public protocol JSDoubleContainer { - func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double - func getDouble(_ key: Swift.String) -> Swift.Double? -} -extension Capacitor.JSDoubleContainer { - public func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double -} -public protocol JSDateContainer { - func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date - func getDate(_ key: Swift.String) -> Foundation.Date? -} -extension Capacitor.JSDateContainer { - public func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date -} -public protocol JSArrayContainer { - func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? - func getArray(_ key: Swift.String) -> Capacitor.JSArray? -} -extension Capacitor.JSArrayContainer { - public func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - public func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? -} -public protocol JSObjectContainer { - func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject - func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -extension Capacitor.JSObjectContainer { - public func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject -} -public protocol JSValueContainer : Capacitor.JSArrayContainer, Capacitor.JSBoolContainer, Capacitor.JSDateContainer, Capacitor.JSDoubleContainer, Capacitor.JSFloatContainer, Capacitor.JSIntContainer, Capacitor.JSObjectContainer, Capacitor.JSStringContainer { - static var jsDateFormatter: Foundation.ISO8601DateFormatter { get } - var jsObjectRepresentation: Capacitor.JSObject { get } -} -extension Capacitor.JSValueContainer { - public func getValue(_ key: Swift.String) -> (any Capacitor.JSValue)? - @available(*, renamed: "getValue(_:)", message: "All values returned conform to JSValue, use getValue(_:) instead.") - public func getAny(_ key: Swift.String) -> Any? - public func getString(_ key: Swift.String) -> Swift.String? - public func getBool(_ key: Swift.String) -> Swift.Bool? - public func getInt(_ key: Swift.String) -> Swift.Int? - public func getFloat(_ key: Swift.String) -> Swift.Float? - public func getDouble(_ key: Swift.String) -> Swift.Double? - public func getDate(_ key: Swift.String) -> Foundation.Date? - public func getArray(_ key: Swift.String) -> Capacitor.JSArray? - public func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -public enum JSTypes { -} -extension Capacitor.JSTypes { - public static func coerceDictionaryToJSObject(_ dictionary: Foundation.NSDictionary?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceDictionaryToJSObject(_ dictionary: [Swift.AnyHashable : Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceArrayToJSArray(_ array: [Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSArray? -} -@objc public class CapacitorBridge : ObjectiveC.NSObject, Capacitor.CAPBridgeProtocol { - public static var isDevEnvironment: Swift.Bool { - get - } - @objc public var webView: WebKit.WKWebView? { - @objc get - } - @objc final public let autoRegisterPlugins: Swift.Bool - @objc public var notificationRouter: Capacitor.NotificationRouter - @objc public var isSimEnvironment: Swift.Bool { - @objc get - } - @objc public var isDevEnvironment: Swift.Bool { - @objc get - } - @objc public var userInterfaceStyle: UIKit.UIUserInterfaceStyle { - @objc get - } - @objc public var statusBarVisible: Swift.Bool { - @objc get - @objc set - } - @objc public var statusBarStyle: UIKit.UIStatusBarStyle { - @objc get - @objc set - } - @objc public var statusBarAnimation: UIKit.UIStatusBarAnimation { - @objc get - @objc set - } - public static let capacitorSite: Swift.String - public static let fileStartIdentifier: Swift.String - public static let defaultScheme: Swift.String - public var webViewAssetHandler: Capacitor.WebViewAssetHandler { - get - } - public var webViewDelegationHandler: Capacitor.WebViewDelegationHandler { - get - } - weak public var bridgeDelegate: (any Capacitor.CAPBridgeDelegate)? { - get - } - @objc public var viewController: UIKit.UIViewController? { - @objc get - } - @objc public var config: Capacitor.InstanceConfiguration - @objc public func getWebView() -> WebKit.WKWebView? - @objc public func isSimulator() -> Swift.Bool - @objc public func isDevMode() -> Swift.Bool - @objc public func getStatusBarVisible() -> Swift.Bool - @nonobjc public func setStatusBarVisible(_ visible: Swift.Bool) - @objc public func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @nonobjc public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @objc public func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc public func getLocalUrl() -> Swift.String - @nonobjc public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) - @objc public func setServerBasePath(_ path: Swift.String) - public init(with configuration: Capacitor.InstanceConfiguration, delegate bridgeDelegate: any Capacitor.CAPBridgeDelegate, cordovaConfiguration: Cordova.CDVConfigParser, assetHandler: Capacitor.WebViewAssetHandler, delegationHandler: Capacitor.WebViewDelegationHandler, autoRegisterPlugins: Swift.Bool = true) - @objc deinit - @objc public func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc public func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc public func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc public func saveCall(_ call: Capacitor.CAPPluginCall) - @objc public func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc public func releaseCall(withID: Swift.String) - @objc public func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(callbackId: Swift.String) - @objc public func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc public func eval(js: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - public func logToJs(_ message: Swift.String, _ level: Swift.String = "log") - @objc public func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc public func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc public func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc public func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @objc public func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) -} -@_inheritsConvenienceInitializers @objc open class CAPInstancePlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@objc @_inheritsConvenienceInitializers public class CapacitorWKCookieObserver : ObjectiveC.NSObject, WebKit.WKHTTPCookieStoreObserver { - @objc public func cookiesDidChange(in cookieStore: WebKit.WKHTTPCookieStore) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CapacitorCookieManager { - public func getServerUrl() -> Foundation.URL? - public func getServerUrl(_ urlString: Swift.String?) -> Foundation.URL? - public func encode(_ value: Swift.String) -> Swift.String - public func decode(_ value: Swift.String) -> Swift.String - public func setCookie(_ domain: Swift.String, _ action: Swift.String) - public func setCookie(_ url: Foundation.URL, _ key: Swift.String, _ value: Swift.String, _ expires: Swift.String?, _ path: Swift.String?) - public func getCookiesAsMap(_ url: Foundation.URL) -> [Swift.String : Swift.String] - public func getCookies() -> Swift.String - public func deleteCookie(_ url: Foundation.URL, _ key: Swift.String) - public func clearCookies(_ url: Foundation.URL) - public func clearAllCookies() - public func syncCookiesToWebView() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class CAPFileManager : ObjectiveC.NSObject { - @available(*, deprecated, message: "Use portablePath(fromLocalURL:) on the Bridge") - public static func getPortablePath(host: Swift.String, uri: Foundation.URL?) -> Swift.String? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @available(*, deprecated, message: "'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@objc public class CAPBridge : ObjectiveC.NSObject { - @objc public static let statusBarTappedNotification: Foundation.Notification - public static func getLastUrl() -> Foundation.URL? - public static func handleOpenUrl(_ url: Foundation.URL, _ options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - public static func handleContinueActivity(_ userActivity: Foundation.NSUserActivity, _ restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - public static func handleAppBecameActive(_ application: UIKit.UIApplication) - @objc override dynamic public init() - @objc deinit -} -extension UIKit.UIColor : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T : UIKit.UIColor { - public static func color(r: Swift.Int, g: Swift.Int, b: Swift.Int, a: Swift.Int = 0xFF) -> UIKit.UIColor - public static func color(argb: Swift.UInt32) -> UIKit.UIColor - public static func color(fromHex: Swift.String) -> UIKit.UIColor? -} -public typealias PluginCallResultData = [Swift.String : Any] -public enum PluginCallResult { - case dictionary(Capacitor.PluginCallResultData) -} -@objc public class CAPPluginCallResult : ObjectiveC.NSObject { - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:) public init(_ data: Capacitor.PluginCallResultData?) - @objc deinit -} -@objc public class CAPPluginCallError : ObjectiveC.NSObject { - @objc final public let message: Swift.String - @objc final public let code: Swift.String? - @objc final public let error: (any Swift.Error)? - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:code:error:data:) public init(message: Swift.String, code: Swift.String?, error: (any Swift.Error)?, data: Capacitor.PluginCallResultData?) - @objc deinit -} -extension Foundation.NSNotification.Name { - public static let capacitorOpenURL: Foundation.Notification.Name - public static let capacitorOpenUniversalLink: Foundation.Notification.Name - public static let capacitorContinueActivity: Foundation.Notification.Name - public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc extension Foundation.NSNotification { - @objc public static let capacitorOpenURL: Foundation.Notification.Name - @objc public static let capacitorOpenUniversalLink: Foundation.Notification.Name - @objc public static let capacitorContinueActivity: Foundation.Notification.Name - @objc public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - @objc public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc public enum CAPNotifications : Swift.Int { - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenURL'") - case URLOpen - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenUniversalLink'") - case UniversalLinkOpen - @available(*, deprecated, message: "Notification.Name.capacitorContinueActivity'") - case ContinueActivity - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidRegisterForRemoteNotifications'") - case DidRegisterForRemoteNotificationsWithDeviceToken - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidFailToRegisterForRemoteNotifications'") - case DidFailToRegisterForRemoteNotificationsWithError - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDecidePolicyForNavigationAction'") - case DecidePolicyForNavigationAction - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers public class JSDate { - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias JSResultBody = [Swift.String : Any] -@_inheritsConvenienceInitializers @objc(CAPNotificationRouter) public class NotificationRouter : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate { - weak public var pushNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - weak public var localNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) - @objc override dynamic public init() - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginCallErrorData = [Swift.String : Any] -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginResultData = [Swift.String : Any] -extension Capacitor.CAPPluginCall : Capacitor.JSValueContainer { - public var jsObjectRepresentation: Capacitor.JSObject { - get - } -} -@objc extension Capacitor.CAPPluginCall { - @objc dynamic public var dictionaryRepresentation: Foundation.NSDictionary { - @objc get - } - @objc public static var jsDateFormatter: Foundation.ISO8601DateFormatter -} -@objc extension Capacitor.CAPPluginCall { - @objc @available(*, deprecated, message: "Presence of a key should not be considered significant. Use typed accessors to check the value instead.") - dynamic public func hasOption(_ key: Swift.String) -> Swift.Bool - @objc @available(*, deprecated, renamed: "resolve()") - dynamic public func success() - @objc @available(*, deprecated, renamed: "resolve") - dynamic public func success(_ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func resolve() - @objc dynamic public func resolve(_ data: Capacitor.PluginCallResultData = [:]) - @objc @available(*, deprecated, renamed: "reject") - dynamic public func error(_ message: Swift.String, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func reject(_ message: Swift.String, _ code: Swift.String? = nil, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData? = nil) - @objc dynamic public func unimplemented() - @objc dynamic public func unimplemented(_ message: Swift.String) - @objc dynamic public func unavailable() - @objc dynamic public func unavailable(_ message: Swift.String) -} -public protocol CapacitorExtension { - associatedtype CapacitorType - var capacitor: Self.CapacitorType { get } - static var capacitor: Self.CapacitorType.Type { get } -} -extension Capacitor.CapacitorExtension { - public var capacitor: Capacitor.CapacitorExtensionTypeWrapper { - get - } - public static var capacitor: Capacitor.CapacitorExtensionTypeWrapper.Type { - get - } -} -public struct CapacitorExtensionTypeWrapper { -} -public enum ResponseType : Swift.String { - case arrayBuffer - case blob - case document - case json - case text - public static let `default`: Capacitor.ResponseType - public init(string: Swift.String?) - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers open class HttpRequestHandler { - open class CapacitorHttpRequestBuilder { - public var url: Foundation.URL? - public var method: Swift.String? - public var params: [Swift.String : Swift.String]? - open var request: Capacitor.CapacitorUrlRequest? - public init() - public func setUrl(_ urlString: Swift.String) throws -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setMethod(_ method: Swift.String) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setUrlParams(_ params: [Swift.String : Any]) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - open func openConnection() -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func build() -> Capacitor.CapacitorUrlRequest - @objc deinit - } - public static func setCookiesFromResponse(_ response: Foundation.HTTPURLResponse, _ config: Capacitor.InstanceConfiguration?) - public static func buildResponse(_ data: Foundation.Data?, _ response: Foundation.HTTPURLResponse, responseType: Capacitor.ResponseType = .default) -> [Swift.String : Any] - public static func request(_ call: Capacitor.CAPPluginCall, _ httpMethod: Swift.String?, _ config: Capacitor.InstanceConfiguration?) throws - @objc deinit -} -extension Swift.Array : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper> -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [any Capacitor.JSValue] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [(any Capacitor.JSValue)?] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -@objc(CAPNotificationHandlerProtocol) public protocol NotificationHandlerProtocol { - @objc func willPresent(notification: UserNotifications.UNNotification) -> UserNotifications.UNNotificationPresentationOptions - @objc func didReceive(response: UserNotifications.UNNotificationResponse) -} -extension Foundation.Data { - public var sha256: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers public class AppUUID { - public static func getAppUUID() -> Swift.String - public static func regenerateAppUUID() - @objc deinit -} -@objc(CAPWebViewAssetHandler) public class WebViewAssetHandler : ObjectiveC.NSObject, WebKit.WKURLSchemeHandler { - public init(router: any Capacitor.Router) - public func setAssetPath(_ assetPath: Swift.String) - public func setServerUrl(_ serverUrl: Foundation.URL?) - @objc public func webView(_ webView: WebKit.WKWebView, start urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc public func webView(_ webView: WebKit.WKWebView, stop urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPHttpPlugin) public class CAPHttpPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers @objc public class PluginConfig : ObjectiveC.NSObject { - @objc public func getString(_ configKey: Swift.String, _ defaultValue: Swift.String? = nil) -> Swift.String? - @objc public func getBoolean(_ configKey: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - @objc public func getInt(_ configKey: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - public func getArray(_ configKey: Swift.String, _ defaultValue: Capacitor.JSArray? = nil) -> Capacitor.JSArray? - public func getObject(_ configKey: Swift.String) -> Capacitor.JSObject? - @objc public func isEmpty() -> Swift.Bool - public func getConfigJSON() -> Capacitor.JSObject - @objc deinit -} -public protocol CAPBridgeDelegate : AnyObject { - var bridgedWebView: WebKit.WKWebView? { get } - var bridgedViewController: UIKit.UIViewController? { get } -} -public struct KeyPath { -} -extension Capacitor.KeyPath : Swift.ExpressibleByStringLiteral { - public init(stringLiteral value: Swift.String) - public init(unicodeScalarLiteral value: Swift.String) - public init(extendedGraphemeClusterLiteral value: Swift.String) - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String -} -extension Swift.Dictionary where Key == Swift.String, Value == any Capacitor.JSValue { - public subscript(keyPath keyPath: Capacitor.KeyPath) -> (any Capacitor.JSValue)? { - get - } -} -@_inheritsConvenienceInitializers @objc(CAPConsolePlugin) public class CAPConsolePlugin : Capacitor.CAPPlugin { - @objc public func log(_ call: Capacitor.CAPPluginCall) - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CAPLog { - public static var enableLogging: Swift.Bool - public static func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n") - @objc deinit -} -extension Capacitor.InstanceConfiguration { - @objc dynamic public var appStartFileURL: Foundation.URL { - @objc get - } - @objc dynamic public var appStartServerURL: Foundation.URL { - @objc get - } - @objc dynamic public var errorPathURL: Foundation.URL? { - @objc get - } - @available(*, deprecated, message: "Use getPluginConfig") - @objc dynamic public func getPluginConfigValue(_ pluginId: Swift.String, _ configKey: Swift.String) -> Any? - @objc dynamic public func getPluginConfig(_ pluginId: Swift.String) -> Capacitor.PluginConfig - @objc dynamic public func shouldAllowNavigation(to host: Swift.String) -> Swift.Bool - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getValue(_ key: Swift.String) -> Any? - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getString(_ key: Swift.String) -> Swift.String? -} -public enum InstanceDescriptorDefaults { - public static let scheme: Swift.String - public static let hostname: Swift.String -} -extension Capacitor.InstanceDescriptor { - @objc dynamic public var cordovaDeployDisabled: Swift.Bool { - @objc get - } - @objc dynamic public func normalize() -} -@_inheritsConvenienceInitializers @objc(CAPApplicationDelegateProxy) @_Concurrency.MainActor(unsafe) public class ApplicationDelegateProxy : ObjectiveC.NSObject, UIKit.UIApplicationDelegate { - @_Concurrency.MainActor(unsafe) public static let shared: Capacitor.ApplicationDelegateProxy - @_Concurrency.MainActor(unsafe) public var lastURL: Foundation.URL? { - get - } - @_Concurrency.MainActor(unsafe) @objc public func application(_ app: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any] = [:]) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity, restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPWebViewPlugin) public class CAPWebViewPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -extension Capacitor.CapacitorBridgeError : Swift.Equatable {} -extension Capacitor.CapacitorBridgeError : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.Equatable {} -extension Capacitor.CAPNotifications : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.RawRepresentable {} -extension Capacitor.ResponseType : Swift.Equatable {} -extension Capacitor.ResponseType : Swift.Hashable {} -extension Capacitor.ResponseType : Swift.RawRepresentable {} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 4268aaeab..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftinterface deleted file mode 100644 index ed2bea8d6..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,772 +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.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Capacitor -// swift-module-flags-ignorable: -enable-bare-slash-regex -@_exported import Capacitor -import CommonCrypto -import Cordova -import Dispatch -import Foundation -import MobileCoreServices -import Swift -import UIKit -import WebKit -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -@_inheritsConvenienceInitializers @objc(CAPCookiesPlugin) public class CAPCookiesPlugin : Capacitor.CAPPlugin { - @objc override dynamic public func load() - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -public protocol Router { - func route(for path: Swift.String) -> Swift.String - var basePath: Swift.String { get set } -} -public struct CapacitorRouter : Capacitor.Router { - public init() - public var basePath: Swift.String - public func route(for path: Swift.String) -> Swift.String -} -@objc open class CapacitorUrlRequest : ObjectiveC.NSObject, Foundation.URLSessionTaskDelegate { - public var request: Foundation.URLRequest - public var headers: [Swift.String : Swift.String] - public enum CapacitorUrlRequestError : Swift.Error { - case serializationError(Swift.String?) - } - public init(_ url: Foundation.URL, method: Swift.String) - public func getRequestDataAsJson(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsFormUrlEncoded(_ data: any Capacitor.JSValue) throws -> Foundation.Data? - public func getRequestDataAsMultipartFormData(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestDataAsString(_ data: any Capacitor.JSValue) throws -> Foundation.Data - public func getRequestHeader(_ index: Swift.String) -> Any? - public func getRequestData(_ body: any Capacitor.JSValue, _ contentType: Swift.String, _ dataType: Swift.String? = nil) throws -> Foundation.Data? - @available(*, deprecated, message: "Use newer function with passed headers of type [String: Any]") - public func setRequestHeaders(_ headers: [Swift.String : Swift.String]) - public func setRequestHeaders(_ headers: [Swift.String : Any]) - public func setRequestBody(_ body: any Capacitor.JSValue, _ dataType: Swift.String? = nil) throws - public func setContentType(_ data: Swift.String?) - public func setTimeout(_ timeout: Foundation.TimeInterval) - public func getUrlRequest() -> Foundation.URLRequest - @objc open func urlSession(_ session: Foundation.URLSession, task: Foundation.URLSessionTask, willPerformHTTPRedirection response: Foundation.HTTPURLResponse, newRequest request: Foundation.URLRequest, completionHandler: @escaping (Foundation.URLRequest?) -> Swift.Void) - open func getUrlSession(_ call: Capacitor.CAPPluginCall) -> Foundation.URLSession - @objc deinit -} -@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor(unsafe) open class CAPBridgeViewController : UIKit.UIViewController { - @_Concurrency.MainActor(unsafe) final public var bridge: (any Capacitor.CAPBridgeProtocol)? { - get - } - @_Concurrency.MainActor(unsafe) public var webView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var isStatusBarVisible: Swift.Bool - @_Concurrency.MainActor(unsafe) public var statusBarStyle: UIKit.UIStatusBarStyle - @_Concurrency.MainActor(unsafe) public var statusBarAnimation: UIKit.UIStatusBarAnimation - @objc @_Concurrency.MainActor(unsafe) public var supportedOrientations: [Swift.Int] - @_Concurrency.MainActor(unsafe) final public var isNewBinary: Swift.Bool { - get - set - } - @_Concurrency.MainActor(unsafe) @objc override final public func loadView() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic open func canPerformUnwindSegueAction(_ action: ObjectiveC.Selector, from fromViewController: UIKit.UIViewController, withSender sender: Any) -> Swift.Bool - @_Concurrency.MainActor(unsafe) open func instanceDescriptor() -> Capacitor.InstanceDescriptor - @_Concurrency.MainActor(unsafe) open func router() -> any Capacitor.Router - @_Concurrency.MainActor(unsafe) open func webViewConfiguration(for instanceConfiguration: Capacitor.InstanceConfiguration) -> WebKit.WKWebViewConfiguration - @_Concurrency.MainActor(unsafe) open func webView(with frame: CoreFoundation.CGRect, configuration: WebKit.WKWebViewConfiguration) -> WebKit.WKWebView - @_Concurrency.MainActor(unsafe) open func capacitorDidLoad() - @_Concurrency.MainActor(unsafe) final public func loadWebView() - @_Concurrency.MainActor(unsafe) open func setStatusBarDefaults() - @_Concurrency.MainActor(unsafe) open func setScreenOrientationDefaults() - @_Concurrency.MainActor(unsafe) @objc override dynamic open var prefersStatusBarHidden: Swift.Bool { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarStyle: UIKit.UIStatusBarStyle { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic open var preferredStatusBarUpdateAnimation: UIKit.UIStatusBarAnimation { - @objc get - } - @_Concurrency.MainActor(unsafe) open func setStatusBarVisible(_ isStatusBarVisible: Swift.Bool) - @_Concurrency.MainActor(unsafe) open func setStatusBarStyle(_ statusBarStyle: UIKit.UIStatusBarStyle) - @_Concurrency.MainActor(unsafe) open func setStatusBarAnimation(_ statusBarAnimation: UIKit.UIStatusBarAnimation) - @_Concurrency.MainActor(unsafe) @objc override dynamic open var supportedInterfaceOrientations: UIKit.UIInterfaceOrientationMask { - @objc get - } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) - @objc deinit -} -extension Capacitor.CAPBridgeViewController { - @objc @_Concurrency.MainActor(unsafe) dynamic public func getServerBasePath() -> Swift.String - @objc @_Concurrency.MainActor(unsafe) dynamic public func setServerBasePath(path: Swift.String) -} -extension Capacitor.CAPBridgeViewController : Capacitor.CAPBridgeDelegate { - @_Concurrency.MainActor(unsafe) public var bridgedWebView: WebKit.WKWebView? { - get - } - @_Concurrency.MainActor(unsafe) public var bridgedViewController: UIKit.UIViewController? { - get - } -} -@objc public protocol CAPBridgeProtocol : ObjectiveC.NSObjectProtocol { - @objc var viewController: UIKit.UIViewController? { get } - @objc var config: Capacitor.InstanceConfiguration { get } - @objc var webView: WebKit.WKWebView? { get } - @objc var notificationRouter: Capacitor.NotificationRouter { get } - @objc var isSimEnvironment: Swift.Bool { get } - @objc var isDevEnvironment: Swift.Bool { get } - @objc var userInterfaceStyle: UIKit.UIUserInterfaceStyle { get } - @objc var autoRegisterPlugins: Swift.Bool { get } - @objc var statusBarVisible: Swift.Bool { get set } - @objc var statusBarStyle: UIKit.UIStatusBarStyle { get set } - @objc var statusBarAnimation: UIKit.UIStatusBarAnimation { get set } - @objc @available(*, deprecated, renamed: "webView") - func getWebView() -> WebKit.WKWebView? - @objc @available(*, deprecated, renamed: "isSimEnvironment") - func isSimulator() -> Swift.Bool - @objc @available(*, deprecated, renamed: "isDevEnvironment") - func isDevMode() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarVisible") - func getStatusBarVisible() -> Swift.Bool - @objc @available(*, deprecated, renamed: "statusBarStyle") - func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @objc @available(*, deprecated, renamed: "userInterfaceStyle") - func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc @available(*, deprecated, message: "Moved - equivalent is found on config.localURL") - func getLocalUrl() -> Swift.String - @objc @available(*, deprecated, renamed: "savedCall(withID:)") - func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc @available(*, deprecated, renamed: "releaseCall(withID:)") - func releaseCall(callbackId: Swift.String) - @objc func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc func saveCall(_ call: Capacitor.CAPPluginCall) - @objc func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc func releaseCall(withID: Swift.String) - @objc func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc func eval(js: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String) - @objc func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String) - @objc func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - @objc func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc func setServerBasePath(_ path: Swift.String) - @objc func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)?) - @objc func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)?) -} -extension Capacitor.CAPBridgeProtocol { - @available(*, deprecated, message: "Use CAPLog directly") - public func modulePrint(_ plugin: Capacitor.CAPPlugin, _ items: Any...) - public func alert(_ title: Swift.String, _ message: Swift.String, _ buttonTitle: Swift.String = "OK") - @available(*, deprecated, renamed: "statusBarVisible") - public func setStatusBarVisible(_ visible: Swift.Bool) - @available(*, deprecated, renamed: "statusBarStyle") - public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @available(*, deprecated, renamed: "statusBarAnimation") - public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) -} -public enum CapacitorBridgeError : Swift.Error { - case errorExportingCoreJS - public static func == (a: Capacitor.CapacitorBridgeError, b: Capacitor.CapacitorBridgeError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.CustomNSError { - public static var errorDomain: Swift.String { - get - } - public var errorCode: Swift.Int { - get - } - public var errorUserInfo: [Swift.String : Any] { - get - } -} -extension Capacitor.CapacitorBridgeError : Foundation.LocalizedError { - public var errorDescription: Swift.String? { - get - } -} -extension WebKit.WKWebView : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == WebKit.WKWebView { - public var keyboardShouldRequireUserInteraction: Swift.Bool? { - get - } - public func setKeyboardShouldRequireUserInteraction(_ flag: Swift.Bool? = nil) -} -extension Foundation.Data : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == Foundation.Data { - public static func data(base64EncodedOrDataUrl: Swift.String) -> Foundation.Data? -} -@objc(CAPWebViewDelegationHandler) @_Concurrency.MainActor(unsafe) public class WebViewDelegationHandler : ObjectiveC.NSObject, WebKit.WKNavigationDelegate, WebKit.WKUIDelegate, WebKit.WKScriptMessageHandler, UIKit.UIScrollViewDelegate { - @_Concurrency.MainActor(unsafe) public var contentController: WebKit.WKUserContentController { - get - } - @_Concurrency.MainActor(unsafe) public init(bridge: Capacitor.CapacitorBridge? = nil) - @_Concurrency.MainActor(unsafe) public func cleanUp() - @_Concurrency.MainActor(unsafe) public func willLoadWebview(_ webView: WebKit.WKWebView?) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didStartProvisionalNavigation navigation: WebKit.WKNavigation!) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestMediaCapturePermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, type: WebKit.WKMediaCaptureType, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @available(iOS 15, *) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, requestDeviceOrientationAndMotionPermissionFor origin: WebKit.WKSecurityOrigin, initiatedByFrame frame: WebKit.WKFrameInfo, decisionHandler: @escaping (WebKit.WKPermissionDecision) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, decidePolicyFor navigationAction: WebKit.WKNavigationAction, decisionHandler: @escaping (WebKit.WKNavigationActionPolicy) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFinish navigation: WebKit.WKNavigation!) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFail navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, didFailProvisionalNavigation navigation: WebKit.WKNavigation!, withError error: any Swift.Error) - @_Concurrency.MainActor(unsafe) @objc public func webViewWebContentProcessDidTerminate(_ webView: WebKit.WKWebView) - @_Concurrency.MainActor(unsafe) @objc public func userContentController(_ userContentController: WebKit.WKUserContentController, didReceive message: WebKit.WKScriptMessage) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptAlertPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping () -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptConfirmPanelWithMessage message: Swift.String, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.Bool) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, runJavaScriptTextInputPanelWithPrompt prompt: Swift.String, defaultText: Swift.String?, initiatedByFrame frame: WebKit.WKFrameInfo, completionHandler: @escaping (Swift.String?) -> Swift.Void) - @_Concurrency.MainActor(unsafe) @objc public func webView(_ webView: WebKit.WKWebView, createWebViewWith configuration: WebKit.WKWebViewConfiguration, for navigationAction: WebKit.WKNavigationAction, windowFeatures: WebKit.WKWindowFeatures) -> WebKit.WKWebView? - @_Concurrency.MainActor(unsafe) @objc public func scrollViewWillBeginZooming(_ scrollView: UIKit.UIScrollView, with view: UIKit.UIView?) - @objc deinit -} -public protocol JSValue { -} -extension Swift.String : Capacitor.JSValue { -} -extension Swift.Bool : Capacitor.JSValue { -} -extension Swift.Int : Capacitor.JSValue { -} -extension Swift.Float : Capacitor.JSValue { -} -extension Swift.Double : Capacitor.JSValue { -} -extension Foundation.NSNumber : Capacitor.JSValue { -} -extension Foundation.NSNull : Capacitor.JSValue { -} -extension Swift.Array : Capacitor.JSValue { -} -extension Foundation.Date : Capacitor.JSValue { -} -extension Swift.Dictionary : Capacitor.JSValue where Key == Swift.String, Value == any Capacitor.JSValue { -} -public typealias JSObject = [Swift.String : any Capacitor.JSValue] -public typealias JSArray = [any Capacitor.JSValue] -public protocol JSStringContainer { - func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String - func getString(_ key: Swift.String) -> Swift.String? -} -extension Capacitor.JSStringContainer { - public func getString(_ key: Swift.String, _ defaultValue: Swift.String) -> Swift.String -} -public protocol JSBoolContainer { - func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - func getBool(_ key: Swift.String) -> Swift.Bool? -} -extension Capacitor.JSBoolContainer { - public func getBool(_ key: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool -} -public protocol JSIntContainer { - func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - func getInt(_ key: Swift.String) -> Swift.Int? -} -extension Capacitor.JSIntContainer { - public func getInt(_ key: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int -} -public protocol JSFloatContainer { - func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float - func getFloat(_ key: Swift.String) -> Swift.Float? -} -extension Capacitor.JSFloatContainer { - public func getFloat(_ key: Swift.String, _ defaultValue: Swift.Float) -> Swift.Float -} -public protocol JSDoubleContainer { - func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double - func getDouble(_ key: Swift.String) -> Swift.Double? -} -extension Capacitor.JSDoubleContainer { - public func getDouble(_ key: Swift.String, _ defaultValue: Swift.Double) -> Swift.Double -} -public protocol JSDateContainer { - func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date - func getDate(_ key: Swift.String) -> Foundation.Date? -} -extension Capacitor.JSDateContainer { - public func getDate(_ key: Swift.String, _ defaultValue: Foundation.Date) -> Foundation.Date -} -public protocol JSArrayContainer { - func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? - func getArray(_ key: Swift.String) -> Capacitor.JSArray? -} -extension Capacitor.JSArrayContainer { - public func getArray(_ key: Swift.String, _ defaultValue: Capacitor.JSArray) -> Capacitor.JSArray - public func getArray(_ key: Swift.String, _ ofType: T.Type) -> [T]? -} -public protocol JSObjectContainer { - func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject - func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -extension Capacitor.JSObjectContainer { - public func getObject(_ key: Swift.String, _ defaultValue: Capacitor.JSObject) -> Capacitor.JSObject -} -public protocol JSValueContainer : Capacitor.JSArrayContainer, Capacitor.JSBoolContainer, Capacitor.JSDateContainer, Capacitor.JSDoubleContainer, Capacitor.JSFloatContainer, Capacitor.JSIntContainer, Capacitor.JSObjectContainer, Capacitor.JSStringContainer { - static var jsDateFormatter: Foundation.ISO8601DateFormatter { get } - var jsObjectRepresentation: Capacitor.JSObject { get } -} -extension Capacitor.JSValueContainer { - public func getValue(_ key: Swift.String) -> (any Capacitor.JSValue)? - @available(*, renamed: "getValue(_:)", message: "All values returned conform to JSValue, use getValue(_:) instead.") - public func getAny(_ key: Swift.String) -> Any? - public func getString(_ key: Swift.String) -> Swift.String? - public func getBool(_ key: Swift.String) -> Swift.Bool? - public func getInt(_ key: Swift.String) -> Swift.Int? - public func getFloat(_ key: Swift.String) -> Swift.Float? - public func getDouble(_ key: Swift.String) -> Swift.Double? - public func getDate(_ key: Swift.String) -> Foundation.Date? - public func getArray(_ key: Swift.String) -> Capacitor.JSArray? - public func getObject(_ key: Swift.String) -> Capacitor.JSObject? -} -public enum JSTypes { -} -extension Capacitor.JSTypes { - public static func coerceDictionaryToJSObject(_ dictionary: Foundation.NSDictionary?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceDictionaryToJSObject(_ dictionary: [Swift.AnyHashable : Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSObject? - public static func coerceArrayToJSArray(_ array: [Any]?, formattingDatesAsStrings: Swift.Bool = false) -> Capacitor.JSArray? -} -@objc public class CapacitorBridge : ObjectiveC.NSObject, Capacitor.CAPBridgeProtocol { - public static var isDevEnvironment: Swift.Bool { - get - } - @objc public var webView: WebKit.WKWebView? { - @objc get - } - @objc final public let autoRegisterPlugins: Swift.Bool - @objc public var notificationRouter: Capacitor.NotificationRouter - @objc public var isSimEnvironment: Swift.Bool { - @objc get - } - @objc public var isDevEnvironment: Swift.Bool { - @objc get - } - @objc public var userInterfaceStyle: UIKit.UIUserInterfaceStyle { - @objc get - } - @objc public var statusBarVisible: Swift.Bool { - @objc get - @objc set - } - @objc public var statusBarStyle: UIKit.UIStatusBarStyle { - @objc get - @objc set - } - @objc public var statusBarAnimation: UIKit.UIStatusBarAnimation { - @objc get - @objc set - } - public static let capacitorSite: Swift.String - public static let fileStartIdentifier: Swift.String - public static let defaultScheme: Swift.String - public var webViewAssetHandler: Capacitor.WebViewAssetHandler { - get - } - public var webViewDelegationHandler: Capacitor.WebViewDelegationHandler { - get - } - weak public var bridgeDelegate: (any Capacitor.CAPBridgeDelegate)? { - get - } - @objc public var viewController: UIKit.UIViewController? { - @objc get - } - @objc public var config: Capacitor.InstanceConfiguration - @objc public func getWebView() -> WebKit.WKWebView? - @objc public func isSimulator() -> Swift.Bool - @objc public func isDevMode() -> Swift.Bool - @objc public func getStatusBarVisible() -> Swift.Bool - @nonobjc public func setStatusBarVisible(_ visible: Swift.Bool) - @objc public func getStatusBarStyle() -> UIKit.UIStatusBarStyle - @nonobjc public func setStatusBarStyle(_ style: UIKit.UIStatusBarStyle) - @objc public func getUserInterfaceStyle() -> UIKit.UIUserInterfaceStyle - @objc public func getLocalUrl() -> Swift.String - @nonobjc public func setStatusBarAnimation(_ animation: UIKit.UIStatusBarAnimation) - @objc public func setServerBasePath(_ path: Swift.String) - public init(with configuration: Capacitor.InstanceConfiguration, delegate bridgeDelegate: any Capacitor.CAPBridgeDelegate, cordovaConfiguration: Cordova.CDVConfigParser, assetHandler: Capacitor.WebViewAssetHandler, delegationHandler: Capacitor.WebViewDelegationHandler, autoRegisterPlugins: Swift.Bool = true) - @objc deinit - @objc public func registerPluginType(_ pluginType: Capacitor.CAPPlugin.Type) - @objc public func registerPluginInstance(_ pluginInstance: Capacitor.CAPPlugin) - @objc public func plugin(withName: Swift.String) -> Capacitor.CAPPlugin? - @objc public func saveCall(_ call: Capacitor.CAPPluginCall) - @objc public func savedCall(withID: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(_ call: Capacitor.CAPPluginCall) - @objc public func releaseCall(withID: Swift.String) - @objc public func getSavedCall(_ callbackId: Swift.String) -> Capacitor.CAPPluginCall? - @objc public func releaseCall(callbackId: Swift.String) - @objc public func evalWithPlugin(_ plugin: Capacitor.CAPPlugin, js: Swift.String) - @objc public func eval(js: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String) - @objc public func triggerJSEvent(eventName: Swift.String, target: Swift.String, data: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String) - @objc public func triggerWindowJSEvent(eventName: Swift.String, data: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String) - @objc public func triggerDocumentJSEvent(eventName: Swift.String, data: Swift.String) - public func logToJs(_ message: Swift.String, _ level: Swift.String = "log") - @objc public func localURL(fromWebURL webURL: Foundation.URL?) -> Foundation.URL? - @objc public func portablePath(fromLocalURL localURL: Foundation.URL?) -> Foundation.URL? - @objc public func showAlertWith(title: Swift.String, message: Swift.String, buttonTitle: Swift.String) - @objc public func presentVC(_ viewControllerToPresent: UIKit.UIViewController, animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @objc public func dismissVC(animated flag: Swift.Bool, completion: (() -> Swift.Void)? = nil) -} -@_inheritsConvenienceInitializers @objc open class CAPInstancePlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@objc @_inheritsConvenienceInitializers public class CapacitorWKCookieObserver : ObjectiveC.NSObject, WebKit.WKHTTPCookieStoreObserver { - @objc public func cookiesDidChange(in cookieStore: WebKit.WKHTTPCookieStore) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CapacitorCookieManager { - public func getServerUrl() -> Foundation.URL? - public func getServerUrl(_ urlString: Swift.String?) -> Foundation.URL? - public func encode(_ value: Swift.String) -> Swift.String - public func decode(_ value: Swift.String) -> Swift.String - public func setCookie(_ domain: Swift.String, _ action: Swift.String) - public func setCookie(_ url: Foundation.URL, _ key: Swift.String, _ value: Swift.String, _ expires: Swift.String?, _ path: Swift.String?) - public func getCookiesAsMap(_ url: Foundation.URL) -> [Swift.String : Swift.String] - public func getCookies() -> Swift.String - public func deleteCookie(_ url: Foundation.URL, _ key: Swift.String) - public func clearCookies(_ url: Foundation.URL) - public func clearAllCookies() - public func syncCookiesToWebView() - @objc deinit -} -@_inheritsConvenienceInitializers @objc public class CAPFileManager : ObjectiveC.NSObject { - @available(*, deprecated, message: "Use portablePath(fromLocalURL:) on the Bridge") - public static func getPortablePath(host: Swift.String, uri: Foundation.URL?) -> Swift.String? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @available(*, deprecated, message: "'statusBarTappedNotification' has been moved to Notification.Name.capacitorStatusBarTapped. 'getLastUrl' and application delegate methods have been moved to ApplicationDelegateProxy.") -@objc public class CAPBridge : ObjectiveC.NSObject { - @objc public static let statusBarTappedNotification: Foundation.Notification - public static func getLastUrl() -> Foundation.URL? - public static func handleOpenUrl(_ url: Foundation.URL, _ options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - public static func handleContinueActivity(_ userActivity: Foundation.NSUserActivity, _ restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - public static func handleAppBecameActive(_ application: UIKit.UIApplication) - @objc override dynamic public init() - @objc deinit -} -extension UIKit.UIColor : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper -} -extension Capacitor.CapacitorExtensionTypeWrapper where T : UIKit.UIColor { - public static func color(r: Swift.Int, g: Swift.Int, b: Swift.Int, a: Swift.Int = 0xFF) -> UIKit.UIColor - public static func color(argb: Swift.UInt32) -> UIKit.UIColor - public static func color(fromHex: Swift.String) -> UIKit.UIColor? -} -public typealias PluginCallResultData = [Swift.String : Any] -public enum PluginCallResult { - case dictionary(Capacitor.PluginCallResultData) -} -@objc public class CAPPluginCallResult : ObjectiveC.NSObject { - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:) public init(_ data: Capacitor.PluginCallResultData?) - @objc deinit -} -@objc public class CAPPluginCallError : ObjectiveC.NSObject { - @objc final public let message: Swift.String - @objc final public let code: Swift.String? - @objc final public let error: (any Swift.Error)? - final public let resultData: Capacitor.PluginCallResult? - @objc public var data: Capacitor.PluginCallResultData? { - @objc get - } - @objc(init:code:error:data:) public init(message: Swift.String, code: Swift.String?, error: (any Swift.Error)?, data: Capacitor.PluginCallResultData?) - @objc deinit -} -extension Foundation.NSNotification.Name { - public static let capacitorOpenURL: Foundation.Notification.Name - public static let capacitorOpenUniversalLink: Foundation.Notification.Name - public static let capacitorContinueActivity: Foundation.Notification.Name - public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc extension Foundation.NSNotification { - @objc public static let capacitorOpenURL: Foundation.Notification.Name - @objc public static let capacitorOpenUniversalLink: Foundation.Notification.Name - @objc public static let capacitorContinueActivity: Foundation.Notification.Name - @objc public static let capacitorDidRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDidFailToRegisterForRemoteNotifications: Foundation.Notification.Name - @objc public static let capacitorDecidePolicyForNavigationAction: Foundation.Notification.Name - @objc public static let capacitorStatusBarTapped: Foundation.Notification.Name -} -@objc public enum CAPNotifications : Swift.Int { - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenURL'") - case URLOpen - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorOpenUniversalLink'") - case UniversalLinkOpen - @available(*, deprecated, message: "Notification.Name.capacitorContinueActivity'") - case ContinueActivity - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidRegisterForRemoteNotifications'") - case DidRegisterForRemoteNotificationsWithDeviceToken - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDidFailToRegisterForRemoteNotifications'") - case DidFailToRegisterForRemoteNotificationsWithError - @available(*, deprecated, message: "renamed to 'Notification.Name.capacitorDecidePolicyForNavigationAction'") - case DecidePolicyForNavigationAction - public func name() -> Swift.String - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers public class JSDate { - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias JSResultBody = [Swift.String : Any] -@_inheritsConvenienceInitializers @objc(CAPNotificationRouter) public class NotificationRouter : ObjectiveC.NSObject, UserNotifications.UNUserNotificationCenterDelegate { - weak public var pushNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - weak public var localNotificationHandler: (any Capacitor.NotificationHandlerProtocol)? { - get - set - } - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) - @objc override dynamic public init() - @objc deinit -} -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginCallErrorData = [Swift.String : Any] -@available(*, deprecated, renamed: "PluginCallResultData") -public typealias PluginResultData = [Swift.String : Any] -extension Capacitor.CAPPluginCall : Capacitor.JSValueContainer { - public var jsObjectRepresentation: Capacitor.JSObject { - get - } -} -@objc extension Capacitor.CAPPluginCall { - @objc dynamic public var dictionaryRepresentation: Foundation.NSDictionary { - @objc get - } - @objc public static var jsDateFormatter: Foundation.ISO8601DateFormatter -} -@objc extension Capacitor.CAPPluginCall { - @objc @available(*, deprecated, message: "Presence of a key should not be considered significant. Use typed accessors to check the value instead.") - dynamic public func hasOption(_ key: Swift.String) -> Swift.Bool - @objc @available(*, deprecated, renamed: "resolve()") - dynamic public func success() - @objc @available(*, deprecated, renamed: "resolve") - dynamic public func success(_ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func resolve() - @objc dynamic public func resolve(_ data: Capacitor.PluginCallResultData = [:]) - @objc @available(*, deprecated, renamed: "reject") - dynamic public func error(_ message: Swift.String, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData = [:]) - @objc dynamic public func reject(_ message: Swift.String, _ code: Swift.String? = nil, _ error: (any Swift.Error)? = nil, _ data: Capacitor.PluginCallResultData? = nil) - @objc dynamic public func unimplemented() - @objc dynamic public func unimplemented(_ message: Swift.String) - @objc dynamic public func unavailable() - @objc dynamic public func unavailable(_ message: Swift.String) -} -public protocol CapacitorExtension { - associatedtype CapacitorType - var capacitor: Self.CapacitorType { get } - static var capacitor: Self.CapacitorType.Type { get } -} -extension Capacitor.CapacitorExtension { - public var capacitor: Capacitor.CapacitorExtensionTypeWrapper { - get - } - public static var capacitor: Capacitor.CapacitorExtensionTypeWrapper.Type { - get - } -} -public struct CapacitorExtensionTypeWrapper { -} -public enum ResponseType : Swift.String { - case arrayBuffer - case blob - case document - case json - case text - public static let `default`: Capacitor.ResponseType - public init(string: Swift.String?) - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers open class HttpRequestHandler { - open class CapacitorHttpRequestBuilder { - public var url: Foundation.URL? - public var method: Swift.String? - public var params: [Swift.String : Swift.String]? - open var request: Capacitor.CapacitorUrlRequest? - public init() - public func setUrl(_ urlString: Swift.String) throws -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setMethod(_ method: Swift.String) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func setUrlParams(_ params: [Swift.String : Any]) -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - open func openConnection() -> Capacitor.HttpRequestHandler.CapacitorHttpRequestBuilder - public func build() -> Capacitor.CapacitorUrlRequest - @objc deinit - } - public static func setCookiesFromResponse(_ response: Foundation.HTTPURLResponse, _ config: Capacitor.InstanceConfiguration?) - public static func buildResponse(_ data: Foundation.Data?, _ response: Foundation.HTTPURLResponse, responseType: Capacitor.ResponseType = .default) -> [Swift.String : Any] - public static func request(_ call: Capacitor.CAPPluginCall, _ httpMethod: Swift.String?, _ config: Capacitor.InstanceConfiguration?) throws - @objc deinit -} -extension Swift.Array : Capacitor.CapacitorExtension { - public typealias CapacitorType = Capacitor.CapacitorExtensionTypeWrapper> -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [any Capacitor.JSValue] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -extension Capacitor.CapacitorExtensionTypeWrapper where T == [(any Capacitor.JSValue)?] { - public func replacingNullValues() -> [(any Capacitor.JSValue)?] - public func replacingOptionalValues() -> [any Capacitor.JSValue] -} -@objc(CAPNotificationHandlerProtocol) public protocol NotificationHandlerProtocol { - @objc func willPresent(notification: UserNotifications.UNNotification) -> UserNotifications.UNNotificationPresentationOptions - @objc func didReceive(response: UserNotifications.UNNotificationResponse) -} -extension Foundation.Data { - public var sha256: Swift.String { - get - } -} -@_hasMissingDesignatedInitializers public class AppUUID { - public static func getAppUUID() -> Swift.String - public static func regenerateAppUUID() - @objc deinit -} -@objc(CAPWebViewAssetHandler) public class WebViewAssetHandler : ObjectiveC.NSObject, WebKit.WKURLSchemeHandler { - public init(router: any Capacitor.Router) - public func setAssetPath(_ assetPath: Swift.String) - public func setServerUrl(_ serverUrl: Foundation.URL?) - @objc public func webView(_ webView: WebKit.WKWebView, start urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc public func webView(_ webView: WebKit.WKWebView, stop urlSchemeTask: any WebKit.WKURLSchemeTask) - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPHttpPlugin) public class CAPHttpPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers @objc public class PluginConfig : ObjectiveC.NSObject { - @objc public func getString(_ configKey: Swift.String, _ defaultValue: Swift.String? = nil) -> Swift.String? - @objc public func getBoolean(_ configKey: Swift.String, _ defaultValue: Swift.Bool) -> Swift.Bool - @objc public func getInt(_ configKey: Swift.String, _ defaultValue: Swift.Int) -> Swift.Int - public func getArray(_ configKey: Swift.String, _ defaultValue: Capacitor.JSArray? = nil) -> Capacitor.JSArray? - public func getObject(_ configKey: Swift.String) -> Capacitor.JSObject? - @objc public func isEmpty() -> Swift.Bool - public func getConfigJSON() -> Capacitor.JSObject - @objc deinit -} -public protocol CAPBridgeDelegate : AnyObject { - var bridgedWebView: WebKit.WKWebView? { get } - var bridgedViewController: UIKit.UIViewController? { get } -} -public struct KeyPath { -} -extension Capacitor.KeyPath : Swift.ExpressibleByStringLiteral { - public init(stringLiteral value: Swift.String) - public init(unicodeScalarLiteral value: Swift.String) - public init(extendedGraphemeClusterLiteral value: Swift.String) - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String -} -extension Swift.Dictionary where Key == Swift.String, Value == any Capacitor.JSValue { - public subscript(keyPath keyPath: Capacitor.KeyPath) -> (any Capacitor.JSValue)? { - get - } -} -@_inheritsConvenienceInitializers @objc(CAPConsolePlugin) public class CAPConsolePlugin : Capacitor.CAPPlugin { - @objc public func log(_ call: Capacitor.CAPPluginCall) - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -@_hasMissingDesignatedInitializers public class CAPLog { - public static var enableLogging: Swift.Bool - public static func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n") - @objc deinit -} -extension Capacitor.InstanceConfiguration { - @objc dynamic public var appStartFileURL: Foundation.URL { - @objc get - } - @objc dynamic public var appStartServerURL: Foundation.URL { - @objc get - } - @objc dynamic public var errorPathURL: Foundation.URL? { - @objc get - } - @available(*, deprecated, message: "Use getPluginConfig") - @objc dynamic public func getPluginConfigValue(_ pluginId: Swift.String, _ configKey: Swift.String) -> Any? - @objc dynamic public func getPluginConfig(_ pluginId: Swift.String) -> Capacitor.PluginConfig - @objc dynamic public func shouldAllowNavigation(to host: Swift.String) -> Swift.Bool - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getValue(_ key: Swift.String) -> Any? - @available(*, deprecated, message: "Use direct property accessors") - @objc dynamic public func getString(_ key: Swift.String) -> Swift.String? -} -public enum InstanceDescriptorDefaults { - public static let scheme: Swift.String - public static let hostname: Swift.String -} -extension Capacitor.InstanceDescriptor { - @objc dynamic public var cordovaDeployDisabled: Swift.Bool { - @objc get - } - @objc dynamic public func normalize() -} -@_inheritsConvenienceInitializers @objc(CAPApplicationDelegateProxy) @_Concurrency.MainActor(unsafe) public class ApplicationDelegateProxy : ObjectiveC.NSObject, UIKit.UIApplicationDelegate { - @_Concurrency.MainActor(unsafe) public static let shared: Capacitor.ApplicationDelegateProxy - @_Concurrency.MainActor(unsafe) public var lastURL: Foundation.URL? { - get - } - @_Concurrency.MainActor(unsafe) @objc public func application(_ app: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any] = [:]) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity, restorationHandler: @escaping ([any UIKit.UIUserActivityRestoring]?) -> Swift.Void) -> Swift.Bool - @_Concurrency.MainActor(unsafe) @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(CAPWebViewPlugin) public class CAPWebViewPlugin : Capacitor.CAPPlugin { - @available(*, deprecated, message: "This initializer is deprecated and is not suggested for use. Any data set through this init method will be overridden when it is loaded on the bridge.") - @objc override dynamic public init(bridge: any Capacitor.CAPBridgeProtocol, pluginId: Swift.String, pluginName: Swift.String) - @objc override dynamic public init() - @objc deinit -} -extension Capacitor.CapacitorBridgeError : Swift.Equatable {} -extension Capacitor.CapacitorBridgeError : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.Equatable {} -extension Capacitor.CAPNotifications : Swift.Hashable {} -extension Capacitor.CAPNotifications : Swift.RawRepresentable {} -extension Capacitor.ResponseType : Swift.Equatable {} -extension Capacitor.ResponseType : Swift.Hashable {} -extension Capacitor.ResponseType : Swift.RawRepresentable {} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/module.modulemap b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/module.modulemap deleted file mode 100644 index 58295716b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/Modules/module.modulemap +++ /dev/null @@ -1,13 +0,0 @@ -framework module Capacitor { - umbrella header "Capacitor.h" - exclude header "CAPBridgedJSTypes.h" - exclude header "CAPBridgeViewController+CDVScreenOrientationDelegate.h" - - export * - module * { export * } -} - -module Capacitor.Swift { - header "Capacitor-Swift.h" - requires objc -} diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/PrivateHeaders/CAPBridgedJSTypes.h b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/PrivateHeaders/CAPBridgedJSTypes.h deleted file mode 100644 index 516c8648b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/PrivateHeaders/CAPBridgedJSTypes.h +++ /dev/null @@ -1,18 +0,0 @@ -// Convenience methods for bridging to/from JavaScript types. Deliberately hidden from -// Swift by omission (to avoid collisions with Swift protocols), use -// `#import ` if working in Objective-C. - -#import -#import - -@protocol BridgedJSValueContainerImplementation -@required -- (NSString * _Nullable)getString:(NSString * _Nonnull)key defaultValue:(NSString * _Nullable)defaultValue; -- (NSDate * _Nullable)getDate:(NSString * _Nonnull)key defaultValue:(NSDate * _Nullable)defaultValue; -- (NSDictionary * _Nullable)getObject:(NSString * _Nonnull)key defaultValue:(NSDictionary * _Nullable)defaultValue; -- (NSNumber * _Nullable)getNumber:(NSString * _Nonnull)key defaultValue:(NSNumber * _Nullable)defaultValue; -- (BOOL)getBool:(NSString * _Nonnull)key defaultValue:(BOOL)defaultValue; -@end - -@interface CAPPluginCall (BridgedJSProtocol) -@end diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/_CodeSignature/CodeResources b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/_CodeSignature/CodeResources deleted file mode 100644 index cc91e0e5b..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,333 +0,0 @@ - - - - - files - - Headers/CAPBridgedPlugin.h - - lzaPuGcJYUbF7VbdY3zNr8gpVS4= - - Headers/CAPInstanceConfiguration.h - - Ifls1r902Dr556tfRhrN6okcnvE= - - Headers/CAPInstanceDescriptor.h - - u5fknACHvIIN/POCfaXO0o+LFYM= - - Headers/CAPPlugin.h - - r0BD8tNV2ltBoRLX3o4ie7uO+oc= - - Headers/CAPPluginCall.h - - 8M3eKY/NK8dSYWNnX4mkPsLjlfE= - - Headers/CAPPluginMethod.h - - jTlzWU8JiCrlhtdwLqKhvJZEVV4= - - Headers/Capacitor-Swift.h - - BCyQ94sUZAni2BX7CBI2PiJ4etI= - - Headers/Capacitor.h - - tR1mqjJP1KCrzXVaWFk3al9TzFo= - - Info.plist - - +eylimuJGR1gl5ds1ob42w7PqE4= - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.abi.json - - BKk4nAjak7cZJ/+pcZ+4pM7M1Nw= - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - LwICQ6Ne1JID0oYEkz7z5pRr1e0= - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - mhNzpV0vOMfOfpCBVlPsbSLER64= - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - LwICQ6Ne1JID0oYEkz7z5pRr1e0= - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - LWnvTmAuwXqAwqJo9KcpGstl0u8= - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.abi.json - - BKk4nAjak7cZJ/+pcZ+4pM7M1Nw= - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - pbk8bYfcESgQB6mxQNrj9aHUNxY= - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - l6yWZE4LSxDDM22D2tw4nTjEz6o= - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - pbk8bYfcESgQB6mxQNrj9aHUNxY= - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - 3YaJYputceUbGjUtpRqYV8RJ8Y4= - - Modules/module.modulemap - - HwBFOXGWEYSPcuHlvY3ZONAQ8ro= - - PrivateHeaders/CAPBridgedJSTypes.h - - fOG8F1FXIe7AaQm1OrM6OUO+GFA= - - native-bridge.js - - tRxh3PdA7s1fA/Ut2CWT2RtXPiU= - - - files2 - - Headers/CAPBridgedPlugin.h - - hash2 - - ulBjZHJNswFJHqLJgW9J4t2CZvnDFA5GlkoDXj004k0= - - - Headers/CAPInstanceConfiguration.h - - hash2 - - 31FUY/Ne7s91r0G1kDWLR8EfOsKBr76eSehmDpeRAts= - - - Headers/CAPInstanceDescriptor.h - - hash2 - - nvCeBn4PR8vGIWgS8pVxA+Wd8OlGfp0DFPSqE0T8b08= - - - Headers/CAPPlugin.h - - hash2 - - xzq+z8fkGfvWPE2TZID6phrJryfQHbUG0nK4Fny7liY= - - - Headers/CAPPluginCall.h - - hash2 - - vKZKPbPmIrkJzTyniy2fMT36+kazUAo49UwfNXe7sOU= - - - Headers/CAPPluginMethod.h - - hash2 - - yGrnNzp0ZBkOMzKrSt2X18CRJU4fKLBnsZicWJ32LiU= - - - Headers/Capacitor-Swift.h - - hash2 - - fpNMOdacpZUuBD5NEm69umTvOOzVGpttQ9WBUe2BtKs= - - - Headers/Capacitor.h - - hash2 - - CdZqCiNDByLbzcGH2CxfosW5/NqOKvvqJ/qI+tj4gnY= - - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash2 - - Lb/uyY+SmSeBaqejRt2X+t8yy/2MCPAsyEnbyEVD420= - - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash2 - - zkOXXcw4CBq334wmwA/9VBTilGS6pXrDt61PDdNB9IE= - - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash2 - - YxRaNoR7NZt+oaIi80R4GYRmOCVUcSk0esyduem0jUk= - - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash2 - - zkOXXcw4CBq334wmwA/9VBTilGS6pXrDt61PDdNB9IE= - - - Modules/Capacitor.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - hash2 - - KQMkFNoUv+gG1cEz2elAToYoWKWOd5r9L/obIIMRRLI= - - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash2 - - Lb/uyY+SmSeBaqejRt2X+t8yy/2MCPAsyEnbyEVD420= - - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash2 - - rSZnlmecPWa6PxodrSsxmJaQZHud360EDTyRsSC0hl0= - - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash2 - - GohlZCSixOTLTI38kW3XPcJ/q89qkW6MuTSXrznRnBU= - - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash2 - - rSZnlmecPWa6PxodrSsxmJaQZHud360EDTyRsSC0hl0= - - - Modules/Capacitor.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - hash2 - - B3wz6VROOngmHEtIME+sbuN6fcWmKmEEScvHwT/g3sY= - - - Modules/module.modulemap - - hash2 - - yYXmhA6RnG5JRfp4l6WM18phJSTJC+whgllQDyEM5CU= - - - PrivateHeaders/CAPBridgedJSTypes.h - - hash2 - - nZmVpzd69Ne9oUuwvB9CgPrvFMmVY4N5lK3muza6ptQ= - - - native-bridge.js - - hash2 - - kvNW4AfJMemId1B12+BSgZo0EBGWG0HlZglHE6WI6bA= - - - - 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/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/native-bridge.js b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/native-bridge.js deleted file mode 100644 index 58d694077..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/Capacitor.framework/native-bridge.js +++ /dev/null @@ -1,930 +0,0 @@ - -/*! Capacitor: https://capacitorjs.com/ - MIT License */ -/* Generated File. Do not edit. */ - -var nativeBridge = (function (exports) { - 'use strict'; - - var ExceptionCode; - (function (ExceptionCode) { - /** - * API is not implemented. - * - * This usually means the API can't be used because it is not implemented for - * the current platform. - */ - ExceptionCode["Unimplemented"] = "UNIMPLEMENTED"; - /** - * API is not available. - * - * This means the API can't be used right now because: - * - it is currently missing a prerequisite, such as network connectivity - * - it requires a particular platform or browser version - */ - ExceptionCode["Unavailable"] = "UNAVAILABLE"; - })(ExceptionCode || (ExceptionCode = {})); - class CapacitorException extends Error { - constructor(message, code, data) { - super(message); - this.message = message; - this.code = code; - this.data = data; - } - } - - // For removing exports for iOS/Android, keep let for reassignment - // eslint-disable-next-line - let dummy = {}; - const readFileAsBase64 = (file) => new Promise((resolve, reject) => { - const reader = new FileReader(); - reader.onloadend = () => { - const data = reader.result; - resolve(btoa(data)); - }; - reader.onerror = reject; - reader.readAsBinaryString(file); - }); - const convertFormData = async (formData) => { - const newFormData = []; - for (const pair of formData.entries()) { - const [key, value] = pair; - if (value instanceof File) { - const base64File = await readFileAsBase64(value); - newFormData.push({ - key, - value: base64File, - type: 'base64File', - contentType: value.type, - fileName: value.name, - }); - } - else { - newFormData.push({ key, value, type: 'string' }); - } - } - return newFormData; - }; - const convertBody = async (body) => { - if (body instanceof FormData) { - const formData = await convertFormData(body); - const boundary = `${Date.now()}`; - return { - data: formData, - type: 'formData', - headers: { - 'Content-Type': `multipart/form-data; boundary=--${boundary}`, - }, - }; - } - else if (body instanceof File) { - const fileData = await readFileAsBase64(body); - return { - data: fileData, - type: 'file', - headers: { 'Content-Type': body.type }, - }; - } - return { data: body, type: 'json' }; - }; - const initBridge = (w) => { - const getPlatformId = (win) => { - var _a, _b; - if (win === null || win === void 0 ? void 0 : win.androidBridge) { - return 'android'; - } - else if ((_b = (_a = win === null || win === void 0 ? void 0 : win.webkit) === null || _a === void 0 ? void 0 : _a.messageHandlers) === null || _b === void 0 ? void 0 : _b.bridge) { - return 'ios'; - } - else { - return 'web'; - } - }; - const convertFileSrcServerUrl = (webviewServerUrl, filePath) => { - if (typeof filePath === 'string') { - if (filePath.startsWith('/')) { - return webviewServerUrl + '/_capacitor_file_' + filePath; - } - else if (filePath.startsWith('file://')) { - return (webviewServerUrl + filePath.replace('file://', '/_capacitor_file_')); - } - else if (filePath.startsWith('content://')) { - return (webviewServerUrl + - filePath.replace('content:/', '/_capacitor_content_')); - } - } - return filePath; - }; - const initEvents = (win, cap) => { - cap.addListener = (pluginName, eventName, callback) => { - const callbackId = cap.nativeCallback(pluginName, 'addListener', { - eventName: eventName, - }, callback); - return { - remove: async () => { - var _a; - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.debug('Removing listener', pluginName, eventName); - cap.removeListener(pluginName, callbackId, eventName, callback); - }, - }; - }; - cap.removeListener = (pluginName, callbackId, eventName, callback) => { - cap.nativeCallback(pluginName, 'removeListener', { - callbackId: callbackId, - eventName: eventName, - }, callback); - }; - cap.createEvent = (eventName, eventData) => { - const doc = win.document; - if (doc) { - const ev = doc.createEvent('Events'); - ev.initEvent(eventName, false, false); - if (eventData && typeof eventData === 'object') { - for (const i in eventData) { - // eslint-disable-next-line no-prototype-builtins - if (eventData.hasOwnProperty(i)) { - ev[i] = eventData[i]; - } - } - } - return ev; - } - return null; - }; - cap.triggerEvent = (eventName, target, eventData) => { - const doc = win.document; - const cordova = win.cordova; - eventData = eventData || {}; - const ev = cap.createEvent(eventName, eventData); - if (ev) { - if (target === 'document') { - if (cordova === null || cordova === void 0 ? void 0 : cordova.fireDocumentEvent) { - cordova.fireDocumentEvent(eventName, eventData); - return true; - } - else if (doc === null || doc === void 0 ? void 0 : doc.dispatchEvent) { - return doc.dispatchEvent(ev); - } - } - else if (target === 'window' && win.dispatchEvent) { - return win.dispatchEvent(ev); - } - else if (doc === null || doc === void 0 ? void 0 : doc.querySelector) { - const targetEl = doc.querySelector(target); - if (targetEl) { - return targetEl.dispatchEvent(ev); - } - } - } - return false; - }; - win.Capacitor = cap; - }; - const initLegacyHandlers = (win, cap) => { - // define cordova if it's not there already - win.cordova = win.cordova || {}; - const doc = win.document; - const nav = win.navigator; - if (nav) { - nav.app = nav.app || {}; - nav.app.exitApp = () => { - var _a; - if (!((_a = cap.Plugins) === null || _a === void 0 ? void 0 : _a.App)) { - win.console.warn('App plugin not installed'); - } - else { - cap.nativeCallback('App', 'exitApp', {}); - } - }; - } - if (doc) { - const docAddEventListener = doc.addEventListener; - doc.addEventListener = (...args) => { - var _a; - const eventName = args[0]; - const handler = args[1]; - if (eventName === 'deviceready' && handler) { - Promise.resolve().then(handler); - } - else if (eventName === 'backbutton' && cap.Plugins.App) { - // Add a dummy listener so Capacitor doesn't do the default - // back button action - if (!((_a = cap.Plugins) === null || _a === void 0 ? void 0 : _a.App)) { - win.console.warn('App plugin not installed'); - } - else { - cap.Plugins.App.addListener('backButton', () => { - // ignore - }); - } - } - return docAddEventListener.apply(doc, args); - }; - } - // deprecated in v3, remove from v4 - cap.platform = cap.getPlatform(); - cap.isNative = cap.isNativePlatform(); - win.Capacitor = cap; - }; - const initVendor = (win, cap) => { - const Ionic = (win.Ionic = win.Ionic || {}); - const IonicWebView = (Ionic.WebView = Ionic.WebView || {}); - const Plugins = cap.Plugins; - IonicWebView.getServerBasePath = (callback) => { - var _a; - (_a = Plugins === null || Plugins === void 0 ? void 0 : Plugins.WebView) === null || _a === void 0 ? void 0 : _a.getServerBasePath().then((result) => { - callback(result.path); - }); - }; - IonicWebView.setServerBasePath = (path) => { - var _a; - (_a = Plugins === null || Plugins === void 0 ? void 0 : Plugins.WebView) === null || _a === void 0 ? void 0 : _a.setServerBasePath({ path }); - }; - IonicWebView.persistServerBasePath = () => { - var _a; - (_a = Plugins === null || Plugins === void 0 ? void 0 : Plugins.WebView) === null || _a === void 0 ? void 0 : _a.persistServerBasePath(); - }; - IonicWebView.convertFileSrc = (url) => cap.convertFileSrc(url); - win.Capacitor = cap; - win.Ionic.WebView = IonicWebView; - }; - const initLogger = (win, cap) => { - const BRIDGED_CONSOLE_METHODS = [ - 'debug', - 'error', - 'info', - 'log', - 'trace', - 'warn', - ]; - const createLogFromNative = (c) => (result) => { - if (isFullConsole(c)) { - const success = result.success === true; - const tagStyles = success - ? 'font-style: italic; font-weight: lighter; color: gray' - : 'font-style: italic; font-weight: lighter; color: red'; - c.groupCollapsed('%cresult %c' + - result.pluginId + - '.' + - result.methodName + - ' (#' + - result.callbackId + - ')', tagStyles, 'font-style: italic; font-weight: bold; color: #444'); - if (result.success === false) { - c.error(result.error); - } - else { - c.dir(result.data); - } - c.groupEnd(); - } - else { - if (result.success === false) { - c.error('LOG FROM NATIVE', result.error); - } - else { - c.log('LOG FROM NATIVE', result.data); - } - } - }; - const createLogToNative = (c) => (call) => { - if (isFullConsole(c)) { - c.groupCollapsed('%cnative %c' + - call.pluginId + - '.' + - call.methodName + - ' (#' + - call.callbackId + - ')', 'font-weight: lighter; color: gray', 'font-weight: bold; color: #000'); - c.dir(call); - c.groupEnd(); - } - else { - c.log('LOG TO NATIVE: ', call); - } - }; - const isFullConsole = (c) => { - if (!c) { - return false; - } - return (typeof c.groupCollapsed === 'function' || - typeof c.groupEnd === 'function' || - typeof c.dir === 'function'); - }; - const serializeConsoleMessage = (msg) => { - if (typeof msg === 'object') { - try { - msg = JSON.stringify(msg); - } - catch (e) { - // ignore - } - } - return String(msg); - }; - const platform = getPlatformId(win); - if (platform == 'android' || platform == 'ios') { - // patch document.cookie on Android/iOS - win.CapacitorCookiesDescriptor = - Object.getOwnPropertyDescriptor(Document.prototype, 'cookie') || - Object.getOwnPropertyDescriptor(HTMLDocument.prototype, 'cookie'); - let doPatchCookies = false; - // check if capacitor cookies is disabled before patching - if (platform === 'ios') { - // Use prompt to synchronously get capacitor cookies config. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorCookies.isEnabled', - }; - const isCookiesEnabled = prompt(JSON.stringify(payload)); - if (isCookiesEnabled === 'true') { - doPatchCookies = true; - } - } - else if (typeof win.CapacitorCookiesAndroidInterface !== 'undefined') { - const isCookiesEnabled = win.CapacitorCookiesAndroidInterface.isEnabled(); - if (isCookiesEnabled === true) { - doPatchCookies = true; - } - } - if (doPatchCookies) { - Object.defineProperty(document, 'cookie', { - get: function () { - var _a, _b, _c; - if (platform === 'ios') { - // Use prompt to synchronously get cookies. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorCookies.get', - }; - const res = prompt(JSON.stringify(payload)); - return res; - } - else if (typeof win.CapacitorCookiesAndroidInterface !== 'undefined') { - // return original document.cookie since Android does not support filtering of `httpOnly` cookies - return (_c = (_b = (_a = win.CapacitorCookiesDescriptor) === null || _a === void 0 ? void 0 : _a.get) === null || _b === void 0 ? void 0 : _b.call(document)) !== null && _c !== void 0 ? _c : ''; - } - }, - set: function (val) { - const cookiePairs = val.split(';'); - const domainSection = val.toLowerCase().split('domain=')[1]; - const domain = cookiePairs.length > 1 && - domainSection != null && - domainSection.length > 0 - ? domainSection.split(';')[0].trim() - : ''; - if (platform === 'ios') { - // Use prompt to synchronously set cookies. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorCookies.set', - action: val, - domain, - }; - prompt(JSON.stringify(payload)); - } - else if (typeof win.CapacitorCookiesAndroidInterface !== 'undefined') { - win.CapacitorCookiesAndroidInterface.setCookie(domain, val); - } - }, - }); - } - // patch fetch / XHR on Android/iOS - // store original fetch & XHR functions - win.CapacitorWebFetch = window.fetch; - win.CapacitorWebXMLHttpRequest = { - abort: window.XMLHttpRequest.prototype.abort, - constructor: window.XMLHttpRequest.prototype.constructor, - fullObject: window.XMLHttpRequest, - getAllResponseHeaders: window.XMLHttpRequest.prototype.getAllResponseHeaders, - getResponseHeader: window.XMLHttpRequest.prototype.getResponseHeader, - open: window.XMLHttpRequest.prototype.open, - prototype: window.XMLHttpRequest.prototype, - send: window.XMLHttpRequest.prototype.send, - setRequestHeader: window.XMLHttpRequest.prototype.setRequestHeader, - }; - let doPatchHttp = false; - // check if capacitor http is disabled before patching - if (platform === 'ios') { - // Use prompt to synchronously get capacitor http config. - // https://stackoverflow.com/questions/29249132/wkwebview-complex-communication-between-javascript-native-code/49474323#49474323 - const payload = { - type: 'CapacitorHttp', - }; - const isHttpEnabled = prompt(JSON.stringify(payload)); - if (isHttpEnabled === 'true') { - doPatchHttp = true; - } - } - else if (typeof win.CapacitorHttpAndroidInterface !== 'undefined') { - const isHttpEnabled = win.CapacitorHttpAndroidInterface.isEnabled(); - if (isHttpEnabled === true) { - doPatchHttp = true; - } - } - if (doPatchHttp) { - // fetch patch - window.fetch = async (resource, options) => { - const request = new Request(resource, options); - if (request.url.startsWith(`${cap.getServerUrl()}/`)) { - return win.CapacitorWebFetch(resource, options); - } - const tag = `CapacitorHttp fetch ${Date.now()} ${resource}`; - console.time(tag); - try { - const { body, method } = request; - const { data: requestData, type, headers, } = await convertBody(body || undefined); - const optionHeaders = Object.fromEntries(request.headers.entries()); - const nativeResponse = await cap.nativePromise('CapacitorHttp', 'request', { - url: request.url, - method: method, - data: requestData, - dataType: type, - headers: Object.assign(Object.assign({}, headers), optionHeaders), - }); - const contentType = nativeResponse.headers['Content-Type'] || - nativeResponse.headers['content-type']; - let data = (contentType === null || contentType === void 0 ? void 0 : contentType.startsWith('application/json')) - ? JSON.stringify(nativeResponse.data) - : nativeResponse.data; - // use null data for 204 No Content HTTP response - if (nativeResponse.status === 204) { - data = null; - } - // intercept & parse response before returning - const response = new Response(data, { - headers: nativeResponse.headers, - status: nativeResponse.status, - }); - /* - * copy url to response, `cordova-plugin-ionic` uses this url from the response - * we need `Object.defineProperty` because url is an inherited getter on the Response - * see: https://stackoverflow.com/a/57382543 - * */ - Object.defineProperty(response, 'url', { - value: nativeResponse.url, - }); - console.timeEnd(tag); - return response; - } - catch (error) { - console.timeEnd(tag); - return Promise.reject(error); - } - }; - window.XMLHttpRequest = function () { - const xhr = new win.CapacitorWebXMLHttpRequest.constructor(); - Object.defineProperties(xhr, { - _headers: { - value: {}, - writable: true, - }, - _method: { - value: xhr.method, - writable: true, - }, - readyState: { - get: function () { - var _a; - return (_a = this._readyState) !== null && _a !== void 0 ? _a : 0; - }, - set: function (val) { - this._readyState = val; - setTimeout(() => { - this.dispatchEvent(new Event('readystatechange')); - }); - }, - }, - }); - xhr.readyState = 0; - const prototype = win.CapacitorWebXMLHttpRequest.prototype; - const isRelativeURL = (url) => !url || !(url.startsWith('http:') || url.startsWith('https:')); - const isProgressEventAvailable = () => typeof ProgressEvent !== 'undefined' && - ProgressEvent.prototype instanceof Event; - // XHR patch abort - prototype.abort = function () { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.abort.call(this); - } - this.readyState = 0; - setTimeout(() => { - this.dispatchEvent(new Event('abort')); - this.dispatchEvent(new Event('loadend')); - }); - }; - // XHR patch open - prototype.open = function (method, url) { - this._url = url; - this._method = method; - if (isRelativeURL(url)) { - return win.CapacitorWebXMLHttpRequest.open.call(this, method, url); - } - setTimeout(() => { - this.dispatchEvent(new Event('loadstart')); - }); - this.readyState = 1; - }; - // XHR patch set request header - prototype.setRequestHeader = function (header, value) { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.setRequestHeader.call(this, header, value); - } - this._headers[header] = value; - }; - // XHR patch send - prototype.send = function (body) { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.send.call(this, body); - } - const tag = `CapacitorHttp XMLHttpRequest ${Date.now()} ${this._url}`; - console.time(tag); - try { - this.readyState = 2; - Object.defineProperties(this, { - response: { - value: '', - writable: true, - }, - responseText: { - value: '', - writable: true, - }, - responseURL: { - value: '', - writable: true, - }, - status: { - value: 0, - writable: true, - }, - }); - convertBody(body).then(({ data, type, headers }) => { - const otherHeaders = this._headers != null && Object.keys(this._headers).length > 0 - ? this._headers - : undefined; - // intercept request & pass to the bridge - cap - .nativePromise('CapacitorHttp', 'request', { - url: this._url, - method: this._method, - data: data !== null ? data : undefined, - headers: Object.assign(Object.assign({}, headers), otherHeaders), - dataType: type, - }) - .then((nativeResponse) => { - var _a; - // intercept & parse response before returning - if (this.readyState == 2) { - //TODO: Add progress event emission on native side - if (isProgressEventAvailable()) { - this.dispatchEvent(new ProgressEvent('progress', { - lengthComputable: true, - loaded: nativeResponse.data.length, - total: nativeResponse.data.length, - })); - } - this._headers = nativeResponse.headers; - this.status = nativeResponse.status; - if (this.responseType === '' || - this.responseType === 'text') { - this.response = - typeof nativeResponse.data !== 'string' - ? JSON.stringify(nativeResponse.data) - : nativeResponse.data; - } - else { - this.response = nativeResponse.data; - } - this.responseText = ((_a = nativeResponse.headers['Content-Type']) === null || _a === void 0 ? void 0 : _a.startsWith('application/json')) - ? JSON.stringify(nativeResponse.data) - : nativeResponse.data; - this.responseURL = nativeResponse.url; - this.readyState = 4; - setTimeout(() => { - this.dispatchEvent(new Event('load')); - this.dispatchEvent(new Event('loadend')); - }); - } - console.timeEnd(tag); - }) - .catch((error) => { - this.status = error.status; - this._headers = error.headers; - this.response = error.data; - this.responseText = JSON.stringify(error.data); - this.responseURL = error.url; - this.readyState = 4; - if (isProgressEventAvailable()) { - this.dispatchEvent(new ProgressEvent('progress', { - lengthComputable: false, - loaded: 0, - total: 0, - })); - } - setTimeout(() => { - this.dispatchEvent(new Event('error')); - this.dispatchEvent(new Event('loadend')); - }); - console.timeEnd(tag); - }); - }); - } - catch (error) { - this.status = 500; - this._headers = {}; - this.response = error; - this.responseText = error.toString(); - this.responseURL = this._url; - this.readyState = 4; - if (isProgressEventAvailable()) { - this.dispatchEvent(new ProgressEvent('progress', { - lengthComputable: false, - loaded: 0, - total: 0, - })); - } - setTimeout(() => { - this.dispatchEvent(new Event('error')); - this.dispatchEvent(new Event('loadend')); - }); - console.timeEnd(tag); - } - }; - // XHR patch getAllResponseHeaders - prototype.getAllResponseHeaders = function () { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.getAllResponseHeaders.call(this); - } - let returnString = ''; - for (const key in this._headers) { - if (key != 'Set-Cookie') { - returnString += key + ': ' + this._headers[key] + '\r\n'; - } - } - return returnString; - }; - // XHR patch getResponseHeader - prototype.getResponseHeader = function (name) { - if (isRelativeURL(this._url)) { - return win.CapacitorWebXMLHttpRequest.getResponseHeader.call(this, name); - } - return this._headers[name]; - }; - Object.setPrototypeOf(xhr, prototype); - return xhr; - }; - Object.assign(window.XMLHttpRequest, win.CapacitorWebXMLHttpRequest.fullObject); - } - } - // patch window.console on iOS and store original console fns - const isIos = getPlatformId(win) === 'ios'; - if (win.console && isIos) { - Object.defineProperties(win.console, BRIDGED_CONSOLE_METHODS.reduce((props, method) => { - const consoleMethod = win.console[method].bind(win.console); - props[method] = { - value: (...args) => { - const msgs = [...args]; - cap.toNative('Console', 'log', { - level: method, - message: msgs.map(serializeConsoleMessage).join(' '), - }); - return consoleMethod(...args); - }, - }; - return props; - }, {})); - } - cap.logJs = (msg, level) => { - switch (level) { - case 'error': - win.console.error(msg); - break; - case 'warn': - win.console.warn(msg); - break; - case 'info': - win.console.info(msg); - break; - default: - win.console.log(msg); - } - }; - cap.logToNative = createLogToNative(win.console); - cap.logFromNative = createLogFromNative(win.console); - cap.handleError = err => win.console.error(err); - win.Capacitor = cap; - }; - function initNativeBridge(win) { - const cap = win.Capacitor || {}; - // keep a collection of callbacks for native response data - const callbacks = new Map(); - const webviewServerUrl = typeof win.WEBVIEW_SERVER_URL === 'string' ? win.WEBVIEW_SERVER_URL : ''; - cap.getServerUrl = () => webviewServerUrl; - cap.convertFileSrc = filePath => convertFileSrcServerUrl(webviewServerUrl, filePath); - // Counter of callback ids, randomized to avoid - // any issues during reloads if a call comes back with - // an existing callback id from an old session - let callbackIdCount = Math.floor(Math.random() * 134217728); - let postToNative = null; - const isNativePlatform = () => true; - const getPlatform = () => getPlatformId(win); - cap.getPlatform = getPlatform; - cap.isPluginAvailable = name => Object.prototype.hasOwnProperty.call(cap.Plugins, name); - cap.isNativePlatform = isNativePlatform; - // create the postToNative() fn if needed - if (getPlatformId(win) === 'android') { - // android platform - postToNative = data => { - var _a; - try { - win.androidBridge.postMessage(JSON.stringify(data)); - } - catch (e) { - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.error(e); - } - }; - } - else if (getPlatformId(win) === 'ios') { - // ios platform - postToNative = data => { - var _a; - try { - data.type = data.type ? data.type : 'message'; - win.webkit.messageHandlers.bridge.postMessage(data); - } - catch (e) { - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.error(e); - } - }; - } - cap.handleWindowError = (msg, url, lineNo, columnNo, err) => { - const str = msg.toLowerCase(); - if (str.indexOf('script error') > -1) ; - else { - const errObj = { - type: 'js.error', - error: { - message: msg, - url: url, - line: lineNo, - col: columnNo, - errorObject: JSON.stringify(err), - }, - }; - if (err !== null) { - cap.handleError(err); - } - postToNative(errObj); - } - return false; - }; - if (cap.DEBUG) { - window.onerror = cap.handleWindowError; - } - initLogger(win, cap); - /** - * Send a plugin method call to the native layer - */ - cap.toNative = (pluginName, methodName, options, storedCallback) => { - var _a, _b; - try { - if (typeof postToNative === 'function') { - let callbackId = '-1'; - if (storedCallback && - (typeof storedCallback.callback === 'function' || - typeof storedCallback.resolve === 'function')) { - // store the call for later lookup - callbackId = String(++callbackIdCount); - callbacks.set(callbackId, storedCallback); - } - const callData = { - callbackId: callbackId, - pluginId: pluginName, - methodName: methodName, - options: options || {}, - }; - if (cap.isLoggingEnabled && pluginName !== 'Console') { - cap.logToNative(callData); - } - // post the call data to native - postToNative(callData); - return callbackId; - } - else { - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.warn(`implementation unavailable for: ${pluginName}`); - } - } - catch (e) { - (_b = win === null || win === void 0 ? void 0 : win.console) === null || _b === void 0 ? void 0 : _b.error(e); - } - return null; - }; - if (win === null || win === void 0 ? void 0 : win.androidBridge) { - win.androidBridge.onmessage = function (event) { - returnResult(JSON.parse(event.data)); - }; - } - /** - * Process a response from the native layer. - */ - cap.fromNative = result => { - returnResult(result); - }; - const returnResult = (result) => { - var _a, _b; - if (cap.isLoggingEnabled && result.pluginId !== 'Console') { - cap.logFromNative(result); - } - // get the stored call, if it exists - try { - const storedCall = callbacks.get(result.callbackId); - if (storedCall) { - // looks like we've got a stored call - if (result.error) { - // ensure stacktraces by copying error properties to an Error - result.error = Object.keys(result.error).reduce((err, key) => { - // use any type to avoid importing util and compiling most of .ts files - err[key] = result.error[key]; - return err; - }, new cap.Exception('')); - } - if (typeof storedCall.callback === 'function') { - // callback - if (result.success) { - storedCall.callback(result.data); - } - else { - storedCall.callback(null, result.error); - } - } - else if (typeof storedCall.resolve === 'function') { - // promise - if (result.success) { - storedCall.resolve(result.data); - } - else { - storedCall.reject(result.error); - } - // no need to keep this stored callback - // around for a one time resolve promise - callbacks.delete(result.callbackId); - } - } - else if (!result.success && result.error) { - // no stored callback, but if there was an error let's log it - (_a = win === null || win === void 0 ? void 0 : win.console) === null || _a === void 0 ? void 0 : _a.warn(result.error); - } - if (result.save === false) { - callbacks.delete(result.callbackId); - } - } - catch (e) { - (_b = win === null || win === void 0 ? void 0 : win.console) === null || _b === void 0 ? void 0 : _b.error(e); - } - // always delete to prevent memory leaks - // overkill but we're not sure what apps will do with this data - delete result.data; - delete result.error; - }; - cap.nativeCallback = (pluginName, methodName, options, callback) => { - if (typeof options === 'function') { - console.warn(`Using a callback as the 'options' parameter of 'nativeCallback()' is deprecated.`); - callback = options; - options = null; - } - return cap.toNative(pluginName, methodName, options, { callback }); - }; - cap.nativePromise = (pluginName, methodName, options) => { - return new Promise((resolve, reject) => { - cap.toNative(pluginName, methodName, options, { - resolve: resolve, - reject: reject, - }); - }); - }; - // eslint-disable-next-line @typescript-eslint/no-unused-vars - cap.withPlugin = (_pluginId, _fn) => dummy; - cap.Exception = CapacitorException; - initEvents(win, cap); - initLegacyHandlers(win, cap); - initVendor(win, cap); - win.Capacitor = cap; - } - initNativeBridge(w); - }; - initBridge(typeof globalThis !== 'undefined' - ? globalThis - : typeof self !== 'undefined' - ? self - : typeof window !== 'undefined' - ? window - : typeof global !== 'undefined' - ? global - : {}); - - dummy = initBridge; - - Object.defineProperty(exports, '__esModule', { value: true }); - - return exports; - -})({}); diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Info.plist b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Info.plist deleted file mode 100644 index c64093d05..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.capacitorjs.ios.Capacitor - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/DWARF/Capacitor b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/DWARF/Capacitor deleted file mode 100644 index 515ac099e..000000000 Binary files a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/DWARF/Capacitor and /dev/null differ diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/aarch64/Capacitor.yml b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/aarch64/Capacitor.yml deleted file mode 100644 index a3924a6ec..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/aarch64/Capacitor.yml +++ /dev/null @@ -1,1492 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/mark/Library/Developer/Xcode/DerivedData/Capacitor-cvqxffszbvmpzcdcdtewgtstoqol/Build/Intermediates.noindex/ArchiveIntermediates/Capacitor/InstallationBuildProductsLocation/Library/Frameworks/Capacitor.framework/Capacitor' -relocations: - - { offsetInCU: 0x34, offset: 0xAFE84, size: 0x8, addend: 0x0, symName: _CapacitorVersionString, symObjAddr: 0x0, symBinAddr: 0x560F0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xAFEB9, size: 0x8, addend: 0x0, symName: _CapacitorVersionNumber, symObjAddr: 0x30, symBinAddr: 0x56120, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0xAFEF6, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getString:defaultValue:]', symObjAddr: 0x0, symBinAddr: 0x4C94, symSize: 0xC0 } - - { offsetInCU: 0xD5, offset: 0xAFFA4, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getString:defaultValue:]', symObjAddr: 0x0, symBinAddr: 0x4C94, symSize: 0xC0 } - - { offsetInCU: 0x13C, offset: 0xB000B, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getDate:defaultValue:]', symObjAddr: 0xC0, symBinAddr: 0x4D54, symSize: 0x11C } - - { offsetInCU: 0x1A3, offset: 0xB0072, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getObject:defaultValue:]', symObjAddr: 0x1DC, symBinAddr: 0x4E70, symSize: 0xC0 } - - { offsetInCU: 0x20A, offset: 0xB00D9, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getNumber:defaultValue:]', symObjAddr: 0x29C, symBinAddr: 0x4F30, symSize: 0xC0 } - - { offsetInCU: 0x271, offset: 0xB0140, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getBool:defaultValue:]', symObjAddr: 0x35C, symBinAddr: 0x4FF0, symSize: 0x98 } - - { offsetInCU: 0x27, offset: 0xB03CF, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall initWithCallbackId:options:success:error:]', symObjAddr: 0x0, symBinAddr: 0x5088, symSize: 0xA8 } - - { offsetInCU: 0x1E3, offset: 0xB058B, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall initWithCallbackId:options:success:error:]', symObjAddr: 0x0, symBinAddr: 0x5088, symSize: 0xA8 } - - { offsetInCU: 0x25A, offset: 0xB0602, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall isSaved]', symObjAddr: 0xA8, symBinAddr: 0x5130, symSize: 0x4 } - - { offsetInCU: 0x28F, offset: 0xB0637, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setIsSaved:]', symObjAddr: 0xAC, symBinAddr: 0x5134, symSize: 0x4 } - - { offsetInCU: 0x2D3, offset: 0xB067B, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall save]', symObjAddr: 0xB0, symBinAddr: 0x5138, symSize: 0x8 } - - { offsetInCU: 0x304, offset: 0xB06AC, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall keepAlive]', symObjAddr: 0xB8, symBinAddr: 0x5140, symSize: 0x8 } - - { offsetInCU: 0x33B, offset: 0xB06E3, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setKeepAlive:]', symObjAddr: 0xC0, symBinAddr: 0x5148, symSize: 0x8 } - - { offsetInCU: 0x376, offset: 0xB071E, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall callbackId]', symObjAddr: 0xC8, symBinAddr: 0x5150, symSize: 0x8 } - - { offsetInCU: 0x3AD, offset: 0xB0755, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setCallbackId:]', symObjAddr: 0xD0, symBinAddr: 0x5158, symSize: 0xC } - - { offsetInCU: 0x3EE, offset: 0xB0796, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall options]', symObjAddr: 0xDC, symBinAddr: 0x5164, symSize: 0x8 } - - { offsetInCU: 0x425, offset: 0xB07CD, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setOptions:]', symObjAddr: 0xE4, symBinAddr: 0x516C, symSize: 0xC } - - { offsetInCU: 0x466, offset: 0xB080E, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall successHandler]', symObjAddr: 0xF0, symBinAddr: 0x5178, symSize: 0x8 } - - { offsetInCU: 0x49D, offset: 0xB0845, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setSuccessHandler:]', symObjAddr: 0xF8, symBinAddr: 0x5180, symSize: 0x8 } - - { offsetInCU: 0x4DC, offset: 0xB0884, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall errorHandler]', symObjAddr: 0x100, symBinAddr: 0x5188, symSize: 0x8 } - - { offsetInCU: 0x513, offset: 0xB08BB, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setErrorHandler:]', symObjAddr: 0x108, symBinAddr: 0x5190, symSize: 0x8 } - - { offsetInCU: 0x552, offset: 0xB08FA, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall .cxx_destruct]', symObjAddr: 0x110, symBinAddr: 0x5198, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0xB096C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAsDefault]', symObjAddr: 0x0, symBinAddr: 0x51E0, symSize: 0x144 } - - { offsetInCU: 0x41, offset: 0xB0986, size: 0x8, addend: 0x0, symName: _CAPInstanceDescriptorDefaultScheme, symObjAddr: 0x6B0, symBinAddr: 0x68360, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0xB09A6, size: 0x8, addend: 0x0, symName: _CAPInstanceDescriptorDefaultHostname, symObjAddr: 0x6B8, symBinAddr: 0x68368, symSize: 0x0 } - - { offsetInCU: 0x42E, offset: 0xB0D73, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAsDefault]', symObjAddr: 0x0, symBinAddr: 0x51E0, symSize: 0x144 } - - { offsetInCU: 0x465, offset: 0xB0DAA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAtLocation:configuration:cordovaConfiguration:]', symObjAddr: 0x144, symBinAddr: 0x5324, symSize: 0xBC } - - { offsetInCU: 0x4CC, offset: 0xB0E11, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor _setDefaultsWithAppLocation:]', symObjAddr: 0x200, symBinAddr: 0x53E0, symSize: 0x14C } - - { offsetInCU: 0x50F, offset: 0xB0E54, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appendedUserAgentString]', symObjAddr: 0x34C, symBinAddr: 0x552C, symSize: 0x8 } - - { offsetInCU: 0x546, offset: 0xB0E8B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppendedUserAgentString:]', symObjAddr: 0x354, symBinAddr: 0x5534, symSize: 0x8 } - - { offsetInCU: 0x585, offset: 0xB0ECA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor overridenUserAgentString]', symObjAddr: 0x35C, symBinAddr: 0x553C, symSize: 0x8 } - - { offsetInCU: 0x5BC, offset: 0xB0F01, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setOverridenUserAgentString:]', symObjAddr: 0x364, symBinAddr: 0x5544, symSize: 0x8 } - - { offsetInCU: 0x5FB, offset: 0xB0F40, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor backgroundColor]', symObjAddr: 0x36C, symBinAddr: 0x554C, symSize: 0x8 } - - { offsetInCU: 0x632, offset: 0xB0F77, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setBackgroundColor:]', symObjAddr: 0x374, symBinAddr: 0x5554, symSize: 0xC } - - { offsetInCU: 0x673, offset: 0xB0FB8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor allowedNavigationHostnames]', symObjAddr: 0x380, symBinAddr: 0x5560, symSize: 0x8 } - - { offsetInCU: 0x6AA, offset: 0xB0FEF, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAllowedNavigationHostnames:]', symObjAddr: 0x388, symBinAddr: 0x5568, symSize: 0x8 } - - { offsetInCU: 0x6E9, offset: 0xB102E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor urlScheme]', symObjAddr: 0x390, symBinAddr: 0x5570, symSize: 0x8 } - - { offsetInCU: 0x720, offset: 0xB1065, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setUrlScheme:]', symObjAddr: 0x398, symBinAddr: 0x5578, symSize: 0x8 } - - { offsetInCU: 0x75F, offset: 0xB10A4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor errorPath]', symObjAddr: 0x3A0, symBinAddr: 0x5580, symSize: 0x8 } - - { offsetInCU: 0x796, offset: 0xB10DB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setErrorPath:]', symObjAddr: 0x3A8, symBinAddr: 0x5588, symSize: 0x8 } - - { offsetInCU: 0x7D5, offset: 0xB111A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor urlHostname]', symObjAddr: 0x3B0, symBinAddr: 0x5590, symSize: 0x8 } - - { offsetInCU: 0x80C, offset: 0xB1151, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setUrlHostname:]', symObjAddr: 0x3B8, symBinAddr: 0x5598, symSize: 0x8 } - - { offsetInCU: 0x84B, offset: 0xB1190, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor serverURL]', symObjAddr: 0x3C0, symBinAddr: 0x55A0, symSize: 0x8 } - - { offsetInCU: 0x882, offset: 0xB11C7, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setServerURL:]', symObjAddr: 0x3C8, symBinAddr: 0x55A8, symSize: 0x8 } - - { offsetInCU: 0x8C1, offset: 0xB1206, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor pluginConfigurations]', symObjAddr: 0x3D0, symBinAddr: 0x55B0, symSize: 0x8 } - - { offsetInCU: 0x8F8, offset: 0xB123D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setPluginConfigurations:]', symObjAddr: 0x3D8, symBinAddr: 0x55B8, symSize: 0xC } - - { offsetInCU: 0x939, offset: 0xB127E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor loggingBehavior]', symObjAddr: 0x3E4, symBinAddr: 0x55C4, symSize: 0x8 } - - { offsetInCU: 0x970, offset: 0xB12B5, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLoggingBehavior:]', symObjAddr: 0x3EC, symBinAddr: 0x55CC, symSize: 0x8 } - - { offsetInCU: 0x9AD, offset: 0xB12F2, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor scrollingEnabled]', symObjAddr: 0x3F4, symBinAddr: 0x55D4, symSize: 0x8 } - - { offsetInCU: 0x9E4, offset: 0xB1329, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setScrollingEnabled:]', symObjAddr: 0x3FC, symBinAddr: 0x55DC, symSize: 0x8 } - - { offsetInCU: 0xA1F, offset: 0xB1364, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor zoomingEnabled]', symObjAddr: 0x404, symBinAddr: 0x55E4, symSize: 0x8 } - - { offsetInCU: 0xA56, offset: 0xB139B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setZoomingEnabled:]', symObjAddr: 0x40C, symBinAddr: 0x55EC, symSize: 0x8 } - - { offsetInCU: 0xA91, offset: 0xB13D6, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor allowLinkPreviews]', symObjAddr: 0x414, symBinAddr: 0x55F4, symSize: 0x8 } - - { offsetInCU: 0xAC8, offset: 0xB140D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAllowLinkPreviews:]', symObjAddr: 0x41C, symBinAddr: 0x55FC, symSize: 0x8 } - - { offsetInCU: 0xB03, offset: 0xB1448, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor handleApplicationNotifications]', symObjAddr: 0x424, symBinAddr: 0x5604, symSize: 0x8 } - - { offsetInCU: 0xB3A, offset: 0xB147F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setHandleApplicationNotifications:]', symObjAddr: 0x42C, symBinAddr: 0x560C, symSize: 0x8 } - - { offsetInCU: 0xB75, offset: 0xB14BA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor isWebDebuggable]', symObjAddr: 0x434, symBinAddr: 0x5614, symSize: 0x8 } - - { offsetInCU: 0xBAC, offset: 0xB14F1, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setIsWebDebuggable:]', symObjAddr: 0x43C, symBinAddr: 0x561C, symSize: 0x8 } - - { offsetInCU: 0xBE7, offset: 0xB152C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor contentInsetAdjustmentBehavior]', symObjAddr: 0x444, symBinAddr: 0x5624, symSize: 0x8 } - - { offsetInCU: 0xC1E, offset: 0xB1563, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setContentInsetAdjustmentBehavior:]', symObjAddr: 0x44C, symBinAddr: 0x562C, symSize: 0x8 } - - { offsetInCU: 0xC5B, offset: 0xB15A0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appLocation]', symObjAddr: 0x454, symBinAddr: 0x5634, symSize: 0x8 } - - { offsetInCU: 0xC92, offset: 0xB15D7, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppLocation:]', symObjAddr: 0x45C, symBinAddr: 0x563C, symSize: 0x8 } - - { offsetInCU: 0xCD1, offset: 0xB1616, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appStartPath]', symObjAddr: 0x464, symBinAddr: 0x5644, symSize: 0x8 } - - { offsetInCU: 0xD08, offset: 0xB164D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppStartPath:]', symObjAddr: 0x46C, symBinAddr: 0x564C, symSize: 0x8 } - - { offsetInCU: 0xD47, offset: 0xB168C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor limitsNavigationsToAppBoundDomains]', symObjAddr: 0x474, symBinAddr: 0x5654, symSize: 0x8 } - - { offsetInCU: 0xD7E, offset: 0xB16C3, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLimitsNavigationsToAppBoundDomains:]', symObjAddr: 0x47C, symBinAddr: 0x565C, symSize: 0x8 } - - { offsetInCU: 0xDB9, offset: 0xB16FE, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor preferredContentMode]', symObjAddr: 0x484, symBinAddr: 0x5664, symSize: 0x8 } - - { offsetInCU: 0xDF0, offset: 0xB1735, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setPreferredContentMode:]', symObjAddr: 0x48C, symBinAddr: 0x566C, symSize: 0x8 } - - { offsetInCU: 0xE2F, offset: 0xB1774, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor cordovaConfiguration]', symObjAddr: 0x494, symBinAddr: 0x5674, symSize: 0x8 } - - { offsetInCU: 0xE66, offset: 0xB17AB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setCordovaConfiguration:]', symObjAddr: 0x49C, symBinAddr: 0x567C, symSize: 0x8 } - - { offsetInCU: 0xEA5, offset: 0xB17EA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor warnings]', symObjAddr: 0x4A4, symBinAddr: 0x5684, symSize: 0x8 } - - { offsetInCU: 0xEDC, offset: 0xB1821, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setWarnings:]', symObjAddr: 0x4AC, symBinAddr: 0x568C, symSize: 0x8 } - - { offsetInCU: 0xF19, offset: 0xB185E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor instanceType]', symObjAddr: 0x4B4, symBinAddr: 0x5694, symSize: 0x8 } - - { offsetInCU: 0xF50, offset: 0xB1895, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor legacyConfig]', symObjAddr: 0x4BC, symBinAddr: 0x569C, symSize: 0x8 } - - { offsetInCU: 0xF87, offset: 0xB18CC, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLegacyConfig:]', symObjAddr: 0x4C4, symBinAddr: 0x56A4, symSize: 0xC } - - { offsetInCU: 0xFC8, offset: 0xB190D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor .cxx_destruct]', symObjAddr: 0x4D0, symBinAddr: 0x56B0, symSize: 0xC0 } - - { offsetInCU: 0x27, offset: 0xB19B6, size: 0x8, addend: 0x0, symName: '-[CAPPlugin initWithBridge:pluginId:pluginName:]', symObjAddr: 0x0, symBinAddr: 0x5770, symSize: 0x110 } - - { offsetInCU: 0x1FA, offset: 0xB1B89, size: 0x8, addend: 0x0, symName: '-[CAPPlugin initWithBridge:pluginId:pluginName:]', symObjAddr: 0x0, symBinAddr: 0x5770, symSize: 0x110 } - - { offsetInCU: 0x261, offset: 0xB1BF0, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getId]', symObjAddr: 0x110, symBinAddr: 0x5880, symSize: 0x4 } - - { offsetInCU: 0x296, offset: 0xB1C25, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getBool:field:defaultValue:]', symObjAddr: 0x114, symBinAddr: 0x5884, symSize: 0xAC } - - { offsetInCU: 0x309, offset: 0xB1C98, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getString:field:defaultValue:]', symObjAddr: 0x1C0, symBinAddr: 0x5930, symSize: 0x10 } - - { offsetInCU: 0x36C, offset: 0xB1CFB, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getConfigValue:]', symObjAddr: 0x1D0, symBinAddr: 0x5940, symSize: 0xB0 } - - { offsetInCU: 0x3B3, offset: 0xB1D42, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getConfig]', symObjAddr: 0x280, symBinAddr: 0x59F0, symSize: 0x8C } - - { offsetInCU: 0x3EA, offset: 0xB1D79, size: 0x8, addend: 0x0, symName: '-[CAPPlugin load]', symObjAddr: 0x30C, symBinAddr: 0x5A7C, symSize: 0x4 } - - { offsetInCU: 0x419, offset: 0xB1DA8, size: 0x8, addend: 0x0, symName: '-[CAPPlugin addEventListener:listener:]', symObjAddr: 0x310, symBinAddr: 0x5A80, symSize: 0x110 } - - { offsetInCU: 0x47C, offset: 0xB1E0B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin sendRetainedArgumentsForEvent:]', symObjAddr: 0x420, symBinAddr: 0x5B90, symSize: 0x174 } - - { offsetInCU: 0x4EE, offset: 0xB1E7D, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeEventListener:listener:]', symObjAddr: 0x594, symBinAddr: 0x5D04, symSize: 0xAC } - - { offsetInCU: 0x561, offset: 0xB1EF0, size: 0x8, addend: 0x0, symName: '-[CAPPlugin notifyListeners:data:]', symObjAddr: 0x640, symBinAddr: 0x5DB0, symSize: 0x8 } - - { offsetInCU: 0x5AE, offset: 0xB1F3D, size: 0x8, addend: 0x0, symName: '-[CAPPlugin notifyListeners:data:retainUntilConsumed:]', symObjAddr: 0x648, symBinAddr: 0x5DB8, symSize: 0x200 } - - { offsetInCU: 0x699, offset: 0xB2028, size: 0x8, addend: 0x0, symName: '-[CAPPlugin addListener:]', symObjAddr: 0x848, symBinAddr: 0x5FB8, symSize: 0x88 } - - { offsetInCU: 0x6EC, offset: 0xB207B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeListener:]', symObjAddr: 0x8D0, symBinAddr: 0x6040, symSize: 0x120 } - - { offsetInCU: 0x75F, offset: 0xB20EE, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeAllListeners:]', symObjAddr: 0x9F0, symBinAddr: 0x6160, symSize: 0x54 } - - { offsetInCU: 0x7A2, offset: 0xB2131, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getListeners:]', symObjAddr: 0xA44, symBinAddr: 0x61B4, symSize: 0x6C } - - { offsetInCU: 0x7F9, offset: 0xB2188, size: 0x8, addend: 0x0, symName: '-[CAPPlugin hasListeners:]', symObjAddr: 0xAB0, symBinAddr: 0x6220, symSize: 0x90 } - - { offsetInCU: 0x850, offset: 0xB21DF, size: 0x8, addend: 0x0, symName: '-[CAPPlugin checkPermissions:]', symObjAddr: 0xB40, symBinAddr: 0x62B0, symSize: 0x8 } - - { offsetInCU: 0x88F, offset: 0xB221E, size: 0x8, addend: 0x0, symName: '-[CAPPlugin requestPermissions:]', symObjAddr: 0xB48, symBinAddr: 0x62B8, symSize: 0x8 } - - { offsetInCU: 0x8CE, offset: 0xB225D, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setCenteredPopover:]', symObjAddr: 0xB50, symBinAddr: 0x62C0, symSize: 0x1F4 } - - { offsetInCU: 0x911, offset: 0xB22A0, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setCenteredPopover:size:]', symObjAddr: 0xD44, symBinAddr: 0x64B4, symSize: 0x214 } - - { offsetInCU: 0x960, offset: 0xB22EF, size: 0x8, addend: 0x0, symName: '-[CAPPlugin supportsPopover]', symObjAddr: 0xF58, symBinAddr: 0x66C8, symSize: 0x8 } - - { offsetInCU: 0x993, offset: 0xB2322, size: 0x8, addend: 0x0, symName: '-[CAPPlugin shouldOverrideLoad:]', symObjAddr: 0xF60, symBinAddr: 0x66D0, symSize: 0x8 } - - { offsetInCU: 0x9D2, offset: 0xB2361, size: 0x8, addend: 0x0, symName: '-[CAPPlugin webView]', symObjAddr: 0xF68, symBinAddr: 0x66D8, symSize: 0x18 } - - { offsetInCU: 0xA09, offset: 0xB2398, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setWebView:]', symObjAddr: 0xF80, symBinAddr: 0x66F0, symSize: 0xC } - - { offsetInCU: 0xA4A, offset: 0xB23D9, size: 0x8, addend: 0x0, symName: '-[CAPPlugin bridge]', symObjAddr: 0xF8C, symBinAddr: 0x66FC, symSize: 0x18 } - - { offsetInCU: 0xA81, offset: 0xB2410, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setBridge:]', symObjAddr: 0xFA4, symBinAddr: 0x6714, symSize: 0xC } - - { offsetInCU: 0xAC2, offset: 0xB2451, size: 0x8, addend: 0x0, symName: '-[CAPPlugin pluginId]', symObjAddr: 0xFB0, symBinAddr: 0x6720, symSize: 0x8 } - - { offsetInCU: 0xAF9, offset: 0xB2488, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setPluginId:]', symObjAddr: 0xFB8, symBinAddr: 0x6728, symSize: 0xC } - - { offsetInCU: 0xB3A, offset: 0xB24C9, size: 0x8, addend: 0x0, symName: '-[CAPPlugin pluginName]', symObjAddr: 0xFC4, symBinAddr: 0x6734, symSize: 0x8 } - - { offsetInCU: 0xB71, offset: 0xB2500, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setPluginName:]', symObjAddr: 0xFCC, symBinAddr: 0x673C, symSize: 0xC } - - { offsetInCU: 0xBB2, offset: 0xB2541, size: 0x8, addend: 0x0, symName: '-[CAPPlugin eventListeners]', symObjAddr: 0xFD8, symBinAddr: 0x6748, symSize: 0x8 } - - { offsetInCU: 0xBE9, offset: 0xB2578, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setEventListeners:]', symObjAddr: 0xFE0, symBinAddr: 0x6750, symSize: 0xC } - - { offsetInCU: 0xC2A, offset: 0xB25B9, size: 0x8, addend: 0x0, symName: '-[CAPPlugin retainedEventArguments]', symObjAddr: 0xFEC, symBinAddr: 0x675C, symSize: 0x8 } - - { offsetInCU: 0xC61, offset: 0xB25F0, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setRetainedEventArguments:]', symObjAddr: 0xFF4, symBinAddr: 0x6764, symSize: 0xC } - - { offsetInCU: 0xCA2, offset: 0xB2631, size: 0x8, addend: 0x0, symName: '-[CAPPlugin shouldStringifyDatesInCalls]', symObjAddr: 0x1000, symBinAddr: 0x6770, symSize: 0x8 } - - { offsetInCU: 0xCD9, offset: 0xB2668, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setShouldStringifyDatesInCalls:]', symObjAddr: 0x1008, symBinAddr: 0x6778, symSize: 0x8 } - - { offsetInCU: 0xD14, offset: 0xB26A3, size: 0x8, addend: 0x0, symName: '-[CAPPlugin .cxx_destruct]', symObjAddr: 0x1010, symBinAddr: 0x6780, symSize: 0x58 } - - { offsetInCU: 0x27, offset: 0xB2912, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument initWithName:nullability:type:]', symObjAddr: 0x0, symBinAddr: 0x67D8, symSize: 0x34 } - - { offsetInCU: 0x3AB, offset: 0xB2C96, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument initWithName:nullability:type:]', symObjAddr: 0x0, symBinAddr: 0x67D8, symSize: 0x34 } - - { offsetInCU: 0x40E, offset: 0xB2CF9, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument name]', symObjAddr: 0x34, symBinAddr: 0x680C, symSize: 0x8 } - - { offsetInCU: 0x445, offset: 0xB2D30, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument setName:]', symObjAddr: 0x3C, symBinAddr: 0x6814, symSize: 0x8 } - - { offsetInCU: 0x484, offset: 0xB2D6F, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument nullability]', symObjAddr: 0x44, symBinAddr: 0x681C, symSize: 0x8 } - - { offsetInCU: 0x4BB, offset: 0xB2DA6, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument setNullability:]', symObjAddr: 0x4C, symBinAddr: 0x6824, symSize: 0x8 } - - { offsetInCU: 0x4F8, offset: 0xB2DE3, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument .cxx_destruct]', symObjAddr: 0x54, symBinAddr: 0x682C, symSize: 0xC } - - { offsetInCU: 0x52B, offset: 0xB2E16, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod initWithName:returnType:]', symObjAddr: 0x60, symBinAddr: 0x6838, symSize: 0xA4 } - - { offsetInCU: 0x5AB, offset: 0xB2E96, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod selector]', symObjAddr: 0x104, symBinAddr: 0x68DC, symSize: 0x8 } - - { offsetInCU: 0x5E2, offset: 0xB2ECD, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setSelector:]', symObjAddr: 0x10C, symBinAddr: 0x68E4, symSize: 0x8 } - - { offsetInCU: 0x61F, offset: 0xB2F0A, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod name]', symObjAddr: 0x114, symBinAddr: 0x68EC, symSize: 0x8 } - - { offsetInCU: 0x656, offset: 0xB2F41, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setName:]', symObjAddr: 0x11C, symBinAddr: 0x68F4, symSize: 0xC } - - { offsetInCU: 0x697, offset: 0xB2F82, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod returnType]', symObjAddr: 0x128, symBinAddr: 0x6900, symSize: 0x8 } - - { offsetInCU: 0x6CE, offset: 0xB2FB9, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setReturnType:]', symObjAddr: 0x130, symBinAddr: 0x6908, symSize: 0xC } - - { offsetInCU: 0x70F, offset: 0xB2FFA, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod .cxx_destruct]', symObjAddr: 0x13C, symBinAddr: 0x6914, symSize: 0x60 } - - { offsetInCU: 0x27, offset: 0xB3068, size: 0x8, addend: 0x0, symName: '+[WKWebView(CapacitorAutoFocus) load]', symObjAddr: 0x0, symBinAddr: 0x6974, symSize: 0x4 } - - { offsetInCU: 0xBF, offset: 0xB3100, size: 0x8, addend: 0x0, symName: '+[WKWebView(CapacitorAutoFocus) load]', symObjAddr: 0x0, symBinAddr: 0x6974, symSize: 0x4 } - - { offsetInCU: 0x27, offset: 0xB3183, size: 0x8, addend: 0x0, symName: '+[UIStatusBarManager(CAPHandleTapAction) load]', symObjAddr: 0x0, symBinAddr: 0x6978, symSize: 0x6C } - - { offsetInCU: 0x35, offset: 0xB3191, size: 0x8, addend: 0x0, symName: '+[UIStatusBarManager(CAPHandleTapAction) load]', symObjAddr: 0x0, symBinAddr: 0x6978, symSize: 0x6C } - - { offsetInCU: 0x5B, offset: 0xB31B7, size: 0x8, addend: 0x0, symName: _load.onceToken, symObjAddr: 0x2B28, symBinAddr: 0x75D00, symSize: 0x0 } - - { offsetInCU: 0x193, offset: 0xB32EF, size: 0x8, addend: 0x0, symName: '___46+[UIStatusBarManager(CAPHandleTapAction) load]_block_invoke', symObjAddr: 0x6C, symBinAddr: 0x69E4, symSize: 0xD4 } - - { offsetInCU: 0x426, offset: 0xB3582, size: 0x8, addend: 0x0, symName: '-[UIStatusBarManager(CAPHandleTapAction) nofity_handleTapAction:]', symObjAddr: 0x140, symBinAddr: 0x6AB8, symSize: 0xC0 } - - { offsetInCU: 0x27, offset: 0xB369F, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x0, symBinAddr: 0x6B78, symSize: 0x130 } - - { offsetInCU: 0x5F, offset: 0xB36D7, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x0, symBinAddr: 0x6B78, symSize: 0x130 } - - { offsetInCU: 0xA2, offset: 0xB371A, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x130, symBinAddr: 0x6CA8, symSize: 0xC } - - { offsetInCU: 0xD5, offset: 0xB374D, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x13C, symBinAddr: 0x6CB4, symSize: 0xC } - - { offsetInCU: 0x108, offset: 0xB3780, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x148, symBinAddr: 0x6CC0, symSize: 0x160 } - - { offsetInCU: 0x14B, offset: 0xB37C3, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x2A8, symBinAddr: 0x6E20, symSize: 0xC } - - { offsetInCU: 0x17E, offset: 0xB37F6, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x2B4, symBinAddr: 0x6E2C, symSize: 0xC } - - { offsetInCU: 0x1B1, offset: 0xB3829, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x2C0, symBinAddr: 0x6E38, symSize: 0x64 } - - { offsetInCU: 0x1F4, offset: 0xB386C, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) identifier]', symObjAddr: 0x324, symBinAddr: 0x6E9C, symSize: 0xC } - - { offsetInCU: 0x227, offset: 0xB389F, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) jsName]', symObjAddr: 0x330, symBinAddr: 0x6EA8, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0xB38D2, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x33C, symBinAddr: 0x6EB4, symSize: 0xD0 } - - { offsetInCU: 0x29D, offset: 0xB3915, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x40C, symBinAddr: 0x6F84, symSize: 0xC } - - { offsetInCU: 0x2D0, offset: 0xB3948, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x418, symBinAddr: 0x6F90, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0xB3A2C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithDescriptor:isDebug:]', symObjAddr: 0x0, symBinAddr: 0x6F9C, symSize: 0x354 } - - { offsetInCU: 0x384, offset: 0xB3D89, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithDescriptor:isDebug:]', symObjAddr: 0x0, symBinAddr: 0x6F9C, symSize: 0x354 } - - { offsetInCU: 0x3D7, offset: 0xB3DDC, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithConfiguration:andLocation:]', symObjAddr: 0x354, symBinAddr: 0x72F0, symSize: 0x2B8 } - - { offsetInCU: 0x42E, offset: 0xB3E33, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration updatingAppLocation:]', symObjAddr: 0x60C, symBinAddr: 0x75A8, symSize: 0x5C } - - { offsetInCU: 0x475, offset: 0xB3E7A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appendedUserAgentString]', symObjAddr: 0x668, symBinAddr: 0x7604, symSize: 0x8 } - - { offsetInCU: 0x4AC, offset: 0xB3EB1, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration overridenUserAgentString]', symObjAddr: 0x670, symBinAddr: 0x760C, symSize: 0x8 } - - { offsetInCU: 0x4E3, offset: 0xB3EE8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration backgroundColor]', symObjAddr: 0x678, symBinAddr: 0x7614, symSize: 0x8 } - - { offsetInCU: 0x51A, offset: 0xB3F1F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration allowedNavigationHostnames]', symObjAddr: 0x680, symBinAddr: 0x761C, symSize: 0x8 } - - { offsetInCU: 0x551, offset: 0xB3F56, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration localURL]', symObjAddr: 0x688, symBinAddr: 0x7624, symSize: 0x8 } - - { offsetInCU: 0x588, offset: 0xB3F8D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration serverURL]', symObjAddr: 0x690, symBinAddr: 0x762C, symSize: 0x8 } - - { offsetInCU: 0x5BF, offset: 0xB3FC4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration errorPath]', symObjAddr: 0x698, symBinAddr: 0x7634, symSize: 0x8 } - - { offsetInCU: 0x5F6, offset: 0xB3FFB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration pluginConfigurations]', symObjAddr: 0x6A0, symBinAddr: 0x763C, symSize: 0x8 } - - { offsetInCU: 0x62D, offset: 0xB4032, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration loggingEnabled]', symObjAddr: 0x6A8, symBinAddr: 0x7644, symSize: 0x8 } - - { offsetInCU: 0x664, offset: 0xB4069, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration scrollingEnabled]', symObjAddr: 0x6B0, symBinAddr: 0x764C, symSize: 0x8 } - - { offsetInCU: 0x69B, offset: 0xB40A0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration zoomingEnabled]', symObjAddr: 0x6B8, symBinAddr: 0x7654, symSize: 0x8 } - - { offsetInCU: 0x6D2, offset: 0xB40D7, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration allowLinkPreviews]', symObjAddr: 0x6C0, symBinAddr: 0x765C, symSize: 0x8 } - - { offsetInCU: 0x709, offset: 0xB410E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration handleApplicationNotifications]', symObjAddr: 0x6C8, symBinAddr: 0x7664, symSize: 0x8 } - - { offsetInCU: 0x740, offset: 0xB4145, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration isWebDebuggable]', symObjAddr: 0x6D0, symBinAddr: 0x766C, symSize: 0x8 } - - { offsetInCU: 0x777, offset: 0xB417C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration cordovaDeployDisabled]', symObjAddr: 0x6D8, symBinAddr: 0x7674, symSize: 0x8 } - - { offsetInCU: 0x7AE, offset: 0xB41B3, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration contentInsetAdjustmentBehavior]', symObjAddr: 0x6E0, symBinAddr: 0x767C, symSize: 0x8 } - - { offsetInCU: 0x7E5, offset: 0xB41EA, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appLocation]', symObjAddr: 0x6E8, symBinAddr: 0x7684, symSize: 0x8 } - - { offsetInCU: 0x81C, offset: 0xB4221, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appStartPath]', symObjAddr: 0x6F0, symBinAddr: 0x768C, symSize: 0x8 } - - { offsetInCU: 0x853, offset: 0xB4258, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration limitsNavigationsToAppBoundDomains]', symObjAddr: 0x6F8, symBinAddr: 0x7694, symSize: 0x8 } - - { offsetInCU: 0x88A, offset: 0xB428F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration preferredContentMode]', symObjAddr: 0x700, symBinAddr: 0x769C, symSize: 0x8 } - - { offsetInCU: 0x8C1, offset: 0xB42C6, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration legacyConfig]', symObjAddr: 0x708, symBinAddr: 0x76A4, symSize: 0x8 } - - { offsetInCU: 0x8F8, offset: 0xB42FD, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration .cxx_destruct]', symObjAddr: 0x710, symBinAddr: 0x76AC, symSize: 0xA8 } - - { offsetInCU: 0x126, offset: 0xB461F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC4loadyyF', symObjAddr: 0x0, symBinAddr: 0x7754, symSize: 0x94 } - - { offsetInCU: 0x1B7, offset: 0xB46B0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC4loadyyFTo', symObjAddr: 0x94, symBinAddr: 0x77E8, symSize: 0x2C } - - { offsetInCU: 0x1F1, offset: 0xB46EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC10getCookiesyySo13CAPPluginCallCF', symObjAddr: 0xC0, symBinAddr: 0x7814, symSize: 0x1E4 } - - { offsetInCU: 0x2C2, offset: 0xB47BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC10getCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0x2A4, symBinAddr: 0x79F8, symSize: 0x50 } - - { offsetInCU: 0x2DE, offset: 0xB47D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC9setCookieyySo13CAPPluginCallCF', symObjAddr: 0x2F4, symBinAddr: 0x7A48, symSize: 0x3F0 } - - { offsetInCU: 0x4C8, offset: 0xB49C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC9setCookieyySo13CAPPluginCallCFTo', symObjAddr: 0x6E4, symBinAddr: 0x7E38, symSize: 0x50 } - - { offsetInCU: 0x4E4, offset: 0xB49DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12deleteCookieyySo13CAPPluginCallCF', symObjAddr: 0x734, symBinAddr: 0x7E88, symSize: 0x254 } - - { offsetInCU: 0x5CE, offset: 0xB4AC7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12deleteCookieyySo13CAPPluginCallCFTo', symObjAddr: 0x988, symBinAddr: 0x80DC, symSize: 0x50 } - - { offsetInCU: 0x5EA, offset: 0xB4AE3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12clearCookiesyySo13CAPPluginCallCF', symObjAddr: 0x9D8, symBinAddr: 0x812C, symSize: 0x188 } - - { offsetInCU: 0x6D0, offset: 0xB4BC9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12clearCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0xB60, symBinAddr: 0x82B4, symSize: 0x50 } - - { offsetInCU: 0x716, offset: 0xB4C0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC15clearAllCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0xBB0, symBinAddr: 0x8304, symSize: 0x68 } - - { offsetInCU: 0x79D, offset: 0xB4C96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0xC18, symBinAddr: 0x836C, symSize: 0xB4 } - - { offsetInCU: 0x7BB, offset: 0xB4CB4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0xCCC, symBinAddr: 0x8420, symSize: 0xC0 } - - { offsetInCU: 0x834, offset: 0xB4D2D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0xDAC, symBinAddr: 0x8500, symSize: 0xE4 } - - { offsetInCU: 0x883, offset: 0xB4D7C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfC', symObjAddr: 0xE90, symBinAddr: 0x85E4, symSize: 0x20 } - - { offsetInCU: 0x8A1, offset: 0xB4D9A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfc', symObjAddr: 0xEB0, symBinAddr: 0x8604, symSize: 0x3C } - - { offsetInCU: 0x8DC, offset: 0xB4DD5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfcTo', symObjAddr: 0xEEC, symBinAddr: 0x8640, symSize: 0x48 } - - { offsetInCU: 0x917, offset: 0xB4E10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCfD', symObjAddr: 0xF34, symBinAddr: 0x8688, symSize: 0x30 } - - { offsetInCU: 0x98A, offset: 0xB4E83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCMa', symObjAddr: 0xD8C, symBinAddr: 0x84E0, symSize: 0x20 } - - { offsetInCU: 0x9AA, offset: 0xB4EA3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCfETo', symObjAddr: 0xF64, symBinAddr: 0x86B8, symSize: 0x10 } - - { offsetInCU: 0x9D9, offset: 0xB4ED2, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1598, symBinAddr: 0x8C44, symSize: 0x2C } - - { offsetInCU: 0x9ED, offset: 0xB4EE6, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x15C4, symBinAddr: 0x8C70, symSize: 0x2C } - - { offsetInCU: 0xA01, offset: 0xB4EFA, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSQWb', symObjAddr: 0x1630, symBinAddr: 0x8CDC, symSize: 0x2C } - - { offsetInCU: 0xA20, offset: 0xB4F19, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x1998, symBinAddr: 0x9044, symSize: 0x40 } - - { offsetInCU: 0xA34, offset: 0xB4F2D, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOc', symObjAddr: 0x19D8, symBinAddr: 0x9084, symSize: 0x48 } - - { offsetInCU: 0xA48, offset: 0xB4F41, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOh', symObjAddr: 0x1A20, symBinAddr: 0x90CC, symSize: 0x40 } - - { offsetInCU: 0xA5C, offset: 0xB4F55, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x1A60, symBinAddr: 0x910C, symSize: 0x44 } - - { offsetInCU: 0xA70, offset: 0xB4F69, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1AF4, symBinAddr: 0x91A0, symSize: 0x2C } - - { offsetInCU: 0xA84, offset: 0xB4F7D, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1B20, symBinAddr: 0x91CC, symSize: 0x2C } - - { offsetInCU: 0xA98, offset: 0xB4F91, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSQWb', symObjAddr: 0x1B4C, symBinAddr: 0x91F8, symSize: 0x2C } - - { offsetInCU: 0xAAC, offset: 0xB4FA5, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation26_ObjectiveCBridgeableErrorSCs0F0PWb', symObjAddr: 0x1B78, symBinAddr: 0x9224, symSize: 0x2C } - - { offsetInCU: 0xAC0, offset: 0xB4FB9, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCs5ErrorPWb', symObjAddr: 0x1BA4, symBinAddr: 0x9250, symSize: 0x2C } - - { offsetInCU: 0xAD4, offset: 0xB4FCD, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1BD0, symBinAddr: 0x927C, symSize: 0x2C } - - { offsetInCU: 0xAE8, offset: 0xB4FE1, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1BFC, symBinAddr: 0x92A8, symSize: 0x2C } - - { offsetInCU: 0xAFC, offset: 0xB4FF5, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyaSHSCSQWb', symObjAddr: 0x1C28, symBinAddr: 0x92D4, symSize: 0x2C } - - { offsetInCU: 0xB10, offset: 0xB5009, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomF0PWb', symObjAddr: 0x1C54, symBinAddr: 0x9300, symSize: 0x2C } - - { offsetInCU: 0xB24, offset: 0xB501D, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAC26_ObjectiveCBridgeableErrorPWb', symObjAddr: 0x1C80, symBinAddr: 0x932C, symSize: 0x2C } - - { offsetInCU: 0xB38, offset: 0xB5031, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCSHWb', symObjAddr: 0x1CAC, symBinAddr: 0x9358, symSize: 0x2C } - - { offsetInCU: 0xB4C, offset: 0xB5045, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_AC06_ErrorB8ProtocolPWT', symObjAddr: 0x1CD8, symBinAddr: 0x9384, symSize: 0x2C } - - { offsetInCU: 0xB60, offset: 0xB5059, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_SYWT', symObjAddr: 0x1D5C, symBinAddr: 0x9408, symSize: 0x2C } - - { offsetInCU: 0xB74, offset: 0xB506D, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_8RawValueSYs17FixedWidthIntegerPWT', symObjAddr: 0x1D88, symBinAddr: 0x9434, symSize: 0x4 } - - { offsetInCU: 0xB88, offset: 0xB5081, size: 0x8, addend: 0x0, symName: '_$sS2is17FixedWidthIntegersWl', symObjAddr: 0x1D8C, symBinAddr: 0x9438, symSize: 0x44 } - - { offsetInCU: 0xB9C, offset: 0xB5095, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeV10Foundation06_ErrorB8ProtocolSCSQWb', symObjAddr: 0x1DD0, symBinAddr: 0x947C, symSize: 0x2C } - - { offsetInCU: 0xBB0, offset: 0xB50A9, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeV10Foundation06_ErrorB8ProtocolSC01_D4TypeAcDP_AC21_BridgedStoredNSErrorPWT', symObjAddr: 0x1DFC, symBinAddr: 0x94A8, symSize: 0x2C } - - { offsetInCU: 0xBC4, offset: 0xB50BD, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyaSHSCSQWb', symObjAddr: 0x1E28, symBinAddr: 0x94D4, symSize: 0x2C } - - { offsetInCU: 0xC4A, offset: 0xB5143, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0xFD4, symBinAddr: 0x871C, symSize: 0x14 } - - { offsetInCU: 0xC90, offset: 0xB5189, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0xFE8, symBinAddr: 0x8730, symSize: 0x18 } - - { offsetInCU: 0xCD0, offset: 0xB51C9, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromE1C_6resulty01_E5CTypeQz_xSgztFZTW', symObjAddr: 0x1028, symBinAddr: 0x8770, symSize: 0x14 } - - { offsetInCU: 0xD10, offset: 0xB5209, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromE1C_6resultSb01_E5CTypeQz_xSgztFZTW', symObjAddr: 0x103C, symBinAddr: 0x8784, symSize: 0x18 } - - { offsetInCU: 0xD50, offset: 0xB5249, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromC1C_6resulty01_C5CTypeQz_xSgztFZTW', symObjAddr: 0x1098, symBinAddr: 0x87A8, symSize: 0x14 } - - { offsetInCU: 0xD90, offset: 0xB5289, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromC1C_6resultSb01_C5CTypeQz_xSgztFZTW', symObjAddr: 0x10AC, symBinAddr: 0x87BC, symSize: 0x18 } - - { offsetInCU: 0xDDC, offset: 0xB52D5, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1408, symBinAddr: 0x8AB4, symSize: 0x5C } - - { offsetInCU: 0xE0D, offset: 0xB5306, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toghI0s0hI0VSgyFTW', symObjAddr: 0x1514, symBinAddr: 0x8BC0, symSize: 0x84 } - - { offsetInCU: 0xE29, offset: 0xB5322, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP9_userInfoyXlSgvgTW', symObjAddr: 0x16DC, symBinAddr: 0x8D88, symSize: 0x4 } - - { offsetInCU: 0xE54, offset: 0xB534D, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x1778, symBinAddr: 0x8E24, symSize: 0x14 } - - { offsetInCU: 0xE9A, offset: 0xB5393, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_tofgH0s0gH0VSgyFTW', symObjAddr: 0x178C, symBinAddr: 0x8E38, symSize: 0x84 } - - { offsetInCU: 0xEB6, offset: 0xB53AF, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas35_HasCustomAnyHashableRepresentationSCsACP03_todeF0s0eF0VSgyFTW', symObjAddr: 0x1894, symBinAddr: 0x8F40, symSize: 0x84 } - - { offsetInCU: 0xF57, offset: 0xB5450, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP05errorB0SivgTW', symObjAddr: 0x1290, symBinAddr: 0x893C, symSize: 0x40 } - - { offsetInCU: 0xF73, offset: 0xB546C, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP13errorUserInfoSDySSypGvgTW', symObjAddr: 0x12D0, symBinAddr: 0x897C, symSize: 0x40 } - - { offsetInCU: 0xF8F, offset: 0xB5488, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation26_ObjectiveCBridgeableErrorSCAcDP15_bridgedNSErrorxSgSo0H0Ch_tcfCTW', symObjAddr: 0x1310, symBinAddr: 0x89BC, symSize: 0x6C } - - { offsetInCU: 0xFBA, offset: 0xB54B3, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH9hashValueSivgTW', symObjAddr: 0x137C, symBinAddr: 0x8A28, symSize: 0x3C } - - { offsetInCU: 0xFEB, offset: 0xB54E4, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13B8, symBinAddr: 0x8A64, symSize: 0x50 } - - { offsetInCU: 0x1007, offset: 0xB5500, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP7_domainSSvgTW', symObjAddr: 0x165C, symBinAddr: 0x8D08, symSize: 0x40 } - - { offsetInCU: 0x1023, offset: 0xB551C, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP5_codeSivgTW', symObjAddr: 0x169C, symBinAddr: 0x8D48, symSize: 0x40 } - - { offsetInCU: 0x103F, offset: 0xB5538, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x16E0, symBinAddr: 0x8D8C, symSize: 0x40 } - - { offsetInCU: 0x105B, offset: 0xB5554, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x1720, symBinAddr: 0x8DCC, symSize: 0x58 } - - { offsetInCU: 0x1123, offset: 0xB561C, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorSo0F0CvgTW', symObjAddr: 0x1018, symBinAddr: 0x8760, symSize: 0x8 } - - { offsetInCU: 0x1154, offset: 0xB564D, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorxSo0F0C_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x8768, symSize: 0x8 } - - { offsetInCU: 0x117F, offset: 0xB5678, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW', symObjAddr: 0x1280, symBinAddr: 0x892C, symSize: 0x10 } - - { offsetInCU: 0x119F, offset: 0xB5698, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW', symObjAddr: 0x1280, symBinAddr: 0x892C, symSize: 0x10 } - - { offsetInCU: 0x11C3, offset: 0xB56BC, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x1464, symBinAddr: 0x8B10, symSize: 0x10 } - - { offsetInCU: 0x11DF, offset: 0xB56D8, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x1474, symBinAddr: 0x8B20, symSize: 0xC } - - { offsetInCU: 0x4B, offset: 0xB57C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVACycfC', symObjAddr: 0x0, symBinAddr: 0x95D0, symSize: 0xC } - - { offsetInCU: 0x7A, offset: 0xB57F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvg', symObjAddr: 0xC, symBinAddr: 0x95DC, symSize: 0x2C } - - { offsetInCU: 0x8E, offset: 0xB5807, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvs', symObjAddr: 0x38, symBinAddr: 0x9608, symSize: 0x34 } - - { offsetInCU: 0xB7, offset: 0xB5830, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvM', symObjAddr: 0x6C, symBinAddr: 0x963C, symSize: 0x10 } - - { offsetInCU: 0xD5, offset: 0xB584E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvM.resume.0', symObjAddr: 0x7C, symBinAddr: 0x964C, symSize: 0x4 } - - { offsetInCU: 0x100, offset: 0xB5879, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV5route3forS2S_tF', symObjAddr: 0x80, symBinAddr: 0x9650, symSize: 0x118 } - - { offsetInCU: 0x185, offset: 0xB58FE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP5route3forS2S_tFTW', symObjAddr: 0x198, symBinAddr: 0x9768, symSize: 0x4 } - - { offsetInCU: 0x1B2, offset: 0xB592B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvgTW', symObjAddr: 0x19C, symBinAddr: 0x976C, symSize: 0x2C } - - { offsetInCU: 0x20E, offset: 0xB5987, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvsTW', symObjAddr: 0x1C8, symBinAddr: 0x9798, symSize: 0x34 } - - { offsetInCU: 0x24C, offset: 0xB59C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvMTW', symObjAddr: 0x1FC, symBinAddr: 0x97CC, symSize: 0x10 } - - { offsetInCU: 0x268, offset: 0xB59E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvMTW.resume.0', symObjAddr: 0x20C, symBinAddr: 0x97DC, symSize: 0x4 } - - { offsetInCU: 0x285, offset: 0xB59FE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwCP', symObjAddr: 0x230, symBinAddr: 0x9800, symSize: 0x2C } - - { offsetInCU: 0x299, offset: 0xB5A12, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwxx', symObjAddr: 0x25C, symBinAddr: 0x982C, symSize: 0x8 } - - { offsetInCU: 0x2AD, offset: 0xB5A26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwcp', symObjAddr: 0x264, symBinAddr: 0x9834, symSize: 0x2C } - - { offsetInCU: 0x2C1, offset: 0xB5A3A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwca', symObjAddr: 0x290, symBinAddr: 0x9860, symSize: 0x40 } - - { offsetInCU: 0x2D5, offset: 0xB5A4E, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x2D0, symBinAddr: 0x98A0, symSize: 0xC } - - { offsetInCU: 0x2E9, offset: 0xB5A62, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwta', symObjAddr: 0x2DC, symBinAddr: 0x98AC, symSize: 0x30 } - - { offsetInCU: 0x2FD, offset: 0xB5A76, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwet', symObjAddr: 0x30C, symBinAddr: 0x98DC, symSize: 0x48 } - - { offsetInCU: 0x311, offset: 0xB5A8A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwst', symObjAddr: 0x354, symBinAddr: 0x9924, symSize: 0x3C } - - { offsetInCU: 0x325, offset: 0xB5A9E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVMa', symObjAddr: 0x390, symBinAddr: 0x9960, symSize: 0x10 } - - { offsetInCU: 0x93, offset: 0xB5C4E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg', symObjAddr: 0x12C, symBinAddr: 0x9A9C, symSize: 0x64 } - - { offsetInCU: 0xB2, offset: 0xB5C6D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs', symObjAddr: 0x190, symBinAddr: 0x9B00, symSize: 0x88 } - - { offsetInCU: 0xDB, offset: 0xB5C96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM', symObjAddr: 0x218, symBinAddr: 0x9B88, symSize: 0x44 } - - { offsetInCU: 0x124, offset: 0xB5CDF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvg', symObjAddr: 0x2C4, symBinAddr: 0x9C34, symSize: 0x48 } - - { offsetInCU: 0x143, offset: 0xB5CFE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvs', symObjAddr: 0x30C, symBinAddr: 0x9C7C, symSize: 0x50 } - - { offsetInCU: 0x16C, offset: 0xB5D27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM', symObjAddr: 0x35C, symBinAddr: 0x9CCC, symSize: 0x44 } - - { offsetInCU: 0x18B, offset: 0xB5D46, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM.resume.0', symObjAddr: 0x3A0, symBinAddr: 0x9D10, symSize: 0x4 } - - { offsetInCU: 0x1C5, offset: 0xB5D80, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfC', symObjAddr: 0x3B4, symBinAddr: 0x9D24, symSize: 0x58 } - - { offsetInCU: 0x1F9, offset: 0xB5DB4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc', symObjAddr: 0x40C, symBinAddr: 0x9D7C, symSize: 0x30 } - - { offsetInCU: 0x20D, offset: 0xB5DC8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x43C, symBinAddr: 0x9DAC, symSize: 0x198 } - - { offsetInCU: 0x232, offset: 0xB5DED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x5D4, symBinAddr: 0x9F44, symSize: 0x320 } - - { offsetInCU: 0x312, offset: 0xB5ECD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKFySSXEfU_', symObjAddr: 0x8F4, symBinAddr: 0xA264, symSize: 0x270 } - - { offsetInCU: 0x4D1, offset: 0xB608C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF', symObjAddr: 0xD0C, symBinAddr: 0xA67C, symSize: 0x388 } - - { offsetInCU: 0x728, offset: 0xB62E3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKFySS_SStXEfU0_', symObjAddr: 0x1094, symBinAddr: 0xAA04, symSize: 0x274 } - - { offsetInCU: 0x924, offset: 0xB64DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF', symObjAddr: 0x1308, symBinAddr: 0xAC78, symSize: 0xAC } - - { offsetInCU: 0x97C, offset: 0xB6537, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF', symObjAddr: 0x13B4, symBinAddr: 0xAD24, symSize: 0x128 } - - { offsetInCU: 0xA57, offset: 0xB6612, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc12DataFromFormE0y10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x14DC, symBinAddr: 0xAE4C, symSize: 0x1008 } - - { offsetInCU: 0x1410, offset: 0xB6FCB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF', symObjAddr: 0x24E4, symBinAddr: 0xBE54, symSize: 0x528 } - - { offsetInCU: 0x1615, offset: 0xB71D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGFySSXEfU_', symObjAddr: 0x2A84, symBinAddr: 0xC3F4, symSize: 0x20C } - - { offsetInCU: 0x1703, offset: 0xB72BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF', symObjAddr: 0x2C90, symBinAddr: 0xC600, symSize: 0x228 } - - { offsetInCU: 0x1801, offset: 0xB73BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC14setContentTypeyySSSgF', symObjAddr: 0x2EB8, symBinAddr: 0xC828, symSize: 0x80 } - - { offsetInCU: 0x1858, offset: 0xB7413, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10setTimeoutyySdF', symObjAddr: 0x2F38, symBinAddr: 0xC8A8, symSize: 0x5C } - - { offsetInCU: 0x18AF, offset: 0xB746A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF', symObjAddr: 0x2F94, symBinAddr: 0xC904, symSize: 0x64 } - - { offsetInCU: 0x18FE, offset: 0xB74B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF', symObjAddr: 0x2FF8, symBinAddr: 0xC968, symSize: 0x90 } - - { offsetInCU: 0x1995, offset: 0xB7550, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctFTo', symObjAddr: 0x3088, symBinAddr: 0xC9F8, symSize: 0x1C0 } - - { offsetInCU: 0x19FF, offset: 0xB75BA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF', symObjAddr: 0x3248, symBinAddr: 0xCBB8, symSize: 0xD8 } - - { offsetInCU: 0x1A66, offset: 0xB7621, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfC', symObjAddr: 0x34A8, symBinAddr: 0xCE18, symSize: 0x20 } - - { offsetInCU: 0x1A84, offset: 0xB763F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfc', symObjAddr: 0x34C8, symBinAddr: 0xCE38, symSize: 0x2C } - - { offsetInCU: 0x1AE7, offset: 0xB76A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfcTo', symObjAddr: 0x34F4, symBinAddr: 0xCE64, symSize: 0x2C } - - { offsetInCU: 0x1B4E, offset: 0xB7709, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCfD', symObjAddr: 0x3520, symBinAddr: 0xCE90, symSize: 0x34 } - - { offsetInCU: 0x1B7B, offset: 0xB7736, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfcTf4ngn_n', symObjAddr: 0x42A8, symBinAddr: 0xDC18, symSize: 0x478 } - - { offsetInCU: 0x1DE0, offset: 0xB799B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvpACTK', symObjAddr: 0x0, symBinAddr: 0x9970, symSize: 0x68 } - - { offsetInCU: 0x1E0D, offset: 0xB79C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvpACTk', symObjAddr: 0x68, symBinAddr: 0x99D8, symSize: 0xC4 } - - { offsetInCU: 0x1E44, offset: 0xB79FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvpACTk', symObjAddr: 0x25C, symBinAddr: 0x9BCC, symSize: 0x68 } - - { offsetInCU: 0x203B, offset: 0xB7BF6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x3320, symBinAddr: 0xCC90, symSize: 0x188 } - - { offsetInCU: 0x20ED, offset: 0xB7CA8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCfETo', symObjAddr: 0x3554, symBinAddr: 0xCEC4, symSize: 0x50 } - - { offsetInCU: 0x213D, offset: 0xB7CF8, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_SSTg5', symObjAddr: 0x35A4, symBinAddr: 0xCF14, symSize: 0xB8 } - - { offsetInCU: 0x21C7, offset: 0xB7D82, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x365C, symBinAddr: 0xCFCC, symSize: 0xB0 } - - { offsetInCU: 0x2255, offset: 0xB7E10, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_So13CAPPluginCallCTg5', symObjAddr: 0x370C, symBinAddr: 0xD07C, symSize: 0xB0 } - - { offsetInCU: 0x2364, offset: 0xB7F1F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationO22withUnsafeMutableBytesyxxSwKXEKlFs16IndexingIteratorVySS8UTF8ViewVG_Sit_Tg5', symObjAddr: 0x37BC, symBinAddr: 0xD12C, symSize: 0x30C } - - { offsetInCU: 0x2451, offset: 0xB800C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0V15withUnsafeBytesyxxSWKXEKlFyt_Tgq5015$s10Foundation4B42VyACxcSTRzs5UInt8V7ElementRtzlufcySWXEfU3_ACTf1ncn_n', symObjAddr: 0x3AD8, symBinAddr: 0xD448, symSize: 0xD4 } - - { offsetInCU: 0x24BB, offset: 0xB8076, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufcAC15_RepresentationOSWXEfU_', symObjAddr: 0x3BAC, symBinAddr: 0xD51C, symSize: 0x74 } - - { offsetInCU: 0x2530, offset: 0xB80EB, size: 0x8, addend: 0x0, symName: '_$s10Foundation13__DataStorageC22withUnsafeMutableBytes2in5applyxSnySiG_xSwKXEtKlFs16IndexingIteratorVySS8UTF8ViewVG_Sit_Tg5', symObjAddr: 0x3C20, symBinAddr: 0xD590, symSize: 0xAC } - - { offsetInCU: 0x261B, offset: 0xB81D6, size: 0x8, addend: 0x0, symName: '_$sSTsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlFSDySS9Capacitor7JSValue_pG_s17_NativeDictionaryVyS2SGTg5051$sSD16compactMapValuesySDyxqd__Gqd__Sgq_KXEKlFys17_fg46Vyxqd__Gz_x3key_q_5valuettKXEfU_SS_9Capacitor7E116_pSSTg5076$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7I18_pKFSSSgAaH_pXEfU_Tf3nnpf_nTf1ncn_n', symObjAddr: 0x3CCC, symBinAddr: 0xD63C, symSize: 0x344 } - - { offsetInCU: 0x27D3, offset: 0xB838E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_AI_SitSryAEGXEfU_SS8UTF8ViewV_TG5', symObjAddr: 0x4010, symBinAddr: 0xD980, symSize: 0x88 } - - { offsetInCU: 0x28AD, offset: 0xB8468, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x4720, symBinAddr: 0xE090, symSize: 0x24 } - - { offsetInCU: 0x28C1, offset: 0xB847C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOAEs0D0AAWl', symObjAddr: 0x4744, symBinAddr: 0xE0B4, symSize: 0x44 } - - { offsetInCU: 0x28D5, offset: 0xB8490, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pWOc', symObjAddr: 0x47C8, symBinAddr: 0xE0F8, symSize: 0x44 } - - { offsetInCU: 0x2AE3, offset: 0xB869E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x4ED4, symBinAddr: 0xE804, symSize: 0xC4 } - - { offsetInCU: 0x2B59, offset: 0xB8714, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x4F98, symBinAddr: 0xE8C8, symSize: 0x78 } - - { offsetInCU: 0x2B86, offset: 0xB8741, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x5010, symBinAddr: 0xE940, symSize: 0x80 } - - { offsetInCU: 0x2BDB, offset: 0xB8796, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x5090, symBinAddr: 0xE9C0, symSize: 0x68 } - - { offsetInCU: 0x2C2C, offset: 0xB87E7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationO5countAESi_tcfCTf4nd_n', symObjAddr: 0x50F8, symBinAddr: 0xEA28, symSize: 0x9C } - - { offsetInCU: 0x2D76, offset: 0xB8931, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x5680, symBinAddr: 0xEFB0, symSize: 0x50 } - - { offsetInCU: 0x2D8A, offset: 0xB8945, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x5714, symBinAddr: 0xF000, symSize: 0x44 } - - { offsetInCU: 0x2E43, offset: 0xB89FE, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x5BC4, symBinAddr: 0xF4B0, symSize: 0x3C } - - { offsetInCU: 0x2EA4, offset: 0xB8A5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMa', symObjAddr: 0x613C, symBinAddr: 0xFA28, symSize: 0x3C } - - { offsetInCU: 0x2EB8, offset: 0xB8A73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMU', symObjAddr: 0x61D8, symBinAddr: 0xFAC4, symSize: 0x8 } - - { offsetInCU: 0x2ECC, offset: 0xB8A87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMr', symObjAddr: 0x61E0, symBinAddr: 0xFACC, symSize: 0x78 } - - { offsetInCU: 0x2EE0, offset: 0xB8A9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwCP', symObjAddr: 0x64FC, symBinAddr: 0xFDE8, symSize: 0x2C } - - { offsetInCU: 0x2EF4, offset: 0xB8AAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwxx', symObjAddr: 0x6528, symBinAddr: 0xFE14, symSize: 0x8 } - - { offsetInCU: 0x2F08, offset: 0xB8AC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwcp', symObjAddr: 0x6530, symBinAddr: 0xFE1C, symSize: 0x2C } - - { offsetInCU: 0x2F1C, offset: 0xB8AD7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwca', symObjAddr: 0x655C, symBinAddr: 0xFE48, symSize: 0x40 } - - { offsetInCU: 0x2F30, offset: 0xB8AEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwta', symObjAddr: 0x65A8, symBinAddr: 0xFE88, symSize: 0x30 } - - { offsetInCU: 0x2F44, offset: 0xB8AFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwet', symObjAddr: 0x65D8, symBinAddr: 0xFEB8, symSize: 0x5C } - - { offsetInCU: 0x2F58, offset: 0xB8B13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwst', symObjAddr: 0x6634, symBinAddr: 0xFF14, symSize: 0x50 } - - { offsetInCU: 0x2F6C, offset: 0xB8B27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwug', symObjAddr: 0x6684, symBinAddr: 0xFF64, symSize: 0x8 } - - { offsetInCU: 0x2F80, offset: 0xB8B3B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwup', symObjAddr: 0x668C, symBinAddr: 0xFF6C, symSize: 0x4 } - - { offsetInCU: 0x2F94, offset: 0xB8B4F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwui', symObjAddr: 0x6690, symBinAddr: 0xFF70, symSize: 0x4 } - - { offsetInCU: 0x2FA8, offset: 0xB8B63, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOMa', symObjAddr: 0x6694, symBinAddr: 0xFF74, symSize: 0x10 } - - { offsetInCU: 0x2FBC, offset: 0xB8B77, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOb', symObjAddr: 0x66A4, symBinAddr: 0xFF84, symSize: 0x48 } - - { offsetInCU: 0x2FD0, offset: 0xB8B8B, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x66EC, symBinAddr: 0xFFCC, symSize: 0x10 } - - { offsetInCU: 0x2FE4, offset: 0xB8B9F, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x66FC, symBinAddr: 0xFFDC, symSize: 0x10 } - - { offsetInCU: 0x302E, offset: 0xB8BE9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_SS8UTF8ViewV_TG5TA', symObjAddr: 0x6768, symBinAddr: 0x10048, symSize: 0x58 } - - { offsetInCU: 0x3081, offset: 0xB8C3C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOSgWOe', symObjAddr: 0x67C0, symBinAddr: 0x100A0, symSize: 0x14 } - - { offsetInCU: 0x3095, offset: 0xB8C50, size: 0x8, addend: 0x0, symName: '_$s10Foundation15ContiguousBytes_pWOb', symObjAddr: 0x67D4, symBinAddr: 0x100B4, symSize: 0x18 } - - { offsetInCU: 0x30A9, offset: 0xB8C64, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_AI_SitSryAEGXEfU_SS8UTF8ViewV_TG5TA', symObjAddr: 0x67EC, symBinAddr: 0x100CC, symSize: 0x18 } - - { offsetInCU: 0x30BD, offset: 0xB8C78, size: 0x8, addend: 0x0, symName: '_$sSw17withMemoryRebound2to_q_xm_q_SryxGKXEtKr0_lFs5UInt8V_s16IndexingIteratorVySS8UTF8ViewVG_SitTg5Tf4dnn_n', symObjAddr: 0x6804, symBinAddr: 0x100E4, symSize: 0x60 } - - { offsetInCU: 0x3116, offset: 0xB8CD1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP7_domainSSvgTW', symObjAddr: 0x3A4, symBinAddr: 0x9D14, symSize: 0x4 } - - { offsetInCU: 0x3132, offset: 0xB8CED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP5_codeSivgTW', symObjAddr: 0x3A8, symBinAddr: 0x9D18, symSize: 0x4 } - - { offsetInCU: 0x314E, offset: 0xB8D09, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x3AC, symBinAddr: 0x9D1C, symSize: 0x4 } - - { offsetInCU: 0x316A, offset: 0xB8D25, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x3B0, symBinAddr: 0x9D20, symSize: 0x4 } - - { offsetInCU: 0x326A, offset: 0xB8E25, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg5100$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKFySS_SStXEfU0_10Foundation0J0VSSTf1cn_n', symObjAddr: 0xB64, symBinAddr: 0xA4D4, symSize: 0x1A8 } - - { offsetInCU: 0x3451, offset: 0xB900C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9Capacitor7JSValue_pTg5Tf4gd_n', symObjAddr: 0x4098, symBinAddr: 0xDA08, symSize: 0x114 } - - { offsetInCU: 0x3592, offset: 0xB914D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x41AC, symBinAddr: 0xDB1C, symSize: 0xFC } - - { offsetInCU: 0x36C6, offset: 0xB9281, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x480C, symBinAddr: 0xE13C, symSize: 0x110 } - - { offsetInCU: 0x380D, offset: 0xB93C8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSo38UIApplicationOpenExternalURLOptionsKeya_ypTg5Tf4gd_n', symObjAddr: 0x491C, symBinAddr: 0xE24C, symSize: 0x100 } - - { offsetInCU: 0x3954, offset: 0xB950F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SayypGTg5Tf4gd_n', symObjAddr: 0x4A1C, symBinAddr: 0xE34C, symSize: 0xEC } - - { offsetInCU: 0x3A9B, offset: 0xB9656, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_10Foundation3URLVSgTg5Tf4gd_n', symObjAddr: 0x4B08, symBinAddr: 0xE438, symSize: 0x15C } - - { offsetInCU: 0x3BCA, offset: 0xB9785, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So42UIScrollViewContentInsetAdjustmentBehaviorVTg5Tf4gd_n', symObjAddr: 0x4C64, symBinAddr: 0xE594, symSize: 0xE4 } - - { offsetInCU: 0x3CED, offset: 0xB98A8, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVySS9Capacitor7JSValue_p_G_Tg5076$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7F12_pKFySSXEfU_10Foundation13URLComponentsVSDySSAfG_pGTf1cn_nTf4nng_n', symObjAddr: 0x4D48, symBinAddr: 0xE678, symSize: 0x18C } - - { offsetInCU: 0x3DDE, offset: 0xB9999, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVyS2S_G_Tg556$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSFySSXEfU_SDySSypG9Capacitor0phI0CTf1cn_nTf4nng_n', symObjAddr: 0x5758, symBinAddr: 0xF044, symSize: 0x46C } - - { offsetInCU: 0x408B, offset: 0xB9C46, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVyS2S_G_Tg559$s9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGFySSXEfU_SDyS2SG9Capacitor0qhI0CTf1cn_nTf4ngg_n', symObjAddr: 0x5C00, symBinAddr: 0xF4EC, symSize: 0x3B0 } - - { offsetInCU: 0x42B4, offset: 0xB9E6F, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVySSyp_G_Tg560$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGFySSXEfU_SDySSypG9Capacitor0qhI0CTf1cn_nTf4ngg_n', symObjAddr: 0x5FB0, symBinAddr: 0xF89C, symSize: 0x18C } - - { offsetInCU: 0x44AA, offset: 0xBA065, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufCSS8UTF8ViewV_Tg5Tf4nd_n', symObjAddr: 0x5194, symBinAddr: 0xEAC4, symSize: 0x4DC } - - { offsetInCU: 0x6D, offset: 0xBA47F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg', symObjAddr: 0x0, symBinAddr: 0x1018C, symSize: 0x30 } - - { offsetInCU: 0xD4, offset: 0xBA4E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg', symObjAddr: 0x98, symBinAddr: 0x10224, symSize: 0x50 } - - { offsetInCU: 0xF3, offset: 0xBA505, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg', symObjAddr: 0xE8, symBinAddr: 0x10274, symSize: 0x44 } - - { offsetInCU: 0x112, offset: 0xBA524, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs', symObjAddr: 0x12C, symBinAddr: 0x102B8, symSize: 0x48 } - - { offsetInCU: 0x137, offset: 0xBA549, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM', symObjAddr: 0x174, symBinAddr: 0x10300, symSize: 0x44 } - - { offsetInCU: 0x166, offset: 0xBA578, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM', symObjAddr: 0x1D0, symBinAddr: 0x1035C, symSize: 0x44 } - - { offsetInCU: 0x195, offset: 0xBA5A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM.resume.0', symObjAddr: 0x214, symBinAddr: 0x103A0, symSize: 0x4 } - - { offsetInCU: 0x1C0, offset: 0xBA5D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM', symObjAddr: 0x2B4, symBinAddr: 0x10440, symSize: 0x44 } - - { offsetInCU: 0x20D, offset: 0xBA61F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvgTo', symObjAddr: 0x2F8, symBinAddr: 0x10484, symSize: 0x68 } - - { offsetInCU: 0x24A, offset: 0xBA65C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvg', symObjAddr: 0x360, symBinAddr: 0x104EC, symSize: 0x48 } - - { offsetInCU: 0x293, offset: 0xBA6A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvsTo', symObjAddr: 0x3A8, symBinAddr: 0x10534, symSize: 0x64 } - - { offsetInCU: 0x2D8, offset: 0xBA6EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvs', symObjAddr: 0x40C, symBinAddr: 0x10598, symSize: 0x50 } - - { offsetInCU: 0x301, offset: 0xBA713, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM', symObjAddr: 0x4C4, symBinAddr: 0x10650, symSize: 0x44 } - - { offsetInCU: 0x320, offset: 0xBA732, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg', symObjAddr: 0x508, symBinAddr: 0x10694, symSize: 0x40 } - - { offsetInCU: 0x34E, offset: 0xBA760, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvgSbyXEfU_', symObjAddr: 0x558, symBinAddr: 0x106E4, symSize: 0x464 } - - { offsetInCU: 0x3DC, offset: 0xBA7EE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs', symObjAddr: 0x548, symBinAddr: 0x106D4, symSize: 0x10 } - - { offsetInCU: 0x3FF, offset: 0xBA811, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM', symObjAddr: 0x9BC, symBinAddr: 0x10B48, symSize: 0x38 } - - { offsetInCU: 0x458, offset: 0xBA86A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM.resume.0', symObjAddr: 0x9F4, symBinAddr: 0x10B80, symSize: 0x18 } - - { offsetInCU: 0x4DF, offset: 0xBA8F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC04loadC0yyF', symObjAddr: 0xA0C, symBinAddr: 0x10B98, symSize: 0x480 } - - { offsetInCU: 0x6DD, offset: 0xBAAEF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC04loadC0yyFTo', symObjAddr: 0x17C8, symBinAddr: 0x11954, symSize: 0x2C } - - { offsetInCU: 0x706, offset: 0xBAB18, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF', symObjAddr: 0x1838, symBinAddr: 0x11980, symSize: 0x470 } - - { offsetInCU: 0x9E2, offset: 0xBADF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11viewDidLoadyyFTo', symObjAddr: 0x1CA8, symBinAddr: 0x11DF0, symSize: 0x70 } - - { offsetInCU: 0xA56, offset: 0xBAE68, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC27canPerformUnwindSegueAction_4from10withSenderSb10ObjectiveC8SelectorV_So06UIViewD0CyptFTo', symObjAddr: 0x1D20, symBinAddr: 0x11E60, symSize: 0x78 } - - { offsetInCU: 0xA72, offset: 0xBAE84, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF', symObjAddr: 0x1D98, symBinAddr: 0x11ED8, symSize: 0x304 } - - { offsetInCU: 0xBE1, offset: 0xBAFF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF', symObjAddr: 0x209C, symBinAddr: 0x121DC, symSize: 0x20 } - - { offsetInCU: 0xC0C, offset: 0xBB01E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF', symObjAddr: 0x20BC, symBinAddr: 0x121FC, symSize: 0x378 } - - { offsetInCU: 0xE11, offset: 0xBB223, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF', symObjAddr: 0x2434, symBinAddr: 0x12574, symSize: 0x64 } - - { offsetInCU: 0xE86, offset: 0xBB298, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF', symObjAddr: 0x2498, symBinAddr: 0x125D8, symSize: 0x4 } - - { offsetInCU: 0xF05, offset: 0xBB317, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF', symObjAddr: 0x249C, symBinAddr: 0x125DC, symSize: 0x338 } - - { offsetInCU: 0x1054, offset: 0xBB466, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF', symObjAddr: 0x27D4, symBinAddr: 0x12914, symSize: 0x5BC } - - { offsetInCU: 0x179E, offset: 0xBBBB0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvgTo', symObjAddr: 0x2D90, symBinAddr: 0x12ED0, symSize: 0x4C } - - { offsetInCU: 0x1818, offset: 0xBBC2A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF', symObjAddr: 0x2ED8, symBinAddr: 0x12F74, symSize: 0xF4 } - - { offsetInCU: 0x1871, offset: 0xBBC83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF', symObjAddr: 0x2FF8, symBinAddr: 0x13094, symSize: 0xF4 } - - { offsetInCU: 0x191A, offset: 0xBBD2C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF', symObjAddr: 0x30EC, symBinAddr: 0x13188, symSize: 0x48 } - - { offsetInCU: 0x1981, offset: 0xBBD93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvgTo', symObjAddr: 0x3134, symBinAddr: 0x131D0, symSize: 0x20 } - - { offsetInCU: 0x199D, offset: 0xBBDAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvg', symObjAddr: 0x3154, symBinAddr: 0x131F0, symSize: 0xA4 } - - { offsetInCU: 0x1A05, offset: 0xBBE17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfC', symObjAddr: 0x331C, symBinAddr: 0x133B8, symSize: 0x7C } - - { offsetInCU: 0x1A23, offset: 0xBBE35, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc', symObjAddr: 0x3398, symBinAddr: 0x13434, symSize: 0xEC } - - { offsetInCU: 0x1A6E, offset: 0xBBE80, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfcTo', symObjAddr: 0x3484, symBinAddr: 0x13520, symSize: 0x60 } - - { offsetInCU: 0x1A8A, offset: 0xBBE9C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfC', symObjAddr: 0x34E4, symBinAddr: 0x13580, symSize: 0x44 } - - { offsetInCU: 0x1AA8, offset: 0xBBEBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfc', symObjAddr: 0x3528, symBinAddr: 0x135C4, symSize: 0xB4 } - - { offsetInCU: 0x1AE5, offset: 0xBBEF7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfcTo', symObjAddr: 0x35DC, symBinAddr: 0x13678, symSize: 0x30 } - - { offsetInCU: 0x1B01, offset: 0xBBF13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCfD', symObjAddr: 0x360C, symBinAddr: 0x136A8, symSize: 0x30 } - - { offsetInCU: 0x1B4D, offset: 0xBBF5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvpACTk', symObjAddr: 0x30, symBinAddr: 0x101BC, symSize: 0x68 } - - { offsetInCU: 0x1B83, offset: 0xBBF95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvpACTk', symObjAddr: 0x45C, symBinAddr: 0x105E8, symSize: 0x68 } - - { offsetInCU: 0x1DF7, offset: 0xBC209, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcTf4nennnnn_nAA0nS10ControllerC_Tg5Tf4gggggnn_n', symObjAddr: 0x50B4, symBinAddr: 0x150C8, symSize: 0x754 } - - { offsetInCU: 0x1FA3, offset: 0xBC3B5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC19updateBinaryVersion33_0151BC8B8398CBA447E765B04F9447A0LLyyF', symObjAddr: 0xE8C, symBinAddr: 0x11018, symSize: 0x404 } - - { offsetInCU: 0x2094, offset: 0xBC4A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC010prepareWebC033_0151BC8B8398CBA447E765B04F9447A0LL4with12assetHandler010delegationP0ySo24CAPInstanceConfigurationC_AA0fc5AssetP0CAA0fc10DelegationP0CtF', symObjAddr: 0x1290, symBinAddr: 0x1141C, symSize: 0x538 } - - { offsetInCU: 0x2367, offset: 0xBC779, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2FCC, symBinAddr: 0x13068, symSize: 0x2C } - - { offsetInCU: 0x246F, offset: 0xBC881, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCfETo', symObjAddr: 0x363C, symBinAddr: 0x136D8, symSize: 0x48 } - - { offsetInCU: 0x249E, offset: 0xBC8B0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyF', symObjAddr: 0x3684, symBinAddr: 0x13720, symSize: 0xE4 } - - { offsetInCU: 0x250C, offset: 0xBC91E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyFTo', symObjAddr: 0x3768, symBinAddr: 0x13804, symSize: 0x5C } - - { offsetInCU: 0x2528, offset: 0xBC93A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tF', symObjAddr: 0x37C4, symBinAddr: 0x13860, symSize: 0x254 } - - { offsetInCU: 0x25CC, offset: 0xBC9DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFyyScMYccfU_', symObjAddr: 0x3A18, symBinAddr: 0x13AB4, symSize: 0x1A4 } - - { offsetInCU: 0x264B, offset: 0xBCA5D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFTo', symObjAddr: 0x3BBC, symBinAddr: 0x13C58, symSize: 0x58 } - - { offsetInCU: 0x2667, offset: 0xBCA79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14printLoadError33_0151BC8B8398CBA447E765B04F9447A0LLyyF', symObjAddr: 0x3C14, symBinAddr: 0x13CB0, symSize: 0x304 } - - { offsetInCU: 0x2969, offset: 0xBCD7B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg', symObjAddr: 0x3F18, symBinAddr: 0x13FB4, symSize: 0x50 } - - { offsetInCU: 0x29A7, offset: 0xBCDB9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg', symObjAddr: 0x3F68, symBinAddr: 0x14004, symSize: 0x1C } - - { offsetInCU: 0x29E4, offset: 0xBCDF6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCAA0B8DelegateA2aDP010bridgedWebC0So05WKWebC0CSgvgTW', symObjAddr: 0x3F84, symBinAddr: 0x14020, symSize: 0x50 } - - { offsetInCU: 0x2A5F, offset: 0xBCE71, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCAA0B8DelegateA2aDP07bridgedcD0So06UIViewD0CSgvgTW', symObjAddr: 0x3FD4, symBinAddr: 0x14070, symSize: 0x1C } - - { offsetInCU: 0x2B14, offset: 0xBCF26, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF10Foundation12URLQueryItemV_Tg5', symObjAddr: 0x4030, symBinAddr: 0x1408C, symSize: 0x174 } - - { offsetInCU: 0x2CC4, offset: 0xBD0D6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi_Tg5', symObjAddr: 0x41A4, symBinAddr: 0x14200, symSize: 0xFC } - - { offsetInCU: 0x2E5C, offset: 0xBD26E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x42A0, symBinAddr: 0x142FC, symSize: 0x104 } - - { offsetInCU: 0x2FE4, offset: 0xBD3F6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor18PluginHeaderMethodV_Tg5', symObjAddr: 0x43A4, symBinAddr: 0x14400, symSize: 0x104 } - - { offsetInCU: 0x3177, offset: 0xBD589, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo8NSObject_p_Tg5', symObjAddr: 0x44A8, symBinAddr: 0x14504, symSize: 0x14C } - - { offsetInCU: 0x3362, offset: 0xBD774, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0x45F4, symBinAddr: 0x14650, symSize: 0x138 } - - { offsetInCU: 0x3526, offset: 0xBD938, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x472C, symBinAddr: 0x14788, symSize: 0xE8 } - - { offsetInCU: 0x36BE, offset: 0xBDAD0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSs_Tg5', symObjAddr: 0x4814, symBinAddr: 0x14870, symSize: 0x104 } - - { offsetInCU: 0x385C, offset: 0xBDC6E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x4918, symBinAddr: 0x14974, symSize: 0x138 } - - { offsetInCU: 0x39A7, offset: 0xBDDB9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11logWarnings33_0151BC8B8398CBA447E765B04F9447A0LL3forySo21CAPInstanceDescriptorC_tFTf4nd_n', symObjAddr: 0x4A50, symBinAddr: 0x14AAC, symSize: 0x414 } - - { offsetInCU: 0x3CEB, offset: 0xBE0FD, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x4E64, symBinAddr: 0x14EC0, symSize: 0x28 } - - { offsetInCU: 0x3CFF, offset: 0xBE111, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOf', symObjAddr: 0x4ED4, symBinAddr: 0x14EE8, symSize: 0x48 } - - { offsetInCU: 0x3D29, offset: 0xBE13B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo8NSObject_p_Tg5Tf4nnd_n', symObjAddr: 0x4F1C, symBinAddr: 0x14F30, symSize: 0x80 } - - { offsetInCU: 0x3DBE, offset: 0xBE1D0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo8NSObject_p_Tg5Tf4nng_n', symObjAddr: 0x4F9C, symBinAddr: 0x14FB0, symSize: 0x118 } - - { offsetInCU: 0x3EFC, offset: 0xBE30E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCMa', symObjAddr: 0x5808, symBinAddr: 0x1581C, symSize: 0x20 } - - { offsetInCU: 0x3F10, offset: 0xBE322, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x58C4, symBinAddr: 0x1589C, symSize: 0x10 } - - { offsetInCU: 0x3F24, offset: 0xBE336, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x58D4, symBinAddr: 0x158AC, symSize: 0x8 } - - { offsetInCU: 0x3F38, offset: 0xBE34A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VFyycfU_TA', symObjAddr: 0x58DC, symBinAddr: 0x158B4, symSize: 0x10 } - - { offsetInCU: 0x3F61, offset: 0xBE373, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFyyScMYccfU_TA', symObjAddr: 0x5918, symBinAddr: 0x158F0, symSize: 0x8 } - - { offsetInCU: 0x3F75, offset: 0xBE387, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x5920, symBinAddr: 0x158F8, symSize: 0x44 } - - { offsetInCU: 0x3F89, offset: 0xBE39B, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0x5E54, symBinAddr: 0x15E2C, symSize: 0x20 } - - { offsetInCU: 0x3F9D, offset: 0xBE3AF, size: 0x8, addend: 0x0, symName: ___swift_project_value_buffer, symObjAddr: 0x5EF4, symBinAddr: 0x15ECC, symSize: 0x18 } - - { offsetInCU: 0x3FB1, offset: 0xBE3C3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0x5F30, symBinAddr: 0x15F08, symSize: 0x8 } - - { offsetInCU: 0x4128, offset: 0xBE53A, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x31F8, symBinAddr: 0x13294, symSize: 0x60 } - - { offsetInCU: 0x4160, offset: 0xBE572, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x31F8, symBinAddr: 0x13294, symSize: 0x60 } - - { offsetInCU: 0x4174, offset: 0xBE586, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x31F8, symBinAddr: 0x13294, symSize: 0x60 } - - { offsetInCU: 0x4188, offset: 0xBE59A, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x31F8, symBinAddr: 0x13294, symSize: 0x60 } - - { offsetInCU: 0x419C, offset: 0xBE5AE, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x31F8, symBinAddr: 0x13294, symSize: 0x60 } - - { offsetInCU: 0x4251, offset: 0xBE663, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3258, symBinAddr: 0x132F4, symSize: 0xC4 } - - { offsetInCU: 0x27, offset: 0xBED8A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC13viewDidAppearyySbFTo', symObjAddr: 0x0, symBinAddr: 0x15F78, symSize: 0xF4 } - - { offsetInCU: 0x75, offset: 0xBEDD8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC13viewDidAppearyySbFTo', symObjAddr: 0x0, symBinAddr: 0x15F78, symSize: 0xF4 } - - { offsetInCU: 0xE9, offset: 0xBEE4C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfcTo', symObjAddr: 0xF4, symBinAddr: 0x1606C, symSize: 0xB0 } - - { offsetInCU: 0x15A, offset: 0xBEEBD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC5coderACSgSo7NSCoderC_tcfcTo', symObjAddr: 0x1A4, symBinAddr: 0x1611C, symSize: 0x44 } - - { offsetInCU: 0x19D, offset: 0xBEF00, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerCfD', symObjAddr: 0x1E8, symBinAddr: 0x16160, symSize: 0x30 } - - { offsetInCU: 0x1DC, offset: 0xBEF3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerCMa', symObjAddr: 0x218, symBinAddr: 0x16190, symSize: 0x20 } - - { offsetInCU: 0x97, offset: 0xBF125, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF', symObjAddr: 0x0, symBinAddr: 0x161B0, symSize: 0x254 } - - { offsetInCU: 0x3A1, offset: 0xBF42F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF', symObjAddr: 0x254, symBinAddr: 0x16404, symSize: 0x90 } - - { offsetInCU: 0x40A, offset: 0xBF498, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF', symObjAddr: 0x2E4, symBinAddr: 0x16494, symSize: 0x14 } - - { offsetInCU: 0x453, offset: 0xBF4E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF', symObjAddr: 0x2F8, symBinAddr: 0x164A8, symSize: 0x14 } - - { offsetInCU: 0x49C, offset: 0xBF52A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF', symObjAddr: 0x30C, symBinAddr: 0x164BC, symSize: 0x14 } - - { offsetInCU: 0x4F1, offset: 0xBF57F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ', symObjAddr: 0x320, symBinAddr: 0x164D0, symSize: 0x8 } - - { offsetInCU: 0x519, offset: 0xBF5A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x328, symBinAddr: 0x164D8, symSize: 0x24 } - - { offsetInCU: 0x59F, offset: 0xBF62D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO9hashValueSivg', symObjAddr: 0x34C, symBinAddr: 0x164FC, symSize: 0x40 } - - { offsetInCU: 0x665, offset: 0xBF6F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x38C, symBinAddr: 0x1653C, symSize: 0x8 } - - { offsetInCU: 0x690, offset: 0xBF71E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x394, symBinAddr: 0x16544, symSize: 0x40 } - - { offsetInCU: 0x773, offset: 0xBF801, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3D4, symBinAddr: 0x16584, symSize: 0x24 } - - { offsetInCU: 0x7FB, offset: 0xBF889, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZ', symObjAddr: 0x48C, symBinAddr: 0x1663C, symSize: 0x4 } - - { offsetInCU: 0x80F, offset: 0xBF89D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO9errorCodeSivg', symObjAddr: 0x490, symBinAddr: 0x16640, symSize: 0x8 } - - { offsetInCU: 0x86F, offset: 0xBF8FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg', symObjAddr: 0x498, symBinAddr: 0x16648, symSize: 0xB8 } - - { offsetInCU: 0x952, offset: 0xBF9E0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP11errorDomainSSvgZTW', symObjAddr: 0x550, symBinAddr: 0x16700, symSize: 0x4 } - - { offsetInCU: 0x972, offset: 0xBFA00, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP11errorDomainSSvgZTW', symObjAddr: 0x550, symBinAddr: 0x16700, symSize: 0x4 } - - { offsetInCU: 0x984, offset: 0xBFA12, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP9errorCodeSivgTW', symObjAddr: 0x554, symBinAddr: 0x16704, symSize: 0x8 } - - { offsetInCU: 0x9A0, offset: 0xBFA2E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP13errorUserInfoSDySSypGvgTW', symObjAddr: 0x55C, symBinAddr: 0x1670C, symSize: 0x14 } - - { offsetInCU: 0x9BC, offset: 0xBFA4A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg', symObjAddr: 0x570, symBinAddr: 0x16720, symSize: 0xB4 } - - { offsetInCU: 0x9F0, offset: 0xBFA7E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP16errorDescriptionSSSgvgTW', symObjAddr: 0x624, symBinAddr: 0x167D4, symSize: 0x14 } - - { offsetInCU: 0xA0C, offset: 0xBFA9A, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor18PluginHeaderMethodV_Tg5', symObjAddr: 0x644, symBinAddr: 0x167F4, symSize: 0x2C } - - { offsetInCU: 0xA24, offset: 0xBFAB2, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0x670, symBinAddr: 0x16820, symSize: 0x1C } - - { offsetInCU: 0xA3C, offset: 0xBFACA, size: 0x8, addend: 0x0, symName: '_$sSaySSGSayxGSKsWl', symObjAddr: 0x728, symBinAddr: 0x1683C, symSize: 0x4C } - - { offsetInCU: 0xA50, offset: 0xBFADE, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0x7B8, symBinAddr: 0x16888, symSize: 0x1C } - - { offsetInCU: 0xA68, offset: 0xBFAF6, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFyp_Tg5', symObjAddr: 0x7D4, symBinAddr: 0x168A4, symSize: 0x30 } - - { offsetInCU: 0xA80, offset: 0xBFB0E, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor7JSValue_pSg_Tg5', symObjAddr: 0x804, symBinAddr: 0x168D4, symSize: 0x1C } - - { offsetInCU: 0xA98, offset: 0xBFB26, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0x820, symBinAddr: 0x168F0, symSize: 0x1C } - - { offsetInCU: 0xAB0, offset: 0xBFB3E, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x83C, symBinAddr: 0x1690C, symSize: 0x1C } - - { offsetInCU: 0xB20, offset: 0xBFBAE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x858, symBinAddr: 0x16928, symSize: 0x104 } - - { offsetInCU: 0xC8E, offset: 0xBFD1C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0x95C, symBinAddr: 0x16A2C, symSize: 0x130 } - - { offsetInCU: 0xE05, offset: 0xBFE93, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_pSg_Tg5', symObjAddr: 0xB94, symBinAddr: 0x16C64, symSize: 0x138 } - - { offsetInCU: 0xF74, offset: 0xC0002, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0xCCC, symBinAddr: 0x16D9C, symSize: 0x138 } - - { offsetInCU: 0x10E3, offset: 0xC0171, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0xE04, symBinAddr: 0x16ED4, symSize: 0x134 } - - { offsetInCU: 0x11E3, offset: 0xC0271, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZTf4d_n', symObjAddr: 0xF38, symBinAddr: 0x17008, symSize: 0x24 } - - { offsetInCU: 0x1201, offset: 0xC028F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASQWb', symObjAddr: 0xF5C, symBinAddr: 0x1702C, symSize: 0x4 } - - { offsetInCU: 0x1215, offset: 0xC02A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOACSQAAWl', symObjAddr: 0xF60, symBinAddr: 0x17030, symSize: 0x44 } - - { offsetInCU: 0x1229, offset: 0xC02B7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAAs0C0PWb', symObjAddr: 0xFA4, symBinAddr: 0x17074, symSize: 0x4 } - - { offsetInCU: 0x123D, offset: 0xC02CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOACs0C0AAWl', symObjAddr: 0xFA8, symBinAddr: 0x17078, symSize: 0x44 } - - { offsetInCU: 0x1251, offset: 0xC02DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AAs0C0PWb', symObjAddr: 0xFEC, symBinAddr: 0x170BC, symSize: 0x4 } - - { offsetInCU: 0x1265, offset: 0xC02F3, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0xFF0, symBinAddr: 0x170C0, symSize: 0x4 } - - { offsetInCU: 0x1279, offset: 0xC0307, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xFF4, symBinAddr: 0x170C4, symSize: 0x4 } - - { offsetInCU: 0x128D, offset: 0xC031B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwet', symObjAddr: 0xFF8, symBinAddr: 0x170C8, symSize: 0x50 } - - { offsetInCU: 0x12A1, offset: 0xC032F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwst', symObjAddr: 0x1048, symBinAddr: 0x17118, symSize: 0x8C } - - { offsetInCU: 0x12B5, offset: 0xC0343, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwug', symObjAddr: 0x10D4, symBinAddr: 0x171A4, symSize: 0x8 } - - { offsetInCU: 0x12C9, offset: 0xC0357, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwup', symObjAddr: 0x10DC, symBinAddr: 0x171AC, symSize: 0x4 } - - { offsetInCU: 0x12DD, offset: 0xC036B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwui', symObjAddr: 0x10E0, symBinAddr: 0x171B0, symSize: 0x4 } - - { offsetInCU: 0x12F1, offset: 0xC037F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOMa', symObjAddr: 0x10E4, symBinAddr: 0x171B4, symSize: 0x10 } - - { offsetInCU: 0x1305, offset: 0xC0393, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOAC10Foundation13CustomNSErrorAAWl', symObjAddr: 0x10F4, symBinAddr: 0x171C4, symSize: 0x44 } - - { offsetInCU: 0x1319, offset: 0xC03A7, size: 0x8, addend: 0x0, symName: '_$sSo12NSHTTPCookieCMa', symObjAddr: 0x1138, symBinAddr: 0x17208, symSize: 0x3C } - - { offsetInCU: 0x13D3, offset: 0xC0461, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x3F8, symBinAddr: 0x165A8, symSize: 0x3C } - - { offsetInCU: 0x146F, offset: 0xC04FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x484, symBinAddr: 0x16634, symSize: 0x4 } - - { offsetInCU: 0x148B, offset: 0xC0519, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x488, symBinAddr: 0x16638, symSize: 0x4 } - - { offsetInCU: 0x155C, offset: 0xC05EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP7_domainSSvgTW', symObjAddr: 0x434, symBinAddr: 0x165E4, symSize: 0x28 } - - { offsetInCU: 0x1578, offset: 0xC0606, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP5_codeSivgTW', symObjAddr: 0x45C, symBinAddr: 0x1660C, symSize: 0x28 } - - { offsetInCU: 0x15A3, offset: 0xC0631, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP13failureReasonSSSgvgTW', symObjAddr: 0x638, symBinAddr: 0x167E8, symSize: 0x4 } - - { offsetInCU: 0x15BF, offset: 0xC064D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgvgTW', symObjAddr: 0x63C, symBinAddr: 0x167EC, symSize: 0x4 } - - { offsetInCU: 0x15DB, offset: 0xC0669, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP10helpAnchorSSSgvgTW', symObjAddr: 0x640, symBinAddr: 0x167F0, symSize: 0x4 } - - { offsetInCU: 0x2B, offset: 0xC08D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF', symObjAddr: 0x0, symBinAddr: 0x17244, symSize: 0x90 } - - { offsetInCU: 0x4F, offset: 0xC08F8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor28associatedKeyboardFlagHandle33_3E0898892F6945378FAE8ABD0FA44A3BLLs5UInt8Vvp', symObjAddr: 0xAC8, symBinAddr: 0x74D60, symSize: 0x0 } - - { offsetInCU: 0x5D, offset: 0xC0906, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF', symObjAddr: 0x0, symBinAddr: 0x17244, symSize: 0x90 } - - { offsetInCU: 0xEF, offset: 0xC0998, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg', symObjAddr: 0x90, symBinAddr: 0x172D4, symSize: 0xE0 } - - { offsetInCU: 0x119, offset: 0xC09C2, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE27associatedKeyboardFlagValueypSgvs', symObjAddr: 0x170, symBinAddr: 0x173B4, symSize: 0x108 } - - { offsetInCU: 0x17A, offset: 0xC0A23, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE23_swizzleKeyboardMethodsyyFZTo', symObjAddr: 0x278, symBinAddr: 0x174BC, symSize: 0x28 } - - { offsetInCU: 0x1B2, offset: 0xC0A5B, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzle_WZ', symObjAddr: 0x2A0, symBinAddr: 0x174E4, symSize: 0x4 } - - { offsetInCU: 0x23A, offset: 0xC0AE3, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_', symObjAddr: 0x2A4, symBinAddr: 0x174E8, symSize: 0x11C } - - { offsetInCU: 0x308, offset: 0xC0BB1, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ABSgypSgcfU_', symObjAddr: 0x3C0, symBinAddr: 0x17604, symSize: 0xD8 } - - { offsetInCU: 0x35B, offset: 0xC0C04, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ys13OpaquePointerV_10ObjectiveC8SelectorVtcfU0_yyp_SVS3bypSgtcfU_', symObjAddr: 0x498, symBinAddr: 0x176DC, symSize: 0x36C } - - { offsetInCU: 0x454, offset: 0xC0CFD, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ys13OpaquePointerV_10ObjectiveC8SelectorVtcfU0_yyp_SVS3bypSgtcfU_TA', symObjAddr: 0x828, symBinAddr: 0x17A6C, symSize: 0x28 } - - { offsetInCU: 0x468, offset: 0xC0D11, size: 0x8, addend: 0x0, symName: '_$sypSVS3bypSgIegnyyyyn_yXlSVS3byXlSgIeyByyyyyy_TR', symObjAddr: 0x850, symBinAddr: 0x17A94, symSize: 0xD4 } - - { offsetInCU: 0x480, offset: 0xC0D29, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x924, symBinAddr: 0x17B68, symSize: 0x10 } - - { offsetInCU: 0x494, offset: 0xC0D3D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x934, symBinAddr: 0x17B78, symSize: 0x8 } - - { offsetInCU: 0x4A8, offset: 0xC0D51, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x93C, symBinAddr: 0x17B80, symSize: 0x40 } - - { offsetInCU: 0x4BC, offset: 0xC0D65, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0xA18, symBinAddr: 0x17BC0, symSize: 0x24 } - - { offsetInCU: 0x4D0, offset: 0xC0D79, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0xA3C, symBinAddr: 0x17BE4, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0xC1001, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ', symObjAddr: 0x0, symBinAddr: 0x17C64, symSize: 0x24C } - - { offsetInCU: 0x6D, offset: 0xC1043, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ', symObjAddr: 0x0, symBinAddr: 0x17C64, symSize: 0x24C } - - { offsetInCU: 0x171, offset: 0xC1147, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0x468, symBinAddr: 0x18008, symSize: 0x120 } - - { offsetInCU: 0x1C2, offset: 0xC1198, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlFSS_SSTg5', symObjAddr: 0x28C, symBinAddr: 0x17EB0, symSize: 0x158 } - - { offsetInCU: 0x4F, offset: 0xC1394, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfC', symObjAddr: 0x0, symBinAddr: 0x18128, symSize: 0x30 } - - { offsetInCU: 0x97, offset: 0xC13DC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg', symObjAddr: 0x98, symBinAddr: 0x181C0, symSize: 0x44 } - - { offsetInCU: 0xB6, offset: 0xC13FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc', symObjAddr: 0xDC, symBinAddr: 0x18204, symSize: 0x190 } - - { offsetInCU: 0x13D, offset: 0xC1482, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC7cleanUpyyF', symObjAddr: 0x28C, symBinAddr: 0x183B4, symSize: 0x98 } - - { offsetInCU: 0x1DE, offset: 0xC1523, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF', symObjAddr: 0x324, symBinAddr: 0x1844C, symSize: 0x6C } - - { offsetInCU: 0x296, offset: 0xC15DB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtF', symObjAddr: 0x390, symBinAddr: 0x184B8, symSize: 0x84 } - - { offsetInCU: 0x35C, offset: 0xC16A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtFTo', symObjAddr: 0x414, symBinAddr: 0x1853C, symSize: 0xBC } - - { offsetInCU: 0x406, offset: 0xC174B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctF', symObjAddr: 0x4D0, symBinAddr: 0x185F8, symSize: 0x24 } - - { offsetInCU: 0x49D, offset: 0xC17E2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctFTo', symObjAddr: 0x4F4, symBinAddr: 0x1861C, symSize: 0xA8 } - - { offsetInCU: 0x4FD, offset: 0xC1842, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctF', symObjAddr: 0x59C, symBinAddr: 0x186C4, symSize: 0x24 } - - { offsetInCU: 0x582, offset: 0xC18C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctFTo', symObjAddr: 0x5C0, symBinAddr: 0x186E8, symSize: 0xA8 } - - { offsetInCU: 0x5E2, offset: 0xC1927, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF', symObjAddr: 0x668, symBinAddr: 0x18790, symSize: 0x914 } - - { offsetInCU: 0x7DD, offset: 0xC1B22, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctFTo', symObjAddr: 0xFBC, symBinAddr: 0x190A4, symSize: 0x9C } - - { offsetInCU: 0x80F, offset: 0xC1B54, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtF', symObjAddr: 0x1058, symBinAddr: 0x19140, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0xC1B77, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtFTo', symObjAddr: 0x105C, symBinAddr: 0x19144, symSize: 0x74 } - - { offsetInCU: 0x864, offset: 0xC1BA9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptF', symObjAddr: 0x10D0, symBinAddr: 0x191B8, symSize: 0x8 } - - { offsetInCU: 0x880, offset: 0xC1BC5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptF', symObjAddr: 0x10E4, symBinAddr: 0x191CC, symSize: 0x8 } - - { offsetInCU: 0x89C, offset: 0xC1BE1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CF', symObjAddr: 0x1194, symBinAddr: 0x1927C, symSize: 0x24 } - - { offsetInCU: 0x8EB, offset: 0xC1C30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CFTo', symObjAddr: 0x11B8, symBinAddr: 0x192A0, symSize: 0x68 } - - { offsetInCU: 0x920, offset: 0xC1C65, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtF', symObjAddr: 0x1220, symBinAddr: 0x19308, symSize: 0x8 } - - { offsetInCU: 0x943, offset: 0xC1C88, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtFTo', symObjAddr: 0x1228, symBinAddr: 0x19310, symSize: 0x74 } - - { offsetInCU: 0x975, offset: 0xC1CBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF', symObjAddr: 0x129C, symBinAddr: 0x19384, symSize: 0x270 } - - { offsetInCU: 0xAAE, offset: 0xC1DF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctFTo', symObjAddr: 0x1510, symBinAddr: 0x195F8, symSize: 0xC8 } - - { offsetInCU: 0xAE0, offset: 0xC1E25, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctF', symObjAddr: 0x15D8, symBinAddr: 0x196C0, symSize: 0x14 } - - { offsetInCU: 0xB03, offset: 0xC1E48, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctFTo', symObjAddr: 0x15EC, symBinAddr: 0x196D4, symSize: 0xDC } - - { offsetInCU: 0xB35, offset: 0xC1E7A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF', symObjAddr: 0x16C8, symBinAddr: 0x197B0, symSize: 0xBC8 } - - { offsetInCU: 0x1017, offset: 0xC235C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU_', symObjAddr: 0x2290, symBinAddr: 0x1A378, symSize: 0x50 } - - { offsetInCU: 0x1054, offset: 0xC2399, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo13UIAlertActionCcfU1_', symObjAddr: 0x2334, symBinAddr: 0x1A41C, symSize: 0x184 } - - { offsetInCU: 0x11F3, offset: 0xC2538, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFTo', symObjAddr: 0x24B8, symBinAddr: 0x1A5A0, symSize: 0x100 } - - { offsetInCU: 0x1225, offset: 0xC256A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtF', symObjAddr: 0x25FC, symBinAddr: 0x1A6E4, symSize: 0x8 } - - { offsetInCU: 0x1248, offset: 0xC258D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtFTo', symObjAddr: 0x2604, symBinAddr: 0x1A6EC, symSize: 0xA8 } - - { offsetInCU: 0x127B, offset: 0xC25C0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtF', symObjAddr: 0x26AC, symBinAddr: 0x1A794, symSize: 0x54 } - - { offsetInCU: 0x12E0, offset: 0xC2625, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtFTo', symObjAddr: 0x2700, symBinAddr: 0x1A7E8, symSize: 0xA4 } - - { offsetInCU: 0x1320, offset: 0xC2665, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfC', symObjAddr: 0x27F0, symBinAddr: 0x1A8D8, symSize: 0x20 } - - { offsetInCU: 0x133E, offset: 0xC2683, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfc', symObjAddr: 0x2810, symBinAddr: 0x1A8F8, symSize: 0x2C } - - { offsetInCU: 0x13A1, offset: 0xC26E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfcTo', symObjAddr: 0x283C, symBinAddr: 0x1A924, symSize: 0x2C } - - { offsetInCU: 0x1408, offset: 0xC274D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCfD', symObjAddr: 0x2868, symBinAddr: 0x1A950, symSize: 0x30 } - - { offsetInCU: 0x1435, offset: 0xC277A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF06$sSo24lmH16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4dnng_n', symObjAddr: 0x292C, symBinAddr: 0x1AA14, symSize: 0x914 } - - { offsetInCU: 0x1681, offset: 0xC29C6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtFTf4ndn_n', symObjAddr: 0x3240, symBinAddr: 0x1B328, symSize: 0xD8 } - - { offsetInCU: 0x17C5, offset: 0xC2B0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptFTf4ndnn_n', symObjAddr: 0x3318, symBinAddr: 0x1B400, symSize: 0x4A0 } - - { offsetInCU: 0x19CA, offset: 0xC2D0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptFTf4ndnn_n', symObjAddr: 0x37B8, symBinAddr: 0x1B8A0, symSize: 0x470 } - - { offsetInCU: 0x1B71, offset: 0xC2EB6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC10logJSError33_F9163AD9166938F8B4F54F28D02AA29FLLyySDySSypGFTf4nd_n', symObjAddr: 0x3C28, symBinAddr: 0x1BD10, symSize: 0x7AC } - - { offsetInCU: 0x20FF, offset: 0xC3444, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtFTf4dnn_n', symObjAddr: 0x43D4, symBinAddr: 0x1C4BC, symSize: 0xC8C } - - { offsetInCU: 0x2638, offset: 0xC397D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nnncn_nTf4dndng_n', symObjAddr: 0x50A0, symBinAddr: 0x1D188, symSize: 0x2D8 } - - { offsetInCU: 0x2755, offset: 0xC3A9A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctFTf4dndnn_n', symObjAddr: 0x5378, symBinAddr: 0x1D460, symSize: 0x2FC } - - { offsetInCU: 0x284B, offset: 0xC3B90, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF019$sSo8NSStringCSgIeyQ12_SSSgIegg_TRSo0Y0CSgIeyBy_Tf1nnnncn_nTf4dnndng_n', symObjAddr: 0x5748, symBinAddr: 0x1D7A8, symSize: 0xC88 } - - { offsetInCU: 0x2D3F, offset: 0xC4084, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtFTf4ddndd_n', symObjAddr: 0x63D0, symBinAddr: 0x1E430, symSize: 0x1FC } - - { offsetInCU: 0x2D9F, offset: 0xC40E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0CvpACTk', symObjAddr: 0x30, symBinAddr: 0x18158, symSize: 0x68 } - - { offsetInCU: 0x2DD5, offset: 0xC411A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCMa', symObjAddr: 0x26C, symBinAddr: 0x18394, symSize: 0x20 } - - { offsetInCU: 0x301E, offset: 0xC4363, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TR', symObjAddr: 0x25B8, symBinAddr: 0x1A6A0, symSize: 0x44 } - - { offsetInCU: 0x308A, offset: 0xC43CF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCfETo', symObjAddr: 0x2898, symBinAddr: 0x1A980, symSize: 0x4C } - - { offsetInCU: 0x30B9, offset: 0xC43FE, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaABSHSCWl', symObjAddr: 0x28E4, symBinAddr: 0x1A9CC, symSize: 0x48 } - - { offsetInCU: 0x31A9, offset: 0xC44EE, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x5088, symBinAddr: 0x1D170, symSize: 0x10 } - - { offsetInCU: 0x31BD, offset: 0xC4502, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x5098, symBinAddr: 0x1D180, symSize: 0x8 } - - { offsetInCU: 0x31DC, offset: 0xC4521, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU_TA', symObjAddr: 0x56DC, symBinAddr: 0x1D780, symSize: 0x8 } - - { offsetInCU: 0x31F0, offset: 0xC4535, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x56F0, symBinAddr: 0x1D794, symSize: 0x14 } - - { offsetInCU: 0x320F, offset: 0xC4554, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x6810, symBinAddr: 0x1E870, symSize: 0xC } - - { offsetInCU: 0x3223, offset: 0xC4568, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwet', symObjAddr: 0x6820, symBinAddr: 0x1E87C, symSize: 0xA8 } - - { offsetInCU: 0x3237, offset: 0xC457C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwst', symObjAddr: 0x68C8, symBinAddr: 0x1E924, symSize: 0xC4 } - - { offsetInCU: 0x324B, offset: 0xC4590, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwug', symObjAddr: 0x698C, symBinAddr: 0x1E9E8, symSize: 0x1C } - - { offsetInCU: 0x325F, offset: 0xC45A4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwup', symObjAddr: 0x69A8, symBinAddr: 0x1EA04, symSize: 0x4 } - - { offsetInCU: 0x3273, offset: 0xC45B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwui', symObjAddr: 0x69AC, symBinAddr: 0x1EA08, symSize: 0x18 } - - { offsetInCU: 0x3287, offset: 0xC45CC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOMa', symObjAddr: 0x69C4, symBinAddr: 0x1EA20, symSize: 0x10 } - - { offsetInCU: 0x329B, offset: 0xC45E0, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TRTA', symObjAddr: 0x69F8, symBinAddr: 0x1EA54, symSize: 0x8 } - - { offsetInCU: 0x32BA, offset: 0xC45FF, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x6A78, symBinAddr: 0x1EAD4, symSize: 0x14 } - - { offsetInCU: 0x32E3, offset: 0xC4628, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x6A8C, symBinAddr: 0x1EAE8, symSize: 0x8 } - - { offsetInCU: 0x345D, offset: 0xC47A2, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTg5', symObjAddr: 0x27A4, symBinAddr: 0x1A88C, symSize: 0x4C } - - { offsetInCU: 0x4F, offset: 0xC4D56, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19dateStringFormatter33_883E0F63E6283FEB7FEBC7F75A4BFDE5LLSo013NSISO8601DateD0Cvp', symObjAddr: 0x2748, symBinAddr: 0x74E38, symSize: 0x0 } - - { offsetInCU: 0x68, offset: 0xC4D6F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSF', symObjAddr: 0x0, symBinAddr: 0x1EC28, symSize: 0x114 } - - { offsetInCU: 0xD7, offset: 0xC4DDE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF', symObjAddr: 0x114, symBinAddr: 0x1ED3C, symSize: 0x58 } - - { offsetInCU: 0x134, offset: 0xC4E3B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF', symObjAddr: 0x16C, symBinAddr: 0x1ED94, symSize: 0x110 } - - { offsetInCU: 0x1A3, offset: 0xC4EAA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSStringContainerP9getStringyS2S_SStF', symObjAddr: 0x27C, symBinAddr: 0x1EEA4, symSize: 0x4 } - - { offsetInCU: 0x1BF, offset: 0xC4EC6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF', symObjAddr: 0x280, symBinAddr: 0x1EEA8, symSize: 0x4 } - - { offsetInCU: 0x1DB, offset: 0xC4EE2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF', symObjAddr: 0x284, symBinAddr: 0x1EEAC, symSize: 0x3C } - - { offsetInCU: 0x238, offset: 0xC4F3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14JSIntContainerP6getIntySiSS_SitF', symObjAddr: 0x2C0, symBinAddr: 0x1EEE8, symSize: 0x4 } - - { offsetInCU: 0x254, offset: 0xC4F5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF', symObjAddr: 0x2C4, symBinAddr: 0x1EEEC, symSize: 0x34 } - - { offsetInCU: 0x2B1, offset: 0xC4FB8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSFloatContainerP8getFloatySfSS_SftF', symObjAddr: 0x2F8, symBinAddr: 0x1EF20, symSize: 0x4 } - - { offsetInCU: 0x2CD, offset: 0xC4FD4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF', symObjAddr: 0x2FC, symBinAddr: 0x1EF24, symSize: 0x30 } - - { offsetInCU: 0x329, offset: 0xC5030, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF', symObjAddr: 0x32C, symBinAddr: 0x1EF54, symSize: 0x4 } - - { offsetInCU: 0x345, offset: 0xC504C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF', symObjAddr: 0x330, symBinAddr: 0x1EF58, symSize: 0x30 } - - { offsetInCU: 0x3A1, offset: 0xC50A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF', symObjAddr: 0x360, symBinAddr: 0x1EF88, symSize: 0x4 } - - { offsetInCU: 0x3BD, offset: 0xC50C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF', symObjAddr: 0x364, symBinAddr: 0x1EF8C, symSize: 0x140 } - - { offsetInCU: 0x41A, offset: 0xC5121, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF', symObjAddr: 0x4A4, symBinAddr: 0x1F0CC, symSize: 0x4 } - - { offsetInCU: 0x436, offset: 0xC513D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF', symObjAddr: 0x4A8, symBinAddr: 0x1F0D0, symSize: 0x40 } - - { offsetInCU: 0x493, offset: 0xC519A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF', symObjAddr: 0x4E8, symBinAddr: 0x1F110, symSize: 0x10 } - - { offsetInCU: 0x4AF, offset: 0xC51B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF', symObjAddr: 0x4F8, symBinAddr: 0x1F120, symSize: 0x60 } - - { offsetInCU: 0x516, offset: 0xC521D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF', symObjAddr: 0x558, symBinAddr: 0x1F180, symSize: 0x4 } - - { offsetInCU: 0x532, offset: 0xC5239, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF', symObjAddr: 0x55C, symBinAddr: 0x1F184, symSize: 0x40 } - - { offsetInCU: 0x58F, offset: 0xC5296, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF', symObjAddr: 0x59C, symBinAddr: 0x1F1C4, symSize: 0xA4 } - - { offsetInCU: 0x5FE, offset: 0xC5305, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF', symObjAddr: 0x640, symBinAddr: 0x1F268, symSize: 0x90 } - - { offsetInCU: 0x64B, offset: 0xC5352, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE6getIntySiSgSSF', symObjAddr: 0x6D0, symBinAddr: 0x1F2F8, symSize: 0x118 } - - { offsetInCU: 0x6BA, offset: 0xC53C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF', symObjAddr: 0x7E8, symBinAddr: 0x1F410, symSize: 0x21C } - - { offsetInCU: 0x760, offset: 0xC5467, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF', symObjAddr: 0xA04, symBinAddr: 0x1F62C, symSize: 0x118 } - - { offsetInCU: 0x7CF, offset: 0xC54D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF', symObjAddr: 0xB1C, symBinAddr: 0x1F744, symSize: 0x338 } - - { offsetInCU: 0x877, offset: 0xC557E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ', symObjAddr: 0xF84, symBinAddr: 0x1FBAC, symSize: 0xE0 } - - { offsetInCU: 0x8DF, offset: 0xC55E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15coerceToJSValue33_883E0F63E6283FEB7FEBC7F75A4BFDE5LL_15formattingDatesAA0D0_pSgypSg_SbtF', symObjAddr: 0x1064, symBinAddr: 0x1FC8C, symSize: 0xB44 } - - { offsetInCU: 0x11EC, offset: 0xC5EF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ', symObjAddr: 0x1BA8, symBinAddr: 0x207D0, symSize: 0x4 } - - { offsetInCU: 0x1229, offset: 0xC5F30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ', symObjAddr: 0x1BAC, symBinAddr: 0x207D4, symSize: 0x18C } - - { offsetInCU: 0x1491, offset: 0xC6198, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19dateStringFormatter33_883E0F63E6283FEB7FEBC7F75A4BFDE5LL_WZ', symObjAddr: 0x1D38, symBinAddr: 0x20960, symSize: 0x30 } - - { offsetInCU: 0x14D6, offset: 0xC61DD, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSStringContainerA2cDP9getStringyS2S_SStFTW', symObjAddr: 0x1D68, symBinAddr: 0x20990, symSize: 0x4 } - - { offsetInCU: 0x14F2, offset: 0xC61F9, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSStringContainerA2cDP9getStringySSSgSSFTW', symObjAddr: 0x1D6C, symBinAddr: 0x20994, symSize: 0xC } - - { offsetInCU: 0x150E, offset: 0xC6215, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSBoolContainerA2cDP7getBoolySbSS_SbtFTW', symObjAddr: 0x1D78, symBinAddr: 0x209A0, symSize: 0x4 } - - { offsetInCU: 0x152A, offset: 0xC6231, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSBoolContainerA2cDP7getBoolySbSgSSFTW', symObjAddr: 0x1D7C, symBinAddr: 0x209A4, symSize: 0xC } - - { offsetInCU: 0x1546, offset: 0xC624D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor14JSIntContainerA2cDP6getIntySiSS_SitFTW', symObjAddr: 0x1D88, symBinAddr: 0x209B0, symSize: 0x4 } - - { offsetInCU: 0x1562, offset: 0xC6269, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor14JSIntContainerA2cDP6getIntySiSgSSFTW', symObjAddr: 0x1D8C, symBinAddr: 0x209B4, symSize: 0x20 } - - { offsetInCU: 0x157E, offset: 0xC6285, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSFloatContainerA2cDP8getFloatySfSS_SftFTW', symObjAddr: 0x1DAC, symBinAddr: 0x209D4, symSize: 0x4 } - - { offsetInCU: 0x159A, offset: 0xC62A1, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSFloatContainerA2cDP8getFloatySfSgSSFTW', symObjAddr: 0x1DB0, symBinAddr: 0x209D8, symSize: 0x30 } - - { offsetInCU: 0x15B6, offset: 0xC62BD, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSDoubleContainerA2cDP9getDoubleySdSS_SdtFTW', symObjAddr: 0x1DE0, symBinAddr: 0x20A08, symSize: 0x4 } - - { offsetInCU: 0x15D2, offset: 0xC62D9, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSDoubleContainerA2cDP9getDoubleySdSgSSFTW', symObjAddr: 0x1DE4, symBinAddr: 0x20A0C, symSize: 0x20 } - - { offsetInCU: 0x15EE, offset: 0xC62F5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSDateContainerA2cDP7getDatey10Foundation0G0VSS_AItFTW', symObjAddr: 0x1E04, symBinAddr: 0x20A2C, symSize: 0x4 } - - { offsetInCU: 0x160A, offset: 0xC6311, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSDateContainerA2cDP7getDatey10Foundation0G0VSgSSFTW', symObjAddr: 0x1E08, symBinAddr: 0x20A30, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0xC632D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayAC7JSValue_pGSS_AHtFTW', symObjAddr: 0x1E14, symBinAddr: 0x20A3C, symSize: 0x4 } - - { offsetInCU: 0x1642, offset: 0xC6349, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayqd__GSgSS_qd__mtlFTW', symObjAddr: 0x1E18, symBinAddr: 0x20A40, symSize: 0x10 } - - { offsetInCU: 0x165E, offset: 0xC6365, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayAC7JSValue_pGSgSSFTW', symObjAddr: 0x1E28, symBinAddr: 0x20A50, symSize: 0xC } - - { offsetInCU: 0x167A, offset: 0xC6381, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSObjectContainerA2cDP9getObjectySDySSAC7JSValue_pGSS_AHtFTW', symObjAddr: 0x1E34, symBinAddr: 0x20A5C, symSize: 0x4 } - - { offsetInCU: 0x1696, offset: 0xC639D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSObjectContainerA2cDP9getObjectySDySSAC7JSValue_pGSgSSFTW', symObjAddr: 0x1E38, symBinAddr: 0x20A60, symSize: 0xC } - - { offsetInCU: 0x16C8, offset: 0xC63CF, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1E44, symBinAddr: 0x20A6C, symSize: 0xE0 } - - { offsetInCU: 0x1707, offset: 0xC640E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x1F24, symBinAddr: 0x20B4C, symSize: 0x174 } - - { offsetInCU: 0x178F, offset: 0xC6496, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x2098, symBinAddr: 0x20CC0, symSize: 0xC4 } - - { offsetInCU: 0x17D2, offset: 0xC64D9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x215C, symBinAddr: 0x20D84, symSize: 0x64 } - - { offsetInCU: 0x1814, offset: 0xC651B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOb', symObjAddr: 0x2244, symBinAddr: 0x20DE8, symSize: 0x48 } - - { offsetInCU: 0x1828, offset: 0xC652F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x22EC, symBinAddr: 0x20E6C, symSize: 0x80 } - - { offsetInCU: 0x18D1, offset: 0xC65D8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x236C, symBinAddr: 0x20EEC, symSize: 0x30 } - - { offsetInCU: 0x18FE, offset: 0xC6605, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZTf4nnd_n', symObjAddr: 0x239C, symBinAddr: 0x20F1C, symSize: 0xD4 } - - { offsetInCU: 0x193D, offset: 0xC6644, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pWOb', symObjAddr: 0x24CC, symBinAddr: 0x21010, symSize: 0x18 } - - { offsetInCU: 0x1951, offset: 0xC6658, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesOMa', symObjAddr: 0x25A8, symBinAddr: 0x210EC, symSize: 0x10 } - - { offsetInCU: 0x1965, offset: 0xC666C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x25B8, symBinAddr: 0x210FC, symSize: 0x3C } - - { offsetInCU: 0x1979, offset: 0xC6680, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x25F4, symBinAddr: 0x21138, symSize: 0x34 } - - { offsetInCU: 0x198D, offset: 0xC6694, size: 0x8, addend: 0x0, symName: '_$s10Foundation25NSFastEnumerationIteratorVACStAAWl', symObjAddr: 0x26B8, symBinAddr: 0x211A4, symSize: 0x48 } - - { offsetInCU: 0x4F, offset: 0xC6DB5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13tmpVCAppeared10Foundation12NotificationVvpZ', symObjAddr: 0x33D30, symBinAddr: 0x77BC0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xC6DCF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultSchemeSSvpZ', symObjAddr: 0xC450, symBinAddr: 0x74E70, symSize: 0x0 } - - { offsetInCU: 0x83, offset: 0xC6DE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ', symObjAddr: 0x0, symBinAddr: 0x21234, symSize: 0x8 } - - { offsetInCU: 0xCC, offset: 0xC6E32, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfC', symObjAddr: 0x8, symBinAddr: 0x2123C, symSize: 0xC0 } - - { offsetInCU: 0x152, offset: 0xC6EB8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvgTo', symObjAddr: 0xC8, symBinAddr: 0x212FC, symSize: 0xAC } - - { offsetInCU: 0x19B, offset: 0xC6F01, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvg', symObjAddr: 0x174, symBinAddr: 0x213A8, symSize: 0x7C } - - { offsetInCU: 0x1F0, offset: 0xC6F56, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvgTo', symObjAddr: 0x1F0, symBinAddr: 0x21424, symSize: 0x10 } - - { offsetInCU: 0x210, offset: 0xC6F76, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvgTo', symObjAddr: 0x1F0, symBinAddr: 0x21424, symSize: 0x10 } - - { offsetInCU: 0x22B, offset: 0xC6F91, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvg', symObjAddr: 0x200, symBinAddr: 0x21434, symSize: 0x10 } - - { offsetInCU: 0x248, offset: 0xC6FAE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM', symObjAddr: 0x240, symBinAddr: 0x21474, symSize: 0x44 } - - { offsetInCU: 0x277, offset: 0xC6FDD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM.resume.0', symObjAddr: 0x284, symBinAddr: 0x214B8, symSize: 0x4 } - - { offsetInCU: 0x2A2, offset: 0xC7008, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isSimEnvironmentSbvgTo', symObjAddr: 0x288, symBinAddr: 0x214BC, symSize: 0x8 } - - { offsetInCU: 0x2BE, offset: 0xC7024, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isSimEnvironmentSbvg', symObjAddr: 0x290, symBinAddr: 0x214C4, symSize: 0x8 } - - { offsetInCU: 0x2E9, offset: 0xC704F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgTo', symObjAddr: 0x298, symBinAddr: 0x214CC, symSize: 0x8 } - - { offsetInCU: 0x305, offset: 0xC706B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvg', symObjAddr: 0x2A0, symBinAddr: 0x214D4, symSize: 0x8 } - - { offsetInCU: 0x330, offset: 0xC7096, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0VvgTo', symObjAddr: 0x2A8, symBinAddr: 0x214DC, symSize: 0x38 } - - { offsetInCU: 0x36A, offset: 0xC70D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvg', symObjAddr: 0x2E0, symBinAddr: 0x21514, symSize: 0xC0 } - - { offsetInCU: 0x3DF, offset: 0xC7145, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvgTo', symObjAddr: 0x3A0, symBinAddr: 0x215D4, symSize: 0xD4 } - - { offsetInCU: 0x442, offset: 0xC71A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvg', symObjAddr: 0x474, symBinAddr: 0x216A8, symSize: 0x9C } - - { offsetInCU: 0x499, offset: 0xC71FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsTo', symObjAddr: 0x510, symBinAddr: 0x21744, symSize: 0x3C } - - { offsetInCU: 0x4B5, offset: 0xC721B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvs', symObjAddr: 0x54C, symBinAddr: 0x21780, symSize: 0x214 } - - { offsetInCU: 0x519, offset: 0xC727F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsyyScMYccfU_', symObjAddr: 0x810, symBinAddr: 0x21A44, symSize: 0xF8 } - - { offsetInCU: 0x589, offset: 0xC72EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvM', symObjAddr: 0x908, symBinAddr: 0x21B3C, symSize: 0xC4 } - - { offsetInCU: 0x607, offset: 0xC736D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvM.resume.0', symObjAddr: 0x9CC, symBinAddr: 0x21C00, symSize: 0x2C } - - { offsetInCU: 0x650, offset: 0xC73B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvgTo', symObjAddr: 0x9F8, symBinAddr: 0x21C2C, symSize: 0xD4 } - - { offsetInCU: 0x6B3, offset: 0xC7419, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvg', symObjAddr: 0xACC, symBinAddr: 0x21D00, symSize: 0xA0 } - - { offsetInCU: 0x70A, offset: 0xC7470, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsTo', symObjAddr: 0xB6C, symBinAddr: 0x21DA0, symSize: 0x3C } - - { offsetInCU: 0x728, offset: 0xC748E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsyyScMYccfU_', symObjAddr: 0xC74, symBinAddr: 0x21EA8, symSize: 0xF8 } - - { offsetInCU: 0x76E, offset: 0xC74D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM', symObjAddr: 0xD6C, symBinAddr: 0x21FA0, symSize: 0xC4 } - - { offsetInCU: 0x7EC, offset: 0xC7552, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM.resume.0', symObjAddr: 0xE30, symBinAddr: 0x22064, symSize: 0x28 } - - { offsetInCU: 0x817, offset: 0xC757D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvgTo', symObjAddr: 0xE58, symBinAddr: 0x2208C, symSize: 0x38 } - - { offsetInCU: 0x833, offset: 0xC7599, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvg', symObjAddr: 0xE90, symBinAddr: 0x220C4, symSize: 0xD0 } - - { offsetInCU: 0x8AA, offset: 0xC7610, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsTo', symObjAddr: 0xF60, symBinAddr: 0x22194, symSize: 0x3C } - - { offsetInCU: 0x8C8, offset: 0xC762E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsyyScMYccfU_', symObjAddr: 0x11C0, symBinAddr: 0x223F4, symSize: 0xF8 } - - { offsetInCU: 0x92C, offset: 0xC7692, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM', symObjAddr: 0x12B8, symBinAddr: 0x224EC, symSize: 0x104 } - - { offsetInCU: 0x9CA, offset: 0xC7730, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM.resume.0', symObjAddr: 0x13BC, symBinAddr: 0x225F0, symSize: 0x28 } - - { offsetInCU: 0x9F5, offset: 0xC775B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13capacitorSiteSSvgZ', symObjAddr: 0x1464, symBinAddr: 0x22698, symSize: 0x1C } - - { offsetInCU: 0xA20, offset: 0xC7786, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ', symObjAddr: 0x1480, symBinAddr: 0x226B4, symSize: 0x1C } - - { offsetInCU: 0xA4B, offset: 0xC77B1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultSchemeSSvgZ', symObjAddr: 0x14C4, symBinAddr: 0x226F8, symSize: 0x5C } - - { offsetInCU: 0xAAC, offset: 0xC7812, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg', symObjAddr: 0x15F0, symBinAddr: 0x22824, symSize: 0x4C } - - { offsetInCU: 0xACB, offset: 0xC7831, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvgTo', symObjAddr: 0x163C, symBinAddr: 0x22870, symSize: 0xAC } - - { offsetInCU: 0xB14, offset: 0xC787A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvg', symObjAddr: 0x16E8, symBinAddr: 0x2291C, symSize: 0x7C } - - { offsetInCU: 0xB4B, offset: 0xC78B1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM', symObjAddr: 0x1928, symBinAddr: 0x22B5C, symSize: 0x44 } - - { offsetInCU: 0xB7A, offset: 0xC78E0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyF', symObjAddr: 0x196C, symBinAddr: 0x22BA0, symSize: 0x7C } - - { offsetInCU: 0xBEF, offset: 0xC7955, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyFTo', symObjAddr: 0x19E8, symBinAddr: 0x22C1C, symSize: 0xAC } - - { offsetInCU: 0xC4E, offset: 0xC79B4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11isSimulatorSbyF', symObjAddr: 0x1A94, symBinAddr: 0x22CC8, symSize: 0x8 } - - { offsetInCU: 0xC79, offset: 0xC79DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11isSimulatorSbyFTo', symObjAddr: 0x1A9C, symBinAddr: 0x22CD0, symSize: 0x8 } - - { offsetInCU: 0xC95, offset: 0xC79FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9isDevModeSbyF', symObjAddr: 0x1AA4, symBinAddr: 0x22CD8, symSize: 0x8 } - - { offsetInCU: 0xCC0, offset: 0xC7A26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9isDevModeSbyFTo', symObjAddr: 0x1AAC, symBinAddr: 0x22CE0, symSize: 0x8 } - - { offsetInCU: 0xCDC, offset: 0xC7A42, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyF', symObjAddr: 0x1AB4, symBinAddr: 0x22CE8, symSize: 0x9C } - - { offsetInCU: 0xD69, offset: 0xC7ACF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyFTo', symObjAddr: 0x1B50, symBinAddr: 0x22D84, symSize: 0xD4 } - - { offsetInCU: 0xDE4, offset: 0xC7B4A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19setStatusBarVisibleyySbF', symObjAddr: 0x1C24, symBinAddr: 0x22E58, symSize: 0x4 } - - { offsetInCU: 0xE1F, offset: 0xC7B85, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyF', symObjAddr: 0x1C28, symBinAddr: 0x22E5C, symSize: 0xA0 } - - { offsetInCU: 0xEAC, offset: 0xC7C12, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyFTo', symObjAddr: 0x1CC8, symBinAddr: 0x22EFC, symSize: 0xD4 } - - { offsetInCU: 0xF27, offset: 0xC7C8D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF', symObjAddr: 0x1D9C, symBinAddr: 0x22FD0, symSize: 0x4 } - - { offsetInCU: 0xF80, offset: 0xC7CE6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyF', symObjAddr: 0x1DA0, symBinAddr: 0x22FD4, symSize: 0xC0 } - - { offsetInCU: 0xFFF, offset: 0xC7D65, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyFTo', symObjAddr: 0x1E60, symBinAddr: 0x23094, symSize: 0x38 } - - { offsetInCU: 0x1039, offset: 0xC7D9F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11getLocalUrlSSyF', symObjAddr: 0x1E98, symBinAddr: 0x230CC, symSize: 0xCC } - - { offsetInCU: 0x1096, offset: 0xC7DFC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11getLocalUrlSSyFTo', symObjAddr: 0x1F64, symBinAddr: 0x23198, symSize: 0xFC } - - { offsetInCU: 0x10E9, offset: 0xC7E4F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF', symObjAddr: 0x2060, symBinAddr: 0x23294, symSize: 0x4 } - - { offsetInCU: 0x116C, offset: 0xC7ED2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setServerBasePathyySSF', symObjAddr: 0x2064, symBinAddr: 0x23298, symSize: 0x238 } - - { offsetInCU: 0x1251, offset: 0xC7FB7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc', symObjAddr: 0x22A8, symBinAddr: 0x234DC, symSize: 0xB4 } - - { offsetInCU: 0x12A5, offset: 0xC800B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_', symObjAddr: 0x235C, symBinAddr: 0x23590, symSize: 0x60 } - - { offsetInCU: 0x1305, offset: 0xC806B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfD', symObjAddr: 0x2450, symBinAddr: 0x23684, symSize: 0x208 } - - { offsetInCU: 0x1477, offset: 0xC81DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfDTo', symObjAddr: 0x2658, symBinAddr: 0x2388C, symSize: 0x24 } - - { offsetInCU: 0x14C0, offset: 0xC8226, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12exportCoreJS8localUrlySS_tF', symObjAddr: 0x2764, symBinAddr: 0x23998, symSize: 0x148 } - - { offsetInCU: 0x1621, offset: 0xC8387, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyF', symObjAddr: 0x28AC, symBinAddr: 0x23AE0, symSize: 0x3A8 } - - { offsetInCU: 0x192D, offset: 0xC8693, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC15registerPluginsyyF', symObjAddr: 0x2CD8, symBinAddr: 0x23F0C, symSize: 0x3F8 } - - { offsetInCU: 0x1D2F, offset: 0xC8A95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmF', symObjAddr: 0x30D0, symBinAddr: 0x24304, symSize: 0x1A8 } - - { offsetInCU: 0x1E4C, offset: 0xC8BB2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmFTo', symObjAddr: 0x3278, symBinAddr: 0x244AC, symSize: 0x48 } - - { offsetInCU: 0x1EA4, offset: 0xC8C0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCF', symObjAddr: 0x32C0, symBinAddr: 0x244F4, symSize: 0x40C } - - { offsetInCU: 0x218D, offset: 0xC8EF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCFTo', symObjAddr: 0x36CC, symBinAddr: 0x24900, symSize: 0x50 } - - { offsetInCU: 0x21A9, offset: 0xC8F0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10loadPlugin4typeSo010CAPBridgedD0_So9CAPPluginCXcSgAHm_tF', symObjAddr: 0x371C, symBinAddr: 0x24950, symSize: 0x214 } - - { offsetInCU: 0x2386, offset: 0xC90EC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC6plugin8withNameSo9CAPPluginCSgSS_tF', symObjAddr: 0x3930, symBinAddr: 0x24B64, symSize: 0xC4 } - - { offsetInCU: 0x242A, offset: 0xC9190, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CF', symObjAddr: 0x3A00, symBinAddr: 0x24C34, symSize: 0xAC } - - { offsetInCU: 0x24C5, offset: 0xC922B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CFTo', symObjAddr: 0x3AAC, symBinAddr: 0x24CE0, symSize: 0xDC } - - { offsetInCU: 0x2553, offset: 0xC92B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9savedCall6withIDSo09CAPPluginD0CSgSS_tF', symObjAddr: 0x3B88, symBinAddr: 0x24DBC, symSize: 0xC4 } - - { offsetInCU: 0x25C0, offset: 0xC9326, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CF', symObjAddr: 0x3C58, symBinAddr: 0x24E8C, symSize: 0x64 } - - { offsetInCU: 0x262C, offset: 0xC9392, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CFTo', symObjAddr: 0x3CBC, symBinAddr: 0x24EF0, symSize: 0x98 } - - { offsetInCU: 0x2682, offset: 0xC93E8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCall6withIDySS_tF', symObjAddr: 0x3D54, symBinAddr: 0x24F88, symSize: 0xF0 } - - { offsetInCU: 0x278A, offset: 0xC94F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12getSavedCallySo09CAPPluginE0CSgSSF', symObjAddr: 0x3E50, symBinAddr: 0x25084, symSize: 0xC4 } - - { offsetInCU: 0x2856, offset: 0xC95BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCall10callbackIdySS_tF', symObjAddr: 0x3F90, symBinAddr: 0x251C4, symSize: 0xF0 } - - { offsetInCU: 0x29D3, offset: 0xC9739, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerCordovaPluginsyyF', symObjAddr: 0x408C, symBinAddr: 0x252C0, symSize: 0x3A0 } - - { offsetInCU: 0x2BD5, offset: 0xC993B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setupWebDebugging33_B558F97FDDF7E6D98578814FFB110E95LL13configurationySo24CAPInstanceConfigurationC_tF', symObjAddr: 0x442C, symBinAddr: 0x25660, symSize: 0x168 } - - { offsetInCU: 0x2D39, offset: 0xC9A9F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tF', symObjAddr: 0x4594, symBinAddr: 0x257C8, symSize: 0xAF8 } - - { offsetInCU: 0x3798, offset: 0xCA4FE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_', symObjAddr: 0x508C, symBinAddr: 0x262C0, symSize: 0x320 } - - { offsetInCU: 0x38C2, offset: 0xCA628, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA19CAPPluginCallResultCSg_So0fG0CSgtcfU_', symObjAddr: 0x53AC, symBinAddr: 0x265E0, symSize: 0x218 } - - { offsetInCU: 0x39BF, offset: 0xCA725, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA18CAPPluginCallErrorCSgcfU0_', symObjAddr: 0x55C4, symBinAddr: 0x267F8, symSize: 0x104 } - - { offsetInCU: 0x3AD0, offset: 0xCA836, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19handleCordovaJSCall4callyAA0E0V_tF', symObjAddr: 0x56F4, symBinAddr: 0x26928, symSize: 0x5B4 } - - { offsetInCU: 0x3E49, offset: 0xCABAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFyyScMYccfU_', symObjAddr: 0x5CA8, symBinAddr: 0x26EDC, symSize: 0x2FC } - - { offsetInCU: 0x418E, offset: 0xCAEF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFyyScMYccfU_', symObjAddr: 0x604C, symBinAddr: 0x27280, symSize: 0x2AC } - - { offsetInCU: 0x445B, offset: 0xCB1C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStF', symObjAddr: 0x63C0, symBinAddr: 0x275F4, symSize: 0x334 } - - { offsetInCU: 0x46C8, offset: 0xCB42E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStFTo', symObjAddr: 0x66F8, symBinAddr: 0x2792C, symSize: 0x7C } - - { offsetInCU: 0x46E4, offset: 0xCB44A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4eval2jsySS_tF', symObjAddr: 0x6774, symBinAddr: 0x279A8, symSize: 0x208 } - - { offsetInCU: 0x4752, offset: 0xCB4B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStF', symObjAddr: 0x6C54, symBinAddr: 0x27E88, symSize: 0xD4 } - - { offsetInCU: 0x48E5, offset: 0xCB64B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStFTo', symObjAddr: 0x6D28, symBinAddr: 0x27F5C, symSize: 0x84 } - - { offsetInCU: 0x4901, offset: 0xCB667, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6target4dataySS_S2StF', symObjAddr: 0x6DAC, symBinAddr: 0x27FE0, symSize: 0x108 } - - { offsetInCU: 0x4B25, offset: 0xCB88B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventNameySS_tF', symObjAddr: 0x6EC0, symBinAddr: 0x280F4, symSize: 0x14 } - - { offsetInCU: 0x4B65, offset: 0xCB8CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventName4dataySS_SStF', symObjAddr: 0x6EE8, symBinAddr: 0x2811C, symSize: 0x1C } - - { offsetInCU: 0x4BB6, offset: 0xCB91C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventNameySS_tF', symObjAddr: 0x6F18, symBinAddr: 0x2814C, symSize: 0x18 } - - { offsetInCU: 0x4BF6, offset: 0xCB95C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventName4dataySS_SStF', symObjAddr: 0x6FBC, symBinAddr: 0x281F0, symSize: 0x20 } - - { offsetInCU: 0x4C47, offset: 0xCB9AD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStF', symObjAddr: 0x7094, symBinAddr: 0x282C8, symSize: 0x218 } - - { offsetInCU: 0x4CC5, offset: 0xCBA2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_', symObjAddr: 0x72AC, symBinAddr: 0x284E0, symSize: 0x19C } - - { offsetInCU: 0x4EAD, offset: 0xCBC13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_yypSg_s5Error_pSgtcfU_', symObjAddr: 0x7448, symBinAddr: 0x2867C, symSize: 0xD0 } - - { offsetInCU: 0x4FC0, offset: 0xCBD26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8localURL07fromWebD010Foundation0D0VSgAI_tF', symObjAddr: 0x7518, symBinAddr: 0x2874C, symSize: 0x288 } - - { offsetInCU: 0x50A7, offset: 0xCBE0D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12portablePath12fromLocalURL10Foundation0G0VSgAI_tF', symObjAddr: 0x77AC, symBinAddr: 0x289E0, symSize: 0x1DC } - - { offsetInCU: 0x5122, offset: 0xCBE88, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13showAlertWith5title7message11buttonTitleySS_S2StF', symObjAddr: 0x7AD4, symBinAddr: 0x28D08, symSize: 0x1CC } - - { offsetInCU: 0x5211, offset: 0xCBF77, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF', symObjAddr: 0x7D6C, symBinAddr: 0x28FA0, symSize: 0x2A8 } - - { offsetInCU: 0x536F, offset: 0xCC0D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtFTo', symObjAddr: 0x8014, symBinAddr: 0x29248, symSize: 0xBC } - - { offsetInCU: 0x538B, offset: 0xCC0F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtF', symObjAddr: 0x80D0, symBinAddr: 0x29304, symSize: 0x1D0 } - - { offsetInCU: 0x545C, offset: 0xCC1C2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtFTo', symObjAddr: 0x82A0, symBinAddr: 0x294D4, symSize: 0x98 } - - { offsetInCU: 0x5478, offset: 0xCC1DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfC', symObjAddr: 0x8338, symBinAddr: 0x2956C, symSize: 0x20 } - - { offsetInCU: 0x5496, offset: 0xCC1FC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfc', symObjAddr: 0x8358, symBinAddr: 0x2958C, symSize: 0x2C } - - { offsetInCU: 0x54F9, offset: 0xCC25F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfcTo', symObjAddr: 0x8384, symBinAddr: 0x295B8, symSize: 0x2C } - - { offsetInCU: 0x5560, offset: 0xCC2C6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFTf4enn_nAA0G0V_TB5', symObjAddr: 0x9BC4, symBinAddr: 0x2ADF8, symSize: 0x3F8 } - - { offsetInCU: 0x56C5, offset: 0xCC42B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFTf4en_nAA0gE0V_TB5', symObjAddr: 0x9FBC, symBinAddr: 0x2B1F0, symSize: 0x274 } - - { offsetInCU: 0x5734, offset: 0xCC49A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10fatalErroryys0D0_p_sAE_ptFZTf4nnd_n', symObjAddr: 0xA230, symBinAddr: 0x2B464, symSize: 0x508 } - - { offsetInCU: 0x5ABA, offset: 0xCC820, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcTf4nennnnn_nTf4gggggnn_n', symObjAddr: 0xA7AC, symBinAddr: 0x2B9E0, symSize: 0x728 } - - { offsetInCU: 0x5C74, offset: 0xCC9DA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvpACTK', symObjAddr: 0x760, symBinAddr: 0x21994, symSize: 0xB0 } - - { offsetInCU: 0x5CBD, offset: 0xCCA23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvpACTK', symObjAddr: 0xBC4, symBinAddr: 0x21DF8, symSize: 0xB0 } - - { offsetInCU: 0x5D31, offset: 0xCCA97, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13tmpVCAppeared_WZ', symObjAddr: 0x13E4, symBinAddr: 0x22618, symSize: 0x80 } - - { offsetInCU: 0x5D4B, offset: 0xCCAB1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultScheme_WZ', symObjAddr: 0x149C, symBinAddr: 0x226D0, symSize: 0x28 } - - { offsetInCU: 0x5D76, offset: 0xCCADC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvpACTK', symObjAddr: 0x1538, symBinAddr: 0x2276C, symSize: 0x58 } - - { offsetInCU: 0x5DA3, offset: 0xCCB09, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvpACTk', symObjAddr: 0x1590, symBinAddr: 0x227C4, symSize: 0x60 } - - { offsetInCU: 0x5E30, offset: 0xCCB96, size: 0x8, addend: 0x0, symName: '_$s10Foundation12NotificationVIeghn_So14NSNotificationCIeyBhy_TR', symObjAddr: 0x23BC, symBinAddr: 0x235F0, symSize: 0x94 } - - { offsetInCU: 0x5F55, offset: 0xCCCBB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfETo', symObjAddr: 0x267C, symBinAddr: 0x238B0, symSize: 0xE8 } - - { offsetInCU: 0x6232, offset: 0xCCF98, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x56C8, symBinAddr: 0x268FC, symSize: 0x2C } - - { offsetInCU: 0x626B, offset: 0xCCFD1, size: 0x8, addend: 0x0, symName: '_$sypSgs5Error_pSgIegng_yXlSgSo7NSErrorCSgIeyByy_TR', symObjAddr: 0x5FA8, symBinAddr: 0x271DC, symSize: 0xA4 } - - { offsetInCU: 0x62A4, offset: 0xCD00A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCSgSo0bC0CSgIeggg_AdGIeyByy_TR', symObjAddr: 0x853C, symBinAddr: 0x29770, symSize: 0x78 } - - { offsetInCU: 0x62BC, offset: 0xCD022, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCSgIegg_ADIeyBy_TR', symObjAddr: 0x85B4, symBinAddr: 0x297E8, symSize: 0x50 } - - { offsetInCU: 0x6300, offset: 0xCD066, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x8604, symBinAddr: 0x29838, symSize: 0x1C8 } - - { offsetInCU: 0x637B, offset: 0xCD0E1, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0x87CC, symBinAddr: 0x29A00, symSize: 0x1F4 } - - { offsetInCU: 0x6412, offset: 0xCD178, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x89C0, symBinAddr: 0x29BF4, symSize: 0x1C4 } - - { offsetInCU: 0x64B4, offset: 0xCD21A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x8B84, symBinAddr: 0x29DB8, symSize: 0x1F8 } - - { offsetInCU: 0x6540, offset: 0xCD2A6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So13CAPPluginCallCTg5', symObjAddr: 0x8D7C, symBinAddr: 0x29FB0, symSize: 0x1C4 } - - { offsetInCU: 0x65E2, offset: 0xCD348, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_SSTg5', symObjAddr: 0x8F40, symBinAddr: 0x2A174, symSize: 0x1DC } - - { offsetInCU: 0x665F, offset: 0xCD3C5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0x911C, symBinAddr: 0x2A350, symSize: 0x1E4 } - - { offsetInCU: 0x66F0, offset: 0xCD456, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x9300, symBinAddr: 0x2A534, symSize: 0x1F4 } - - { offsetInCU: 0x6781, offset: 0xCD4E7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So13CAPPluginCallCTg5', symObjAddr: 0x94F4, symBinAddr: 0x2A728, symSize: 0x204 } - - { offsetInCU: 0x6807, offset: 0xCD56D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo8NSObject_p_Tg5', symObjAddr: 0x970C, symBinAddr: 0x2A940, symSize: 0x1F0 } - - { offsetInCU: 0x6864, offset: 0xCD5CA, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo8NSObject_p_Tg5', symObjAddr: 0x9B34, symBinAddr: 0x2AD68, symSize: 0x90 } - - { offsetInCU: 0x6908, offset: 0xCD66E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo9CAPPluginCm_Tg5Tf4d_n', symObjAddr: 0xA738, symBinAddr: 0x2B96C, symSize: 0x68 } - - { offsetInCU: 0x6949, offset: 0xCD6AF, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo8NSObject_p_Tg5Tf4d_n', symObjAddr: 0xA7A0, symBinAddr: 0x2B9D4, symSize: 0xC } - - { offsetInCU: 0x6972, offset: 0xCD6D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsyyScMYccfU_TA', symObjAddr: 0xAF1C, symBinAddr: 0x2C150, symSize: 0xC } - - { offsetInCU: 0x6986, offset: 0xCD6EC, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xAF28, symBinAddr: 0x2C15C, symSize: 0x10 } - - { offsetInCU: 0x699A, offset: 0xCD700, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xAF38, symBinAddr: 0x2C16C, symSize: 0x8 } - - { offsetInCU: 0x69AE, offset: 0xCD714, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsyyScMYccfU_TA', symObjAddr: 0xAFC4, symBinAddr: 0x2C174, symSize: 0x8 } - - { offsetInCU: 0x69C2, offset: 0xCD728, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsyyScMYccfU_TA', symObjAddr: 0xAFF0, symBinAddr: 0x2C1A0, symSize: 0x8 } - - { offsetInCU: 0x69D6, offset: 0xCD73C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCMa', symObjAddr: 0xB020, symBinAddr: 0x2C1A8, symSize: 0x20 } - - { offsetInCU: 0x69EA, offset: 0xCD750, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStFyyScMYccfU_TA', symObjAddr: 0xB044, symBinAddr: 0x2C1CC, symSize: 0x2C } - - { offsetInCU: 0x69FE, offset: 0xCD764, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4eval2jsySS_tFyyScMYccfU_TA', symObjAddr: 0xB0A0, symBinAddr: 0x2C228, symSize: 0x2C } - - { offsetInCU: 0x6A12, offset: 0xCD778, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_TA', symObjAddr: 0xB100, symBinAddr: 0x2C288, symSize: 0x10 } - - { offsetInCU: 0x6A26, offset: 0xCD78C, size: 0x8, addend: 0x0, symName: '_$sSDySSypGWOs', symObjAddr: 0xB920, symBinAddr: 0x2CAA8, symSize: 0x28 } - - { offsetInCU: 0x6A3A, offset: 0xCD7A0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVWOr', symObjAddr: 0xB984, symBinAddr: 0x2CAD0, symSize: 0x54 } - - { offsetInCU: 0x6A4E, offset: 0xCD7B4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVWOs', symObjAddr: 0xB9D8, symBinAddr: 0x2CB24, symSize: 0x54 } - - { offsetInCU: 0x6A62, offset: 0xCD7C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_TA', symObjAddr: 0xBA78, symBinAddr: 0x2CBC4, symSize: 0x10 } - - { offsetInCU: 0x6A76, offset: 0xCD7DC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA19CAPPluginCallResultCSg_So0fG0CSgtcfU_TA', symObjAddr: 0xBAC8, symBinAddr: 0x2CC14, symSize: 0xC } - - { offsetInCU: 0x6A8A, offset: 0xCD7F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA18CAPPluginCallErrorCSgcfU0_TA', symObjAddr: 0xBB1C, symBinAddr: 0x2CC68, symSize: 0xC } - - { offsetInCU: 0x6A9E, offset: 0xCD804, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVWOs', symObjAddr: 0xBB28, symBinAddr: 0x2CC74, symSize: 0x90 } - - { offsetInCU: 0x6AB2, offset: 0xCD818, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVWOr', symObjAddr: 0xBC14, symBinAddr: 0x2CD60, symSize: 0x94 } - - { offsetInCU: 0x6AC6, offset: 0xCD82C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSResultProtocol_pWOb', symObjAddr: 0xBCD4, symBinAddr: 0x2CE20, symSize: 0x18 } - - { offsetInCU: 0x6ADA, offset: 0xCD840, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFyyScMYccfU_TA', symObjAddr: 0xBCEC, symBinAddr: 0x2CE38, symSize: 0xC } - - { offsetInCU: 0x6AEE, offset: 0xCD854, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0xBD1C, symBinAddr: 0x2CE44, symSize: 0x3C } - - { offsetInCU: 0x6B02, offset: 0xCD868, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVWOs', symObjAddr: 0xBD58, symBinAddr: 0x2CE80, symSize: 0x68 } - - { offsetInCU: 0x6B16, offset: 0xCD87C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVWOr', symObjAddr: 0xBE04, symBinAddr: 0x2CF2C, symSize: 0x64 } - - { offsetInCU: 0x6B2A, offset: 0xCD890, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo12NSHTTPCookieC_Tg5Tf4d_n', symObjAddr: 0xBE8C, symBinAddr: 0x2CFB4, symSize: 0x64 } - - { offsetInCU: 0x6B83, offset: 0xCD8E9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFyyScMYccfU_TA', symObjAddr: 0xBFAC, symBinAddr: 0x2D0D4, symSize: 0x14 } - - { offsetInCU: 0x6B97, offset: 0xCD8FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyFy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0xBFF0, symBinAddr: 0x2D108, symSize: 0x28 } - - { offsetInCU: 0x6BAB, offset: 0xCD911, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyFy10Foundation12NotificationVYbcfU0_TA', symObjAddr: 0xC018, symBinAddr: 0x2D130, symSize: 0x28 } - - { offsetInCU: 0x6BBF, offset: 0xCD925, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xC040, symBinAddr: 0x2D158, symSize: 0x10 } - - { offsetInCU: 0x6BD3, offset: 0xCD939, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xC074, symBinAddr: 0x2D18C, symSize: 0x8 } - - { offsetInCU: 0x6BE7, offset: 0xCD94D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeDelegate_pSgXwWOh', symObjAddr: 0xC07C, symBinAddr: 0x2D194, symSize: 0x24 } - - { offsetInCU: 0x6BFB, offset: 0xCD961, size: 0x8, addend: 0x0, symName: ___swift_allocate_value_buffer, symObjAddr: 0xC0A0, symBinAddr: 0x2D1B8, symSize: 0x40 } - - { offsetInCU: 0x6C0F, offset: 0xCD975, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0xC238, symBinAddr: 0x2D338, symSize: 0x8 } - - { offsetInCU: 0x6F98, offset: 0xCDCFE, size: 0x8, addend: 0x0, symName: '_$sSlsE6prefixy11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0xBEF0, symBinAddr: 0x2D018, symSize: 0x88 } - - { offsetInCU: 0x7331, offset: 0xCE097, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC10callbackId7options7success5errorABSgSSSg_SDys11AnyHashableVypGSgy9Capacitor0aB6ResultCSg_AGtcSgyAM0aB5ErrorCSgcSgtcfcTO', symObjAddr: 0x83B0, symBinAddr: 0x295E4, symSize: 0x18C } - - { offsetInCU: 0x27, offset: 0xCE3AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x0, symBinAddr: 0x2D400, symSize: 0xB4 } - - { offsetInCU: 0x4B, offset: 0xCE3D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x0, symBinAddr: 0x2D400, symSize: 0xB4 } - - { offsetInCU: 0x69, offset: 0xCE3F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0xB4, symBinAddr: 0x2D4B4, symSize: 0xB4 } - - { offsetInCU: 0xE2, offset: 0xCE46A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x188, symBinAddr: 0x2D588, symSize: 0xD8 } - - { offsetInCU: 0x139, offset: 0xCE4C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfC', symObjAddr: 0x260, symBinAddr: 0x2D660, symSize: 0x20 } - - { offsetInCU: 0x157, offset: 0xCE4DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfc', symObjAddr: 0x280, symBinAddr: 0x2D680, symSize: 0x30 } - - { offsetInCU: 0x192, offset: 0xCE51A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfcTo', symObjAddr: 0x2B0, symBinAddr: 0x2D6B0, symSize: 0x3C } - - { offsetInCU: 0x1CD, offset: 0xCE555, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCfD', symObjAddr: 0x2EC, symBinAddr: 0x2D6EC, symSize: 0x30 } - - { offsetInCU: 0x1FB, offset: 0xCE583, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCMa', symObjAddr: 0x168, symBinAddr: 0x2D568, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0xCE6BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfC', symObjAddr: 0x0, symBinAddr: 0x2D71C, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0xCE6DA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tF', symObjAddr: 0x28, symBinAddr: 0x2D744, symSize: 0x4 } - - { offsetInCU: 0x81, offset: 0xCE6EE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_', symObjAddr: 0x2C, symBinAddr: 0x2D748, symSize: 0x84 } - - { offsetInCU: 0xCC, offset: 0xCE739, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_ySaySo12NSHTTPCookieCGcfU_', symObjAddr: 0xB0, symBinAddr: 0x2D7CC, symSize: 0x114 } - - { offsetInCU: 0x234, offset: 0xCE8A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFTo', symObjAddr: 0x230, symBinAddr: 0x2D94C, symSize: 0x4C } - - { offsetInCU: 0x266, offset: 0xCE8D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfc', symObjAddr: 0x27C, symBinAddr: 0x2D998, symSize: 0x30 } - - { offsetInCU: 0x2A1, offset: 0xCE90E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfcTo', symObjAddr: 0x2AC, symBinAddr: 0x2D9C8, symSize: 0x3C } - - { offsetInCU: 0x2DC, offset: 0xCE949, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCfD', symObjAddr: 0x2E8, symBinAddr: 0x2DA04, symSize: 0x30 } - - { offsetInCU: 0x309, offset: 0xCE976, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFTf4nd_n', symObjAddr: 0x2624, symBinAddr: 0x2FD40, symSize: 0x1E0 } - - { offsetInCU: 0x408, offset: 0xCEA75, size: 0x8, addend: 0x0, symName: '_$sSaySo12NSHTTPCookieCGIegg_So7NSArrayCIeyBy_TR', symObjAddr: 0x1C4, symBinAddr: 0x2D8E0, symSize: 0x6C } - - { offsetInCU: 0x44A, offset: 0xCEAB7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF', symObjAddr: 0x318, symBinAddr: 0x2DA34, symSize: 0x19C } - - { offsetInCU: 0x4B5, offset: 0xCEB22, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC14isUrlSanitized33_9693F7733192184D77E45ECC2FDF6960LLySbSSF', symObjAddr: 0x4B4, symBinAddr: 0x2DBD0, symSize: 0x1B8 } - - { offsetInCU: 0x533, offset: 0xCEBA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF', symObjAddr: 0x66C, symBinAddr: 0x2DD88, symSize: 0x178 } - - { offsetInCU: 0x61E, offset: 0xCEC8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC6encodeyS2SF', symObjAddr: 0x7E4, symBinAddr: 0x2DF00, symSize: 0xB0 } - - { offsetInCU: 0x66E, offset: 0xCECDB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC6decodeyS2SF', symObjAddr: 0x894, symBinAddr: 0x2DFB0, symSize: 0x44 } - - { offsetInCU: 0x6CD, offset: 0xCED3A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yySS_SStF', symObjAddr: 0x8D8, symBinAddr: 0x2DFF4, symSize: 0x29C } - - { offsetInCU: 0x833, offset: 0xCEEA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF', symObjAddr: 0xB74, symBinAddr: 0x2E290, symSize: 0xC } - - { offsetInCU: 0x84F, offset: 0xCEEBC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF', symObjAddr: 0xB80, symBinAddr: 0x2E29C, symSize: 0x4 } - - { offsetInCU: 0x86B, offset: 0xCEED8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC10getCookiesSSyF', symObjAddr: 0xB84, symBinAddr: 0x2E2A0, symSize: 0x4D0 } - - { offsetInCU: 0xD68, offset: 0xCF3D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF', symObjAddr: 0x1054, symBinAddr: 0x2E770, symSize: 0x4 } - - { offsetInCU: 0xDB1, offset: 0xCF41E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF', symObjAddr: 0x1058, symBinAddr: 0x2E774, symSize: 0x4 } - - { offsetInCU: 0xDFA, offset: 0xCF467, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15clearAllCookiesyyF', symObjAddr: 0x105C, symBinAddr: 0x2E778, symSize: 0x4 } - - { offsetInCU: 0xE43, offset: 0xCF4B0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF', symObjAddr: 0x1060, symBinAddr: 0x2E77C, symSize: 0x4 } - - { offsetInCU: 0xE57, offset: 0xCF4C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCfd', symObjAddr: 0x10E8, symBinAddr: 0x2E804, symSize: 0x1C } - - { offsetInCU: 0xE92, offset: 0xCF4FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCfD', symObjAddr: 0x1104, symBinAddr: 0x2E820, symSize: 0x24 } - - { offsetInCU: 0xEDD, offset: 0xCF54A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyFTf4d_n', symObjAddr: 0x1128, symBinAddr: 0x2E844, symSize: 0x31C } - - { offsetInCU: 0x1070, offset: 0xCF6DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVFTf4nd_n', symObjAddr: 0x1444, symBinAddr: 0x2EB60, symSize: 0x374 } - - { offsetInCU: 0x1319, offset: 0xCF986, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtFTf4nnnnnd_n', symObjAddr: 0x17B8, symBinAddr: 0x2EED4, symSize: 0x2FC } - - { offsetInCU: 0x160C, offset: 0xCFC79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFTf4nnd_n', symObjAddr: 0x1C60, symBinAddr: 0x2F37C, symSize: 0x2F0 } - - { offsetInCU: 0x16B8, offset: 0xCFD25, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVFTf4nd_n', symObjAddr: 0x1F50, symBinAddr: 0x2F66C, symSize: 0x378 } - - { offsetInCU: 0x185F, offset: 0xCFECC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15clearAllCookiesyyFTf4d_n', symObjAddr: 0x22C8, symBinAddr: 0x2F9E4, symSize: 0x35C } - - { offsetInCU: 0x1BC5, offset: 0xD0232, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCMa', symObjAddr: 0x2804, symBinAddr: 0x2FF20, symSize: 0x20 } - - { offsetInCU: 0x1BD9, offset: 0xD0246, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCMa', symObjAddr: 0x299C, symBinAddr: 0x2FF68, symSize: 0x20 } - - { offsetInCU: 0x1BED, offset: 0xD025A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2ABC, symBinAddr: 0x30088, symSize: 0x10 } - - { offsetInCU: 0x1C01, offset: 0xD026E, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2ACC, symBinAddr: 0x30098, symSize: 0x8 } - - { offsetInCU: 0x1C15, offset: 0xD0282, size: 0x8, addend: 0x0, symName: '_$s8Dispatch0A13WorkItemFlagsVACs10SetAlgebraAAWl', symObjAddr: 0x2AD4, symBinAddr: 0x300A0, symSize: 0x48 } - - { offsetInCU: 0x1C29, offset: 0xD0296, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFyyScMYccfU0_TA', symObjAddr: 0x2B5C, symBinAddr: 0x30128, symSize: 0x20 } - - { offsetInCU: 0x1C3D, offset: 0xD02AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyFyyScMYccfU_TA', symObjAddr: 0x2B7C, symBinAddr: 0x30148, symSize: 0x20 } - - { offsetInCU: 0x1C51, offset: 0xD02BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_TA', symObjAddr: 0x2B9C, symBinAddr: 0x30168, symSize: 0x8 } - - { offsetInCU: 0x1C76, offset: 0xD02E3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x20, symBinAddr: 0x2D73C, symSize: 0x4 } - - { offsetInCU: 0x1C92, offset: 0xD02FF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_So42UIScrollViewContentInsetAdjustmentBehaviorVt_Tg5', symObjAddr: 0x24, symBinAddr: 0x2D740, symSize: 0x4 } - - { offsetInCU: 0x1DAA, offset: 0xD0417, size: 0x8, addend: 0x0, symName: '_$sSTsE5first5where7ElementQzSgSbADKXE_tKFSaySo12NSHTTPCookieCG_Tg5070$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFSbSo12D6CXEfU_SSTf1cn_nTf4ng_n', symObjAddr: 0x1AB4, symBinAddr: 0x2F1D0, symSize: 0x1AC } - - { offsetInCU: 0x27, offset: 0xD07E0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ', symObjAddr: 0x0, symBinAddr: 0x301B0, symSize: 0x1E4 } - - { offsetInCU: 0x4B, offset: 0xD0804, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ', symObjAddr: 0x0, symBinAddr: 0x301B0, symSize: 0x1E4 } - - { offsetInCU: 0xF6, offset: 0xD08AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfC', symObjAddr: 0x2F0, symBinAddr: 0x30394, symSize: 0x20 } - - { offsetInCU: 0x114, offset: 0xD08CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfc', symObjAddr: 0x310, symBinAddr: 0x303B4, symSize: 0x30 } - - { offsetInCU: 0x14F, offset: 0xD0908, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfcTo', symObjAddr: 0x360, symBinAddr: 0x30404, symSize: 0x3C } - - { offsetInCU: 0x18A, offset: 0xD0943, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCfD', symObjAddr: 0x39C, symBinAddr: 0x30440, symSize: 0x30 } - - { offsetInCU: 0x1B8, offset: 0xD0971, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCMa', symObjAddr: 0x340, symBinAddr: 0x303E4, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0xD0ADF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification_WZ', symObjAddr: 0x0, symBinAddr: 0x30470, symSize: 0x98 } - - { offsetInCU: 0x4B, offset: 0xD0B03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvpZ', symObjAddr: 0x4D8, symBinAddr: 0x75128, symSize: 0x0 } - - { offsetInCU: 0x6A, offset: 0xD0B22, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification_WZ', symObjAddr: 0x0, symBinAddr: 0x30470, symSize: 0x98 } - - { offsetInCU: 0xAF, offset: 0xD0B67, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZ', symObjAddr: 0x98, symBinAddr: 0x30508, symSize: 0x70 } - - { offsetInCU: 0xF4, offset: 0xD0BAC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZTo', symObjAddr: 0x120, symBinAddr: 0x30578, symSize: 0x5C } - - { offsetInCU: 0x12B, offset: 0xD0BE3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ', symObjAddr: 0x17C, symBinAddr: 0x305D4, symSize: 0x84 } - - { offsetInCU: 0x178, offset: 0xD0C30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ', symObjAddr: 0x200, symBinAddr: 0x30658, symSize: 0x98 } - - { offsetInCU: 0x1E5, offset: 0xD0C9D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ', symObjAddr: 0x298, symBinAddr: 0x306F0, symSize: 0x90 } - - { offsetInCU: 0x24E, offset: 0xD0D06, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ', symObjAddr: 0x328, symBinAddr: 0x30780, symSize: 0x4 } - - { offsetInCU: 0x285, offset: 0xD0D3D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfC', symObjAddr: 0x32C, symBinAddr: 0x30784, symSize: 0x20 } - - { offsetInCU: 0x2A3, offset: 0xD0D5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfc', symObjAddr: 0x34C, symBinAddr: 0x307A4, symSize: 0x30 } - - { offsetInCU: 0x2DE, offset: 0xD0D96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfcTo', symObjAddr: 0x37C, symBinAddr: 0x307D4, symSize: 0x3C } - - { offsetInCU: 0x319, offset: 0xD0DD1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCfD', symObjAddr: 0x3B8, symBinAddr: 0x30810, symSize: 0x30 } - - { offsetInCU: 0x3A1, offset: 0xD0E59, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCfETo', symObjAddr: 0x3E8, symBinAddr: 0x30840, symSize: 0x4 } - - { offsetInCU: 0x3CC, offset: 0xD0E84, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCMa', symObjAddr: 0x474, symBinAddr: 0x30844, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0xD106C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ', symObjAddr: 0x0, symBinAddr: 0x30864, symSize: 0x70 } - - { offsetInCU: 0x3F, offset: 0xD1084, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ', symObjAddr: 0x0, symBinAddr: 0x30864, symSize: 0x70 } - - { offsetInCU: 0x137, offset: 0xD117C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ', symObjAddr: 0x70, symBinAddr: 0x308D4, symSize: 0x64 } - - { offsetInCU: 0x1FF, offset: 0xD1244, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ', symObjAddr: 0xD4, symBinAddr: 0x30938, symSize: 0x2A4 } - - { offsetInCU: 0x4F, offset: 0xD1561, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO9formatter031_F806BC7C3B9E74076D863322397580I0LLSo22NSISO8601DateFormatterCvpZ', symObjAddr: 0x3570, symBinAddr: 0x75188, symSize: 0x0 } - - { offsetInCU: 0x70, offset: 0xD1582, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x30C1C, symSize: 0x8 } - - { offsetInCU: 0xC4, offset: 0xD15D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x48, symBinAddr: 0x30C24, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0xD16B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x30C64, symSize: 0x24 } - - { offsetInCU: 0x237, offset: 0xD1749, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18jsonRepresentation15includingFieldsSSSgSDySSypGSg_tKF', symObjAddr: 0xF8, symBinAddr: 0x30CD4, symSize: 0x2CC } - - { offsetInCU: 0x45A, offset: 0xD196C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO9formatter031_F806BC7C3B9E74076D863322397580I0LL_WZ', symObjAddr: 0x3C4, symBinAddr: 0x30FA0, symSize: 0x30 } - - { offsetInCU: 0x4AB, offset: 0xD19BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvg', symObjAddr: 0x40C, symBinAddr: 0x30FE8, symSize: 0x10 } - - { offsetInCU: 0x52F, offset: 0xD1A41, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfC', symObjAddr: 0x41C, symBinAddr: 0x30FF8, symSize: 0x4C } - - { offsetInCU: 0x576, offset: 0xD1A88, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfc', symObjAddr: 0x468, symBinAddr: 0x31044, symSize: 0x3C } - - { offsetInCU: 0x59D, offset: 0xD1AAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfcTo', symObjAddr: 0x4C4, symBinAddr: 0x310A0, symSize: 0x7C } - - { offsetInCU: 0x5CF, offset: 0xD1AE1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCACycfc', symObjAddr: 0x54C, symBinAddr: 0x31128, symSize: 0x2C } - - { offsetInCU: 0x632, offset: 0xD1B44, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCACycfcTo', symObjAddr: 0x578, symBinAddr: 0x31154, symSize: 0x2C } - - { offsetInCU: 0x6A3, offset: 0xD1BB5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCMa', symObjAddr: 0x4A4, symBinAddr: 0x31080, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0xD1BDF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCfETo', symObjAddr: 0x5B0, symBinAddr: 0x3118C, symSize: 0x10 } - - { offsetInCU: 0x726, offset: 0xD1C38, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7messageSSvgTo', symObjAddr: 0x5C0, symBinAddr: 0x3119C, symSize: 0x4C } - - { offsetInCU: 0x761, offset: 0xD1C73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7messageSSvg', symObjAddr: 0x60C, symBinAddr: 0x311E8, symSize: 0x38 } - - { offsetInCU: 0x79E, offset: 0xD1CB0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4codeSSSgvgTo', symObjAddr: 0x644, symBinAddr: 0x31220, symSize: 0x5C } - - { offsetInCU: 0x7D1, offset: 0xD1CE3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4codeSSSgvg', symObjAddr: 0x6A0, symBinAddr: 0x3127C, symSize: 0x38 } - - { offsetInCU: 0x80E, offset: 0xD1D20, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvgTo', symObjAddr: 0x6D8, symBinAddr: 0x312B4, symSize: 0x50 } - - { offsetInCU: 0x849, offset: 0xD1D5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvg', symObjAddr: 0x728, symBinAddr: 0x31304, symSize: 0x30 } - - { offsetInCU: 0x868, offset: 0xD1D7A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvg', symObjAddr: 0x7E4, symBinAddr: 0x313C0, symSize: 0x10 } - - { offsetInCU: 0x8A4, offset: 0xD1DB6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfC', symObjAddr: 0x7F4, symBinAddr: 0x313D0, symSize: 0x98 } - - { offsetInCU: 0x8D8, offset: 0xD1DEA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfc', symObjAddr: 0x88C, symBinAddr: 0x31468, symSize: 0x64 } - - { offsetInCU: 0x8EC, offset: 0xD1DFE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfcTo', symObjAddr: 0x8F0, symBinAddr: 0x314CC, symSize: 0xEC } - - { offsetInCU: 0x91E, offset: 0xD1E30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCACycfc', symObjAddr: 0xA18, symBinAddr: 0x315F4, symSize: 0x2C } - - { offsetInCU: 0x981, offset: 0xD1E93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCACycfcTo', symObjAddr: 0xA44, symBinAddr: 0x31620, symSize: 0x2C } - - { offsetInCU: 0x9E8, offset: 0xD1EFA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfcTf4ggggn_n', symObjAddr: 0x2D1C, symBinAddr: 0x338F8, symSize: 0x17C } - - { offsetInCU: 0xB17, offset: 0xD2029, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCfETo', symObjAddr: 0xAAC, symBinAddr: 0x31688, symSize: 0x60 } - - { offsetInCU: 0xB67, offset: 0xD2079, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_SSTg5', symObjAddr: 0xB0C, symBinAddr: 0x316E8, symSize: 0x54 } - - { offsetInCU: 0xBE9, offset: 0xD20FB, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0xB60, symBinAddr: 0x3173C, symSize: 0x6C } - - { offsetInCU: 0xC83, offset: 0xD2195, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0xBCC, symBinAddr: 0x317A8, symSize: 0x4C } - - { offsetInCU: 0xD21, offset: 0xD2233, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So13CAPPluginCallCTg5', symObjAddr: 0xC18, symBinAddr: 0x317F4, symSize: 0x4C } - - { offsetInCU: 0xDD5, offset: 0xD22E7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0xD9C, symBinAddr: 0x31978, symSize: 0x3AC } - - { offsetInCU: 0xED0, offset: 0xD23E2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0x1148, symBinAddr: 0x31D24, symSize: 0x3A0 } - - { offsetInCU: 0xFF0, offset: 0xD2502, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x14E8, symBinAddr: 0x320C4, symSize: 0x398 } - - { offsetInCU: 0x1128, offset: 0xD263A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x1880, symBinAddr: 0x3245C, symSize: 0x3B4 } - - { offsetInCU: 0x1248, offset: 0xD275A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So13CAPPluginCallCTg5', symObjAddr: 0x1C34, symBinAddr: 0x32810, symSize: 0x398 } - - { offsetInCU: 0x135F, offset: 0xD2871, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1FCC, symBinAddr: 0x32BA8, symSize: 0x40 } - - { offsetInCU: 0x1404, offset: 0xD2916, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV5merge_8isUnique16uniquingKeysWithyqd__n_Sbq_q__q_tKXEtKSTRd__x_q_t7ElementRtd__lFSS_yps15LazyMapSequenceVySDySSypGSS_yptGTg599$s9Capacitor16PluginCallResultO18jsonRepresentation15includingFieldsSSSgSDySSypGSg_tKFypyp_yptXEfU_Tf1nncn_n', symObjAddr: 0x200C, symBinAddr: 0x32BE8, symSize: 0x264 } - - { offsetInCU: 0x158D, offset: 0xD2A9F, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x2270, symBinAddr: 0x32E4C, symSize: 0x138 } - - { offsetInCU: 0x1630, offset: 0xD2B42, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x23A8, symBinAddr: 0x32F84, symSize: 0xAC } - - { offsetInCU: 0x1660, offset: 0xD2B72, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV9mapValuesyAByxqd__Gqd__q_KXEKlFSS_ypypTg5111$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL10dictionarySDySSypGAG_tFypypXEfU_9Capacitor0ghI0OTf1cn_nTf4ng_n', symObjAddr: 0x2454, symBinAddr: 0x33030, symSize: 0x500 } - - { offsetInCU: 0x1885, offset: 0xD2D97, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCMa', symObjAddr: 0x2E98, symBinAddr: 0x33A74, symSize: 0x20 } - - { offsetInCU: 0x1899, offset: 0xD2DAB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwCP', symObjAddr: 0x2EB8, symBinAddr: 0x33A94, symSize: 0x2C } - - { offsetInCU: 0x18AD, offset: 0xD2DBF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwxx', symObjAddr: 0x2EE4, symBinAddr: 0x33AC0, symSize: 0x8 } - - { offsetInCU: 0x18C1, offset: 0xD2DD3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwcp', symObjAddr: 0x2EEC, symBinAddr: 0x33AC8, symSize: 0x2C } - - { offsetInCU: 0x18D5, offset: 0xD2DE7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwca', symObjAddr: 0x2F18, symBinAddr: 0x33AF4, symSize: 0x38 } - - { offsetInCU: 0x18E9, offset: 0xD2DFB, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x2F50, symBinAddr: 0x33B2C, symSize: 0xC } - - { offsetInCU: 0x18FD, offset: 0xD2E0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwta', symObjAddr: 0x2F5C, symBinAddr: 0x33B38, symSize: 0x30 } - - { offsetInCU: 0x1911, offset: 0xD2E23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwet', symObjAddr: 0x2F8C, symBinAddr: 0x33B68, symSize: 0x48 } - - { offsetInCU: 0x1925, offset: 0xD2E37, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwst', symObjAddr: 0x2FD4, symBinAddr: 0x33BB0, symSize: 0x3C } - - { offsetInCU: 0x1939, offset: 0xD2E4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwug', symObjAddr: 0x3010, symBinAddr: 0x33BEC, symSize: 0x8 } - - { offsetInCU: 0x194D, offset: 0xD2E5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwup', symObjAddr: 0x3018, symBinAddr: 0x33BF4, symSize: 0x4 } - - { offsetInCU: 0x1961, offset: 0xD2E73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwui', symObjAddr: 0x301C, symBinAddr: 0x33BF8, symSize: 0x4 } - - { offsetInCU: 0x1975, offset: 0xD2E87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOMa', symObjAddr: 0x3020, symBinAddr: 0x33BFC, symSize: 0x10 } - - { offsetInCU: 0x1989, offset: 0xD2E9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOAEs0F0AAWl', symObjAddr: 0x3090, symBinAddr: 0x33C6C, symSize: 0x44 } - - { offsetInCU: 0x199D, offset: 0xD2EAF, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOc', symObjAddr: 0x31D4, symBinAddr: 0x33CB0, symSize: 0x48 } - - { offsetInCU: 0x19B1, offset: 0xD2EC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwet', symObjAddr: 0x32BC, symBinAddr: 0x33D34, symSize: 0x50 } - - { offsetInCU: 0x19C5, offset: 0xD2ED7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwst', symObjAddr: 0x330C, symBinAddr: 0x33D84, symSize: 0x8C } - - { offsetInCU: 0x19D9, offset: 0xD2EEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwug', symObjAddr: 0x3398, symBinAddr: 0x33E10, symSize: 0x8 } - - { offsetInCU: 0x19ED, offset: 0xD2EFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwup', symObjAddr: 0x33A0, symBinAddr: 0x33E18, symSize: 0x4 } - - { offsetInCU: 0x1A01, offset: 0xD2F13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwui', symObjAddr: 0x33A4, symBinAddr: 0x33E1C, symSize: 0x4 } - - { offsetInCU: 0x1A15, offset: 0xD2F27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOMa', symObjAddr: 0x33A8, symBinAddr: 0x33E20, symSize: 0x10 } - - { offsetInCU: 0x1A29, offset: 0xD2F3B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASQWb', symObjAddr: 0x33B8, symBinAddr: 0x33E30, symSize: 0x4 } - - { offsetInCU: 0x1A3D, offset: 0xD2F4F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOAESQAAWl', symObjAddr: 0x33BC, symBinAddr: 0x33E34, symSize: 0x44 } - - { offsetInCU: 0x1A7F, offset: 0xD2F91, size: 0x8, addend: 0x0, symName: '_$sSlsE3mapySayqd__Gqd__7ElementQzKXEKlFSayypG_ypTg5103$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL5arraySayypGAG_tFypypXEfU_9Capacitor0efG0OTf1cn_n', symObjAddr: 0x0, symBinAddr: 0x30BDC, symSize: 0x40 } - - { offsetInCU: 0x1AC0, offset: 0xD2FD2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC, symBinAddr: 0x30C88, symSize: 0x3C } - - { offsetInCU: 0x1B5C, offset: 0xD306E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP7_domainSSvgTW', symObjAddr: 0xE8, symBinAddr: 0x30CC4, symSize: 0x4 } - - { offsetInCU: 0x1B78, offset: 0xD308A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP5_codeSivgTW', symObjAddr: 0xEC, symBinAddr: 0x30CC8, symSize: 0x4 } - - { offsetInCU: 0x1B94, offset: 0xD30A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0xF0, symBinAddr: 0x30CCC, symSize: 0x4 } - - { offsetInCU: 0x1BB0, offset: 0xD30C2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xF4, symBinAddr: 0x30CD0, symSize: 0x4 } - - { offsetInCU: 0x1CC1, offset: 0xD31D3, size: 0x8, addend: 0x0, symName: '_$sSlsE3mapySayqd__Gqd__7ElementQzKXEKlFSayypG_ypTg5103$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL5arraySayypGAG_tFypypXEfU_9Capacitor0efG0OTf1cn_nTf4ng_n', symObjAddr: 0x2954, symBinAddr: 0x33530, symSize: 0x3C8 } - - { offsetInCU: 0x4B, offset: 0xD35D9, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ', symObjAddr: 0x978, symBinAddr: 0x75228, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0xD35F3, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ', symObjAddr: 0x980, symBinAddr: 0x75230, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0xD360D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ', symObjAddr: 0x988, symBinAddr: 0x75238, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0xD3627, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ', symObjAddr: 0x990, symBinAddr: 0x75240, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0xD3641, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ', symObjAddr: 0x998, symBinAddr: 0x75248, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0xD365B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ', symObjAddr: 0x9A0, symBinAddr: 0x75250, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0xD3675, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ', symObjAddr: 0x9A8, symBinAddr: 0x75258, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0xD368F, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavpZ', symObjAddr: 0x9B0, symBinAddr: 0x75260, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0xD36A9, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavpZ', symObjAddr: 0x9B8, symBinAddr: 0x75268, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0xD36C3, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavpZ', symObjAddr: 0x9C0, symBinAddr: 0x75270, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0xD36DD, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavpZ', symObjAddr: 0x9C8, symBinAddr: 0x75278, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0xD36F7, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavpZ', symObjAddr: 0x9D0, symBinAddr: 0x75280, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0xD3711, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavpZ', symObjAddr: 0x9D8, symBinAddr: 0x75288, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0xD372B, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavpZ', symObjAddr: 0x9E0, symBinAddr: 0x75290, symSize: 0x0 } - - { offsetInCU: 0x1AB, offset: 0xD3739, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURL_WZ', symObjAddr: 0x0, symBinAddr: 0x33E78, symSize: 0x34 } - - { offsetInCU: 0x1C5, offset: 0xD3753, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLink_WZ', symObjAddr: 0x50, symBinAddr: 0x33EC8, symSize: 0x34 } - - { offsetInCU: 0x1DF, offset: 0xD376D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivity_WZ', symObjAddr: 0xA0, symBinAddr: 0x33F18, symSize: 0x34 } - - { offsetInCU: 0x1F9, offset: 0xD3787, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotifications_WZ', symObjAddr: 0xF0, symBinAddr: 0x33F68, symSize: 0x34 } - - { offsetInCU: 0x213, offset: 0xD37A1, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotifications_WZ', symObjAddr: 0x140, symBinAddr: 0x33FB8, symSize: 0x34 } - - { offsetInCU: 0x22D, offset: 0xD37BB, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationAction_WZ', symObjAddr: 0x190, symBinAddr: 0x34008, symSize: 0x34 } - - { offsetInCU: 0x247, offset: 0xD37D5, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTapped_WZ', symObjAddr: 0x1E0, symBinAddr: 0x34058, symSize: 0x34 } - - { offsetInCU: 0x2D3, offset: 0xD3861, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO4nameSSyF', symObjAddr: 0x5A4, symBinAddr: 0x3441C, symSize: 0x194 } - - { offsetInCU: 0x350, offset: 0xD38DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfC', symObjAddr: 0x738, symBinAddr: 0x345B0, symSize: 0x14 } - - { offsetInCU: 0x36F, offset: 0xD38FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO8rawValueSivg', symObjAddr: 0x74C, symBinAddr: 0x345C4, symSize: 0x4 } - - { offsetInCU: 0x3B2, offset: 0xD3940, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSYAASY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x858, symBinAddr: 0x346D0, symSize: 0x20 } - - { offsetInCU: 0x3E3, offset: 0xD3971, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSYAASY8rawValue03RawD0QzvgTW', symObjAddr: 0x878, symBinAddr: 0x346F0, symSize: 0xC } - - { offsetInCU: 0x40B, offset: 0xD3999, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASQWb', symObjAddr: 0x764, symBinAddr: 0x345DC, symSize: 0x4 } - - { offsetInCU: 0x41F, offset: 0xD39AD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOACSQAAWl', symObjAddr: 0x768, symBinAddr: 0x345E0, symSize: 0x44 } - - { offsetInCU: 0x449, offset: 0xD39D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOMa', symObjAddr: 0x884, symBinAddr: 0x346FC, symSize: 0x10 } - - { offsetInCU: 0x4BC, offset: 0xD3A4A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x750, symBinAddr: 0x345C8, symSize: 0x14 } - - { offsetInCU: 0x54D, offset: 0xD3ADB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH9hashValueSivgTW', symObjAddr: 0x7AC, symBinAddr: 0x34624, symSize: 0x44 } - - { offsetInCU: 0x5FC, offset: 0xD3B8A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x7F0, symBinAddr: 0x34668, symSize: 0x28 } - - { offsetInCU: 0x64F, offset: 0xD3BDD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x818, symBinAddr: 0x34690, symSize: 0x40 } - - { offsetInCU: 0x43, offset: 0xD3D60, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorV4call0dC0AcA6JSCallV_AA013CAPPluginCallC0CtcfC', symObjAddr: 0x0, symBinAddr: 0x3470C, symSize: 0x274 } - - { offsetInCU: 0xB3, offset: 0xD3DD0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCfd', symObjAddr: 0x274, symBinAddr: 0x34980, symSize: 0x8 } - - { offsetInCU: 0xE2, offset: 0xD3DFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCfD', symObjAddr: 0x27C, symBinAddr: 0x34988, symSize: 0x10 } - - { offsetInCU: 0x112, offset: 0xD3E2F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCMa', symObjAddr: 0x28C, symBinAddr: 0x34998, symSize: 0x20 } - - { offsetInCU: 0x1B1, offset: 0xD3ECE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultV11jsonPayloadSSyF', symObjAddr: 0x334, symBinAddr: 0x349C4, symSize: 0x380 } - - { offsetInCU: 0x4F9, offset: 0xD4216, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP11jsonPayloadSSyFTW', symObjAddr: 0x738, symBinAddr: 0x34DC8, symSize: 0x4 } - - { offsetInCU: 0x527, offset: 0xD4244, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP10callbackIDSSvgTW', symObjAddr: 0x6B4, symBinAddr: 0x34D44, symSize: 0x2C } - - { offsetInCU: 0x56A, offset: 0xD4287, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP8pluginIDSSvgTW', symObjAddr: 0x6E0, symBinAddr: 0x34D70, symSize: 0x2C } - - { offsetInCU: 0x5AD, offset: 0xD42CA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP10methodNameSSvgTW', symObjAddr: 0x70C, symBinAddr: 0x34D9C, symSize: 0x2C } - - { offsetInCU: 0x659, offset: 0xD4376, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorV11jsonPayloadSSyF', symObjAddr: 0x73C, symBinAddr: 0x34DCC, symSize: 0x630 } - - { offsetInCU: 0xB2E, offset: 0xD484B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP11jsonPayloadSSyFTW', symObjAddr: 0xDF0, symBinAddr: 0x35480, symSize: 0x4 } - - { offsetInCU: 0xB5C, offset: 0xD4879, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP10callbackIDSSvgTW', symObjAddr: 0xD6C, symBinAddr: 0x353FC, symSize: 0x2C } - - { offsetInCU: 0xB9F, offset: 0xD48BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP8pluginIDSSvgTW', symObjAddr: 0xD98, symBinAddr: 0x35428, symSize: 0x2C } - - { offsetInCU: 0xBE2, offset: 0xD48FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP10methodNameSSvgTW', symObjAddr: 0xDC4, symBinAddr: 0x35454, symSize: 0x2C } - - { offsetInCU: 0xC14, offset: 0xD4931, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwxx', symObjAddr: 0xE88, symBinAddr: 0x35484, symSize: 0x40 } - - { offsetInCU: 0xC28, offset: 0xD4945, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwcp', symObjAddr: 0xEC8, symBinAddr: 0x354C4, symSize: 0x74 } - - { offsetInCU: 0xC3C, offset: 0xD4959, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwca', symObjAddr: 0xF3C, symBinAddr: 0x35538, symSize: 0xBC } - - { offsetInCU: 0xC50, offset: 0xD496D, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0xFF8, symBinAddr: 0x355F4, symSize: 0x14 } - - { offsetInCU: 0xC64, offset: 0xD4981, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwta', symObjAddr: 0x100C, symBinAddr: 0x35608, symSize: 0x74 } - - { offsetInCU: 0xC78, offset: 0xD4995, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwet', symObjAddr: 0x1080, symBinAddr: 0x3567C, symSize: 0x48 } - - { offsetInCU: 0xC8C, offset: 0xD49A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwst', symObjAddr: 0x10C8, symBinAddr: 0x356C4, symSize: 0x50 } - - { offsetInCU: 0xCA0, offset: 0xD49BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVMa', symObjAddr: 0x1118, symBinAddr: 0x35714, symSize: 0x10 } - - { offsetInCU: 0xCB4, offset: 0xD49D1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwCP', symObjAddr: 0x1128, symBinAddr: 0x35724, symSize: 0x30 } - - { offsetInCU: 0xCC8, offset: 0xD49E5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwxx', symObjAddr: 0x1158, symBinAddr: 0x35754, symSize: 0x58 } - - { offsetInCU: 0xCDC, offset: 0xD49F9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwcp', symObjAddr: 0x11B0, symBinAddr: 0x357AC, symSize: 0xAC } - - { offsetInCU: 0xCF0, offset: 0xD4A0D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwca', symObjAddr: 0x125C, symBinAddr: 0x35858, symSize: 0x11C } - - { offsetInCU: 0xD04, offset: 0xD4A21, size: 0x8, addend: 0x0, symName: ___swift_memcpy112_8, symObjAddr: 0x1378, symBinAddr: 0x35974, symSize: 0x24 } - - { offsetInCU: 0xD18, offset: 0xD4A35, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwta', symObjAddr: 0x139C, symBinAddr: 0x35998, symSize: 0xA4 } - - { offsetInCU: 0xD2C, offset: 0xD4A49, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwet', symObjAddr: 0x1440, symBinAddr: 0x35A3C, symSize: 0x48 } - - { offsetInCU: 0xD40, offset: 0xD4A5D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwst', symObjAddr: 0x1488, symBinAddr: 0x35A84, symSize: 0x5C } - - { offsetInCU: 0xD54, offset: 0xD4A71, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVMa', symObjAddr: 0x14E4, symBinAddr: 0x35AE0, symSize: 0x10 } - - { offsetInCU: 0xD68, offset: 0xD4A85, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwxx', symObjAddr: 0x1588, symBinAddr: 0x35B14, symSize: 0x38 } - - { offsetInCU: 0xD7C, offset: 0xD4A99, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwcp', symObjAddr: 0x15C0, symBinAddr: 0x35B4C, symSize: 0x64 } - - { offsetInCU: 0xD90, offset: 0xD4AAD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwca', symObjAddr: 0x1624, symBinAddr: 0x35BB0, symSize: 0xA4 } - - { offsetInCU: 0xDA4, offset: 0xD4AC1, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x16C8, symBinAddr: 0x35C54, symSize: 0x1C } - - { offsetInCU: 0xDB8, offset: 0xD4AD5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwta', symObjAddr: 0x16E4, symBinAddr: 0x35C70, symSize: 0x64 } - - { offsetInCU: 0xDCC, offset: 0xD4AE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwet', symObjAddr: 0x1748, symBinAddr: 0x35CD4, symSize: 0x48 } - - { offsetInCU: 0xDE0, offset: 0xD4AFD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwst', symObjAddr: 0x1790, symBinAddr: 0x35D1C, symSize: 0x4C } - - { offsetInCU: 0xDF4, offset: 0xD4B11, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVMa', symObjAddr: 0x17DC, symBinAddr: 0x35D68, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0xD4D28, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TR', symObjAddr: 0x0, symBinAddr: 0x35D80, symSize: 0x8 } - - { offsetInCU: 0x63, offset: 0xD4D48, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfC', symObjAddr: 0x8, symBinAddr: 0x35D88, symSize: 0x20 } - - { offsetInCU: 0x81, offset: 0xD4D66, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC30handleApplicationNotificationsSbvs', symObjAddr: 0x28, symBinAddr: 0x35DA8, symSize: 0xA4 } - - { offsetInCU: 0xD5, offset: 0xD4DBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM', symObjAddr: 0x140, symBinAddr: 0x35E80, symSize: 0x70 } - - { offsetInCU: 0x104, offset: 0xD4DE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM', symObjAddr: 0x3B0, symBinAddr: 0x360F0, symSize: 0x70 } - - { offsetInCU: 0x16F, offset: 0xD4E54, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF', symObjAddr: 0x480, symBinAddr: 0x361C0, symSize: 0x11C } - - { offsetInCU: 0x206, offset: 0xD4EEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF', symObjAddr: 0x5A8, symBinAddr: 0x362E8, symSize: 0x130 } - - { offsetInCU: 0x29D, offset: 0xD4F82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfc', symObjAddr: 0x78C, symBinAddr: 0x364CC, symSize: 0x58 } - - { offsetInCU: 0x2D8, offset: 0xD4FBD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfcTo', symObjAddr: 0x7E4, symBinAddr: 0x36524, symSize: 0x64 } - - { offsetInCU: 0x313, offset: 0xD4FF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCfD', symObjAddr: 0x848, symBinAddr: 0x36588, symSize: 0x30 } - - { offsetInCU: 0x340, offset: 0xD5025, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF06$sSo33lmN16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4dnng_n', symObjAddr: 0xAA4, symBinAddr: 0x367E4, symSize: 0x11C } - - { offsetInCU: 0x3CE, offset: 0xD50B3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_nTf4dnng_n', symObjAddr: 0xBC0, symBinAddr: 0x36900, symSize: 0x130 } - - { offsetInCU: 0x45D, offset: 0xD5142, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCfETo', symObjAddr: 0x878, symBinAddr: 0x365B8, symSize: 0x38 } - - { offsetInCU: 0x48C, offset: 0xD5171, size: 0x8, addend: 0x0, symName: '_$sSo25UNPushNotificationTriggerCMa', symObjAddr: 0x8B0, symBinAddr: 0x365F0, symSize: 0x3C } - - { offsetInCU: 0x4A0, offset: 0xD5185, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCMa', symObjAddr: 0x8EC, symBinAddr: 0x3662C, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0xD51AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor27NotificationHandlerProtocol_pSgXwWOh', symObjAddr: 0xCF0, symBinAddr: 0x36A30, symSize: 0x24 } - - { offsetInCU: 0x4B, offset: 0xD5367, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvpZ', symObjAddr: 0x1948, symBinAddr: 0x75388, symSize: 0x0 } - - { offsetInCU: 0x59, offset: 0xD5375, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg', symObjAddr: 0x0, symBinAddr: 0x36A54, symSize: 0x94 } - - { offsetInCU: 0x135, offset: 0xD5451, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSValueContainerA2cDP15jsDateFormatterSo09NSISO8601gH0CvgZTW', symObjAddr: 0x4B4, symBinAddr: 0x36F08, symSize: 0x68 } - - { offsetInCU: 0x174, offset: 0xD5490, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZ', symObjAddr: 0x51C, symBinAddr: 0x36F70, symSize: 0x68 } - - { offsetInCU: 0x1B9, offset: 0xD54D5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSValueContainerA2cDP22jsObjectRepresentationSDySSAC0D0_pGvgTW', symObjAddr: 0x584, symBinAddr: 0x36FD8, symSize: 0x94 } - - { offsetInCU: 0x217, offset: 0xD5533, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvgTo', symObjAddr: 0x618, symBinAddr: 0x3706C, symSize: 0x4C } - - { offsetInCU: 0x257, offset: 0xD5573, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvg', symObjAddr: 0x664, symBinAddr: 0x370B8, symSize: 0x30 } - - { offsetInCU: 0x298, offset: 0xD55B4, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatter_WZ', symObjAddr: 0x694, symBinAddr: 0x370E8, symSize: 0x30 } - - { offsetInCU: 0x2F3, offset: 0xD560F, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZTo', symObjAddr: 0x6C4, symBinAddr: 0x37118, symSize: 0x6C } - - { offsetInCU: 0x32A, offset: 0xD5646, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZ', symObjAddr: 0x730, symBinAddr: 0x37184, symSize: 0x74 } - - { offsetInCU: 0x385, offset: 0xD56A1, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZTo', symObjAddr: 0x7A4, symBinAddr: 0x371F8, symSize: 0x7C } - - { offsetInCU: 0x3C6, offset: 0xD56E2, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ', symObjAddr: 0x820, symBinAddr: 0x37274, symSize: 0x6C } - - { offsetInCU: 0x3FD, offset: 0xD5719, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ.resume.0', symObjAddr: 0x88C, symBinAddr: 0x372E0, symSize: 0x4 } - - { offsetInCU: 0x428, offset: 0xD5744, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSF', symObjAddr: 0x890, symBinAddr: 0x372E4, symSize: 0x178 } - - { offsetInCU: 0x4C9, offset: 0xD57E5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSFTo', symObjAddr: 0xA08, symBinAddr: 0x3745C, symSize: 0x64 } - - { offsetInCU: 0x58F, offset: 0xD58AB, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7successyyF', symObjAddr: 0xA6C, symBinAddr: 0x374C0, symSize: 0xB8 } - - { offsetInCU: 0x658, offset: 0xD5974, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7successyyFTo', symObjAddr: 0xB24, symBinAddr: 0x37578, symSize: 0xC4 } - - { offsetInCU: 0x70F, offset: 0xD5A2B, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7resolveyyF', symObjAddr: 0xBF0, symBinAddr: 0x37644, symSize: 0xA8 } - - { offsetInCU: 0x7AC, offset: 0xD5AC8, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7resolveyyFTo', symObjAddr: 0xC98, symBinAddr: 0x376EC, symSize: 0xB4 } - - { offsetInCU: 0x86A, offset: 0xD5B86, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtF', symObjAddr: 0xF08, symBinAddr: 0x3795C, symSize: 0xE0 } - - { offsetInCU: 0x936, offset: 0xD5C52, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtFTo', symObjAddr: 0xFE8, symBinAddr: 0x37A3C, symSize: 0x154 } - - { offsetInCU: 0x9D6, offset: 0xD5CF2, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtF', symObjAddr: 0x113C, symBinAddr: 0x37B90, symSize: 0x100 } - - { offsetInCU: 0xAB8, offset: 0xD5DD4, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtFTo', symObjAddr: 0x123C, symBinAddr: 0x37C90, symSize: 0x19C } - - { offsetInCU: 0xB62, offset: 0xD5E7E, size: 0x8, addend: 0x0, symName: '_$sSo6NSNullCMa', symObjAddr: 0x180C, symBinAddr: 0x381DC, symSize: 0x3C } - - { offsetInCU: 0xB76, offset: 0xD5E92, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x18E8, symBinAddr: 0x38218, symSize: 0x20 } - - { offsetInCU: 0xC33, offset: 0xD5F4F, size: 0x8, addend: 0x0, symName: '_$ss30_dictionaryDownCastConditionalySDyq0_q1_GSgSDyxq_GSHRzSHR0_r2_lFs11AnyHashableV_ypSS9Capacitor7JSValue_pTg5', symObjAddr: 0x94, symBinAddr: 0x36AE8, symSize: 0x420 } - - { offsetInCU: 0xBE, offset: 0xD6343, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg', symObjAddr: 0x0, symBinAddr: 0x38274, symSize: 0x70 } - - { offsetInCU: 0x122, offset: 0xD63A7, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9Capacitor0C9ExtensionA2cDP9capacitor0C4TypeQzmvgZTW', symObjAddr: 0x70, symBinAddr: 0x382E4, symSize: 0xC } - - { offsetInCU: 0x13E, offset: 0xD63C3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ', symObjAddr: 0x7C, symBinAddr: 0x382F0, symSize: 0x4 } - - { offsetInCU: 0x197, offset: 0xD641C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9Capacitor0C9ExtensionA2dEP9capacitor0C4TypeQzvgTW', symObjAddr: 0x80, symBinAddr: 0x382F4, symSize: 0xC } - - { offsetInCU: 0x1F4, offset: 0xD6479, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9Capacitor0C9ExtensionA2dEP9capacitor0C4TypeQzmvgZTW', symObjAddr: 0x8C, symBinAddr: 0x38300, symSize: 0xC } - - { offsetInCU: 0x234, offset: 0xD64B9, size: 0x8, addend: 0x0, symName: '_$sSo7UIColorC9Capacitor0B9ExtensionA2cDP9capacitor0B4TypeQzvgTW', symObjAddr: 0x98, symBinAddr: 0x3830C, symSize: 0xC } - - { offsetInCU: 0x28D, offset: 0xD6512, size: 0x8, addend: 0x0, symName: '_$sSo7UIColorC9Capacitor0B9ExtensionA2cDP9capacitor0B4TypeQzmvgZTW', symObjAddr: 0xA4, symBinAddr: 0x38318, symSize: 0xC } - - { offsetInCU: 0x2A9, offset: 0xD652E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMi', symObjAddr: 0xD8, symBinAddr: 0x38334, symSize: 0x8 } - - { offsetInCU: 0x2BD, offset: 0xD6542, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMr', symObjAddr: 0xE0, symBinAddr: 0x3833C, symSize: 0x6C } - - { offsetInCU: 0x2D1, offset: 0xD6556, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwCP', symObjAddr: 0x14C, symBinAddr: 0x383A8, symSize: 0x70 } - - { offsetInCU: 0x2E5, offset: 0xD656A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwxx', symObjAddr: 0x1BC, symBinAddr: 0x38418, symSize: 0x10 } - - { offsetInCU: 0x2F9, offset: 0xD657E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwcp', symObjAddr: 0x1CC, symBinAddr: 0x38428, symSize: 0x30 } - - { offsetInCU: 0x30D, offset: 0xD6592, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwca', symObjAddr: 0x1FC, symBinAddr: 0x38458, symSize: 0x30 } - - { offsetInCU: 0x321, offset: 0xD65A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwtk', symObjAddr: 0x22C, symBinAddr: 0x38488, symSize: 0x30 } - - { offsetInCU: 0x335, offset: 0xD65BA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwta', symObjAddr: 0x25C, symBinAddr: 0x384B8, symSize: 0x30 } - - { offsetInCU: 0x349, offset: 0xD65CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwet', symObjAddr: 0x28C, symBinAddr: 0x384E8, symSize: 0x10C } - - { offsetInCU: 0x35D, offset: 0xD65E2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwst', symObjAddr: 0x398, symBinAddr: 0x385F4, symSize: 0x1B8 } - - { offsetInCU: 0x371, offset: 0xD65F6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMa', symObjAddr: 0x550, symBinAddr: 0x387AC, symSize: 0xC } - - { offsetInCU: 0x385, offset: 0xD660A, size: 0x8, addend: 0x0, symName: '_$sSayxG9Capacitor0A9ExtensionA2bCP9capacitor0A4TypeQzvgTW', symObjAddr: 0x55C, symBinAddr: 0x387B8, symSize: 0x14 } - - { offsetInCU: 0x3A1, offset: 0xD6626, size: 0x8, addend: 0x0, symName: '_$sSayxG9Capacitor0A9ExtensionA2bCP9capacitor0A4TypeQzmvgZTW', symObjAddr: 0x570, symBinAddr: 0x387CC, symSize: 0xC } - - { offsetInCU: 0x3BD, offset: 0xD6642, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x60C, symBinAddr: 0x387D8, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0xD67F2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7defaultACvpZ', symObjAddr: 0x60B8, symBinAddr: 0x75438, symSize: 0x0 } - - { offsetInCU: 0x8E, offset: 0xD6835, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7defaultACvgZ', symObjAddr: 0x1A08, symBinAddr: 0x3A220, symSize: 0x50 } - - { offsetInCU: 0xC6, offset: 0xD686D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO6stringACSSSg_tcfC', symObjAddr: 0x1A58, symBinAddr: 0x3A270, symSize: 0xBC } - - { offsetInCU: 0x169, offset: 0xD6910, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO8rawValueACSgSS_tcfC', symObjAddr: 0x1B14, symBinAddr: 0x3A32C, symSize: 0x6C } - - { offsetInCU: 0x194, offset: 0xD693B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO8rawValueSSvg', symObjAddr: 0x1BC0, symBinAddr: 0x3A398, symSize: 0x24 } - - { offsetInCU: 0x1AF, offset: 0xD6956, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x1C08, symBinAddr: 0x3A3E0, symSize: 0xC } - - { offsetInCU: 0x1CB, offset: 0xD6972, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x1C14, symBinAddr: 0x3A3EC, symSize: 0x24 } - - { offsetInCU: 0x218, offset: 0xD69BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x0, symBinAddr: 0x38818, symSize: 0x18C } - - { offsetInCU: 0x3E8, offset: 0xD6B8F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x14E8, symBinAddr: 0x39D00, symSize: 0x190 } - - { offsetInCU: 0x484, offset: 0xD6C2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x1678, symBinAddr: 0x39E90, symSize: 0x190 } - - { offsetInCU: 0x578, offset: 0xD6D1F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7default_WZ', symObjAddr: 0x19F8, symBinAddr: 0x3A210, symSize: 0x10 } - - { offsetInCU: 0x5E5, offset: 0xD6D8C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg', symObjAddr: 0x1CE8, symBinAddr: 0x3A4C0, symSize: 0x58 } - - { offsetInCU: 0x604, offset: 0xD6DAB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs', symObjAddr: 0x1D40, symBinAddr: 0x3A518, symSize: 0x68 } - - { offsetInCU: 0x62D, offset: 0xD6DD4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM', symObjAddr: 0x1DF0, symBinAddr: 0x3A580, symSize: 0x44 } - - { offsetInCU: 0x65C, offset: 0xD6E03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM.resume.0', symObjAddr: 0x1E34, symBinAddr: 0x3A5C4, symSize: 0x4 } - - { offsetInCU: 0x6CF, offset: 0xD6E76, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg', symObjAddr: 0x1EF4, symBinAddr: 0x3A684, symSize: 0x54 } - - { offsetInCU: 0x6EE, offset: 0xD6E95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs', symObjAddr: 0x1F48, symBinAddr: 0x3A6D8, symSize: 0x5C } - - { offsetInCU: 0x717, offset: 0xD6EBE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM', symObjAddr: 0x1FA4, symBinAddr: 0x3A734, symSize: 0x44 } - - { offsetInCU: 0x770, offset: 0xD6F17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg', symObjAddr: 0x2050, symBinAddr: 0x3A7E0, symSize: 0x48 } - - { offsetInCU: 0x78F, offset: 0xD6F36, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs', symObjAddr: 0x2098, symBinAddr: 0x3A828, symSize: 0x50 } - - { offsetInCU: 0x7B8, offset: 0xD6F5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM', symObjAddr: 0x20E8, symBinAddr: 0x3A878, symSize: 0x44 } - - { offsetInCU: 0x7E7, offset: 0xD6F8E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg', symObjAddr: 0x212C, symBinAddr: 0x3A8BC, symSize: 0x50 } - - { offsetInCU: 0x816, offset: 0xD6FBD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs', symObjAddr: 0x217C, symBinAddr: 0x3A90C, symSize: 0x50 } - - { offsetInCU: 0x855, offset: 0xD6FFC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM', symObjAddr: 0x21CC, symBinAddr: 0x3A95C, symSize: 0x44 } - - { offsetInCU: 0x8A2, offset: 0xD7049, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfC', symObjAddr: 0x2210, symBinAddr: 0x3A9A0, symSize: 0x88 } - - { offsetInCU: 0x8D5, offset: 0xD707C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc', symObjAddr: 0x2298, symBinAddr: 0x3AA28, symSize: 0x74 } - - { offsetInCU: 0x8F4, offset: 0xD709B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF', symObjAddr: 0x230C, symBinAddr: 0x3AA9C, symSize: 0x24 } - - { offsetInCU: 0x908, offset: 0xD70AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF', symObjAddr: 0x2330, symBinAddr: 0x3AAC0, symSize: 0x78 } - - { offsetInCU: 0x959, offset: 0xD7100, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF', symObjAddr: 0x23A8, symBinAddr: 0x3AB38, symSize: 0x940 } - - { offsetInCU: 0xE18, offset: 0xD75BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF', symObjAddr: 0x2EB8, symBinAddr: 0x3B648, symSize: 0x140 } - - { offsetInCU: 0xEC8, offset: 0xD766F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF', symObjAddr: 0x2FF8, symBinAddr: 0x3B788, symSize: 0x24 } - - { offsetInCU: 0xEFA, offset: 0xD76A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCfd', symObjAddr: 0x301C, symBinAddr: 0x3B7AC, symSize: 0x60 } - - { offsetInCU: 0xF35, offset: 0xD76DC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCfD', symObjAddr: 0x307C, symBinAddr: 0x3B80C, symSize: 0x6C } - - { offsetInCU: 0xFE7, offset: 0xD778E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKFTf4nn_g', symObjAddr: 0x4448, symBinAddr: 0x3CBD8, symSize: 0x240 } - - { offsetInCU: 0x10B5, offset: 0xD785C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ', symObjAddr: 0x30E8, symBinAddr: 0x3B878, symSize: 0x4 } - - { offsetInCU: 0x10C9, offset: 0xD7870, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ', symObjAddr: 0x30EC, symBinAddr: 0x3B87C, symSize: 0x4 } - - { offsetInCU: 0x10DD, offset: 0xD7884, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ', symObjAddr: 0x30F0, symBinAddr: 0x3B880, symSize: 0xD14 } - - { offsetInCU: 0x1536, offset: 0xD7CDD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0x3E04, symBinAddr: 0x3C594, symSize: 0x2A8 } - - { offsetInCU: 0x166F, offset: 0xD7E16, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCfd', symObjAddr: 0x4178, symBinAddr: 0x3C908, symSize: 0x8 } - - { offsetInCU: 0x169E, offset: 0xD7E45, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCfD', symObjAddr: 0x4180, symBinAddr: 0x3C910, symSize: 0x10 } - - { offsetInCU: 0x16CD, offset: 0xD7E74, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZTf4nnd_n', symObjAddr: 0x46D4, symBinAddr: 0x3CE18, symSize: 0x3C8 } - - { offsetInCU: 0x1A3F, offset: 0xD81E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZTf4nnnd_n', symObjAddr: 0x4A9C, symBinAddr: 0x3D1E0, symSize: 0xBC4 } - - { offsetInCU: 0x1EFA, offset: 0xD86A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvpAETk', symObjAddr: 0x1C38, symBinAddr: 0x3A410, symSize: 0xB0 } - - { offsetInCU: 0x1F31, offset: 0xD86D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvpAETK', symObjAddr: 0x1E38, symBinAddr: 0x3A5C8, symSize: 0x54 } - - { offsetInCU: 0x1F5E, offset: 0xD8705, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvpAETk', symObjAddr: 0x1E8C, symBinAddr: 0x3A61C, symSize: 0x68 } - - { offsetInCU: 0x1F96, offset: 0xD873D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvpAETk', symObjAddr: 0x1FE8, symBinAddr: 0x3A778, symSize: 0x68 } - - { offsetInCU: 0x2333, offset: 0xD8ADA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x40AC, symBinAddr: 0x3C83C, symSize: 0xCC } - - { offsetInCU: 0x234B, offset: 0xD8AF2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tgq5', symObjAddr: 0x4190, symBinAddr: 0x3C920, symSize: 0x64 } - - { offsetInCU: 0x2363, offset: 0xD8B0A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tgq5', symObjAddr: 0x41F4, symBinAddr: 0x3C984, symSize: 0x144 } - - { offsetInCU: 0x23AB, offset: 0xD8B52, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgq5Tf4gd_n', symObjAddr: 0x4338, symBinAddr: 0x3CAC8, symSize: 0x110 } - - { offsetInCU: 0x24F5, offset: 0xD8C9C, size: 0x8, addend: 0x0, symName: '_$s10Foundation8URLErrorVAcA21_BridgedStoredNSErrorAAWl', symObjAddr: 0x56C0, symBinAddr: 0x3DE04, symSize: 0x48 } - - { offsetInCU: 0x2509, offset: 0xD8CB0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMa', symObjAddr: 0x574C, symBinAddr: 0x3DE4C, symSize: 0x3C } - - { offsetInCU: 0x251D, offset: 0xD8CC4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x57F8, symBinAddr: 0x3DEC4, symSize: 0x2C } - - { offsetInCU: 0x2531, offset: 0xD8CD8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x5824, symBinAddr: 0x3DEF0, symSize: 0x10 } - - { offsetInCU: 0x2545, offset: 0xD8CEC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x5834, symBinAddr: 0x3DF00, symSize: 0x8 } - - { offsetInCU: 0x2559, offset: 0xD8D00, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASQWb', symObjAddr: 0x5874, symBinAddr: 0x3DF28, symSize: 0x4 } - - { offsetInCU: 0x256D, offset: 0xD8D14, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOACSQAAWl', symObjAddr: 0x5878, symBinAddr: 0x3DF2C, symSize: 0x44 } - - { offsetInCU: 0x2581, offset: 0xD8D28, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwet', symObjAddr: 0x59FC, symBinAddr: 0x3E0A0, symSize: 0x90 } - - { offsetInCU: 0x2595, offset: 0xD8D3C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwst', symObjAddr: 0x5A8C, symBinAddr: 0x3E130, symSize: 0xBC } - - { offsetInCU: 0x25A9, offset: 0xD8D50, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwug', symObjAddr: 0x5B48, symBinAddr: 0x3E1EC, symSize: 0x8 } - - { offsetInCU: 0x25BD, offset: 0xD8D64, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwup', symObjAddr: 0x5B50, symBinAddr: 0x3E1F4, symSize: 0x4 } - - { offsetInCU: 0x25D1, offset: 0xD8D78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwui', symObjAddr: 0x5B54, symBinAddr: 0x3E1F8, symSize: 0x8 } - - { offsetInCU: 0x25E5, offset: 0xD8D8C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOMa', symObjAddr: 0x5B5C, symBinAddr: 0x3E200, symSize: 0x10 } - - { offsetInCU: 0x25F9, offset: 0xD8DA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCMa', symObjAddr: 0x5B6C, symBinAddr: 0x3E210, symSize: 0x20 } - - { offsetInCU: 0x260D, offset: 0xD8DB4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMU', symObjAddr: 0x5B98, symBinAddr: 0x3E23C, symSize: 0x8 } - - { offsetInCU: 0x2621, offset: 0xD8DC8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMr', symObjAddr: 0x5BA0, symBinAddr: 0x3E244, symSize: 0x80 } - - { offsetInCU: 0x2635, offset: 0xD8DDC, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgMa', symObjAddr: 0x5D10, symBinAddr: 0x3E3B4, symSize: 0x54 } - - { offsetInCU: 0x26BC, offset: 0xD8E63, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_S2SypTg5', symObjAddr: 0x18C, symBinAddr: 0x389A4, symSize: 0x37C } - - { offsetInCU: 0x2818, offset: 0xD8FBF, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_SayypGSSypTg5', symObjAddr: 0x508, symBinAddr: 0x38D20, symSize: 0x37C } - - { offsetInCU: 0x298C, offset: 0xD9133, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x884, symBinAddr: 0x3909C, symSize: 0x408 } - - { offsetInCU: 0x2AD4, offset: 0xD927B, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_9Capacitor7JSValue_ps11AnyHashableVypTg5', symObjAddr: 0xC8C, symBinAddr: 0x394A4, symSize: 0x43C } - - { offsetInCU: 0x2C07, offset: 0xD93AE, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_9Capacitor7JSValue_pSSypTg5', symObjAddr: 0x10C8, symBinAddr: 0x398E0, symSize: 0x39C } - - { offsetInCU: 0x2D5D, offset: 0xD9504, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1464, symBinAddr: 0x39C7C, symSize: 0x84 } - - { offsetInCU: 0x2DEA, offset: 0xD9591, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x1808, symBinAddr: 0x3A020, symSize: 0xE4 } - - { offsetInCU: 0x2ECD, offset: 0xD9674, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x18EC, symBinAddr: 0x3A104, symSize: 0x68 } - - { offsetInCU: 0x2F6B, offset: 0xD9712, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1954, symBinAddr: 0x3A16C, symSize: 0x40 } - - { offsetInCU: 0x2FC8, offset: 0xD976F, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1994, symBinAddr: 0x3A1AC, symSize: 0x64 } - - { offsetInCU: 0x3044, offset: 0xD97EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BE4, symBinAddr: 0x3A3BC, symSize: 0xC } - - { offsetInCU: 0x3060, offset: 0xD9807, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1BF0, symBinAddr: 0x3A3C8, symSize: 0x8 } - - { offsetInCU: 0x307C, offset: 0xD9823, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x3A3D0, symSize: 0x8 } - - { offsetInCU: 0x3090, offset: 0xD9837, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C00, symBinAddr: 0x3A3D8, symSize: 0x8 } - - { offsetInCU: 0x3192, offset: 0xD9939, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lF9Capacitor18PluginHeaderMethodV_SayAGGTg5', symObjAddr: 0x2CE8, symBinAddr: 0x3B478, symSize: 0xDC } - - { offsetInCU: 0x33A3, offset: 0xD9B4A, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lF10Foundation12URLQueryItemV_SayAGGTg5', symObjAddr: 0x2DC4, symBinAddr: 0x3B554, symSize: 0xF4 } - - { offsetInCU: 0x27, offset: 0xDA198, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF', symObjAddr: 0x0, symBinAddr: 0x3E4D8, symSize: 0x17C } - - { offsetInCU: 0x81, offset: 0xDA1F2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF', symObjAddr: 0x0, symBinAddr: 0x3E4D8, symSize: 0x17C } - - { offsetInCU: 0x25E, offset: 0xDA3CF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF', symObjAddr: 0x17C, symBinAddr: 0x3E654, symSize: 0x8 } - - { offsetInCU: 0x2BE, offset: 0xDA42F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF', symObjAddr: 0x184, symBinAddr: 0x3E65C, symSize: 0x188 } - - { offsetInCU: 0x4F4, offset: 0xDA665, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOb', symObjAddr: 0x3EC, symBinAddr: 0x3E7E4, symSize: 0x48 } - - { offsetInCU: 0x508, offset: 0xDA679, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOc', symObjAddr: 0x434, symBinAddr: 0x3E82C, symSize: 0x48 } - - { offsetInCU: 0x51C, offset: 0xDA68D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOh', symObjAddr: 0x47C, symBinAddr: 0x3E874, symSize: 0x40 } - - { offsetInCU: 0x4F, offset: 0xDA87C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24catchallOptionsParameterSSvpZ', symObjAddr: 0x13ED0, symBinAddr: 0x77BF8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xDA896, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC17callbackParameterSSvpZ', symObjAddr: 0x13EE0, symBinAddr: 0x77C08, symSize: 0x0 } - - { offsetInCU: 0xDB, offset: 0xDA908, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC14exportBridgeJS21userContentControllerySo06WKUsergH0C_tKFZ', symObjAddr: 0x0, symBinAddr: 0x3E8B8, symSize: 0x398 } - - { offsetInCU: 0x250, offset: 0xDAA7D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC22exportCordovaPluginsJS21userContentControllerySo06WKUserhI0C_tKFZ', symObjAddr: 0x398, symBinAddr: 0x3EC50, symSize: 0x1E0 } - - { offsetInCU: 0x2AC, offset: 0xDAAD9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC20injectFilesForFolder6folder21userContentControllery10Foundation3URLV_So06WKUseriJ0CtFZ', symObjAddr: 0xB14, symBinAddr: 0x3F3CC, symSize: 0x514 } - - { offsetInCU: 0x58B, offset: 0xDADB8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportCfD', symObjAddr: 0x1028, symBinAddr: 0x3F8E0, symSize: 0x10 } - - { offsetInCU: 0x5BA, offset: 0xDADE7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC06exportA8GlobalJS21userContentController7isDebug14loggingEnabled8localUrlySo06WKUsergH0C_S2bSStKFZTf4nnnnd_n', symObjAddr: 0x10D8, symBinAddr: 0x3F910, symSize: 0x1B8 } - - { offsetInCU: 0x7F1, offset: 0xDB01E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC10injectFile7fileURL21userContentControllery10Foundation0F0V_So06WKUserhI0CtKFZTf4nnd_n', symObjAddr: 0x1290, symBinAddr: 0x3FAC8, symSize: 0x1A0 } - - { offsetInCU: 0x933, offset: 0xDB160, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC14generateMethod33_35B4C07ABE18CB14DB9A3F920E64F657LL15pluginClassName6methodS2S_So09CAPPluginD0CtFZTf4nnd_n', symObjAddr: 0x1430, symBinAddr: 0x3FC68, symSize: 0x880 } - - { offsetInCU: 0x14D1, offset: 0xDBCFE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24createPluginHeaderMethod33_35B4C07ABE18CB14DB9A3F920E64F657LL6methodAA0deF0VSo09CAPPluginF0C_tFZTf4nd_n', symObjAddr: 0x1CB0, symBinAddr: 0x404E8, symSize: 0xF0 } - - { offsetInCU: 0x158F, offset: 0xDBDBC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC18createPluginHeader33_35B4C07ABE18CB14DB9A3F920E64F657LL3forAA0dE0VSgSo010CAPBridgedD0_So9CAPPluginCXc_tFZTf4nd_n', symObjAddr: 0x1DA0, symBinAddr: 0x405D8, symSize: 0x2F0 } - - { offsetInCU: 0x185E, offset: 0xDC08B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC8exportJS3for2inySo16CAPBridgedPlugin_So9CAPPluginCXc_So23WKUserContentControllerCtFZTf4nnd_n', symObjAddr: 0x2090, symBinAddr: 0x408C8, symSize: 0x61C } - - { offsetInCU: 0x1F00, offset: 0xDC72D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC15exportCordovaJS21userContentControllerySo06WKUsergH0C_tKFZTf4nd_n', symObjAddr: 0x26AC, symBinAddr: 0x40EE4, symSize: 0x61C } - - { offsetInCU: 0x214F, offset: 0xDC97C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueSSvg', symObjAddr: 0x578, symBinAddr: 0x3EE30, symSize: 0x2C } - - { offsetInCU: 0x2176, offset: 0xDC9A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x5AC, symBinAddr: 0x3EE64, symSize: 0x8 } - - { offsetInCU: 0x21A1, offset: 0xDC9CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x5B4, symBinAddr: 0x3EE6C, symSize: 0x24 } - - { offsetInCU: 0x21D2, offset: 0xDC9FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x5D8, symBinAddr: 0x3EE90, symSize: 0xC } - - { offsetInCU: 0x21EE, offset: 0xDCA1B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3318, symBinAddr: 0x41A14, symSize: 0xD0 } - - { offsetInCU: 0x2234, offset: 0xDCA61, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV6encode2toys7Encoder_p_tKF', symObjAddr: 0x634, symBinAddr: 0x3EEEC, symSize: 0x118 } - - { offsetInCU: 0x2289, offset: 0xDCAB6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x8D8, symBinAddr: 0x3F190, symSize: 0x2C } - - { offsetInCU: 0x22C0, offset: 0xDCAED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x904, symBinAddr: 0x3F1BC, symSize: 0x1C } - - { offsetInCU: 0x22E3, offset: 0xDCB10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x33E8, symBinAddr: 0x41AE4, symSize: 0x1A0 } - - { offsetInCU: 0x2333, offset: 0xDCB60, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueSSvg', symObjAddr: 0x74C, symBinAddr: 0x3F004, symSize: 0x30 } - - { offsetInCU: 0x237E, offset: 0xDCBAB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x920, symBinAddr: 0x3F1D8, symSize: 0x18 } - - { offsetInCU: 0x23E6, offset: 0xDCC13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x980, symBinAddr: 0x3F238, symSize: 0x28 } - - { offsetInCU: 0x2460, offset: 0xDCC8D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x9EC, symBinAddr: 0x3F2A4, symSize: 0x8 } - - { offsetInCU: 0x248B, offset: 0xDCCB8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9F4, symBinAddr: 0x3F2AC, symSize: 0x24 } - - { offsetInCU: 0x24BC, offset: 0xDCCE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xA18, symBinAddr: 0x3F2D0, symSize: 0xC } - - { offsetInCU: 0x24D8, offset: 0xDCD05, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xA24, symBinAddr: 0x3F2DC, symSize: 0xC } - - { offsetInCU: 0x24F4, offset: 0xDCD21, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x35EC, symBinAddr: 0x41CC8, symSize: 0xD8 } - - { offsetInCU: 0x253A, offset: 0xDCD67, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV6encode2toys7Encoder_p_tKF', symObjAddr: 0x77C, symBinAddr: 0x3F034, symSize: 0x15C } - - { offsetInCU: 0x258F, offset: 0xDCDBC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xA80, symBinAddr: 0x3F338, symSize: 0x2C } - - { offsetInCU: 0x25C6, offset: 0xDCDF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xAAC, symBinAddr: 0x3F364, symSize: 0x1C } - - { offsetInCU: 0x25E9, offset: 0xDCE16, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x36C4, symBinAddr: 0x41DA0, symSize: 0x1D0 } - - { offsetInCU: 0x2631, offset: 0xDCE5E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24catchallOptionsParameter_WZ', symObjAddr: 0xAC8, symBinAddr: 0x3F380, symSize: 0x24 } - - { offsetInCU: 0x264B, offset: 0xDCE78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC17callbackParameter_WZ', symObjAddr: 0xAEC, symBinAddr: 0x3F3A4, symSize: 0x28 } - - { offsetInCU: 0x26BD, offset: 0xDCEEA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportCMa', symObjAddr: 0x1038, symBinAddr: 0x3F8F0, symSize: 0x20 } - - { offsetInCU: 0x28E2, offset: 0xDD10F, size: 0x8, addend: 0x0, symName: '_$sSo15CAPPluginMethodCMa', symObjAddr: 0x2D0C, symBinAddr: 0x41500, symSize: 0x3C } - - { offsetInCU: 0x28F6, offset: 0xDD123, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVACSEAAWl', symObjAddr: 0x2D8C, symBinAddr: 0x4153C, symSize: 0x44 } - - { offsetInCU: 0x290A, offset: 0xDD137, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSgWOe', symObjAddr: 0x2DD0, symBinAddr: 0x41580, symSize: 0x30 } - - { offsetInCU: 0x291E, offset: 0xDD14B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwCP', symObjAddr: 0x2E90, symBinAddr: 0x415B0, symSize: 0x30 } - - { offsetInCU: 0x2932, offset: 0xDD15F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwxx', symObjAddr: 0x2EC0, symBinAddr: 0x415E0, symSize: 0x28 } - - { offsetInCU: 0x2946, offset: 0xDD173, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwcp', symObjAddr: 0x2EE8, symBinAddr: 0x41608, symSize: 0x3C } - - { offsetInCU: 0x295A, offset: 0xDD187, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwca', symObjAddr: 0x2F24, symBinAddr: 0x41644, symSize: 0x6C } - - { offsetInCU: 0x296E, offset: 0xDD19B, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x2F90, symBinAddr: 0x416B0, symSize: 0xC } - - { offsetInCU: 0x2982, offset: 0xDD1AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwta', symObjAddr: 0x2F9C, symBinAddr: 0x416BC, symSize: 0x44 } - - { offsetInCU: 0x2996, offset: 0xDD1C3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwet', symObjAddr: 0x2FE0, symBinAddr: 0x41700, symSize: 0x48 } - - { offsetInCU: 0x29AA, offset: 0xDD1D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwst', symObjAddr: 0x3028, symBinAddr: 0x41748, symSize: 0x40 } - - { offsetInCU: 0x29BE, offset: 0xDD1EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVMa', symObjAddr: 0x3068, symBinAddr: 0x41788, symSize: 0x10 } - - { offsetInCU: 0x29D2, offset: 0xDD1FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwCP', symObjAddr: 0x3078, symBinAddr: 0x41798, symSize: 0x3C } - - { offsetInCU: 0x29E6, offset: 0xDD213, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwxx', symObjAddr: 0x30B4, symBinAddr: 0x417D4, symSize: 0x28 } - - { offsetInCU: 0x29FA, offset: 0xDD227, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwcp', symObjAddr: 0x30DC, symBinAddr: 0x417FC, symSize: 0x3C } - - { offsetInCU: 0x2A0E, offset: 0xDD23B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwca', symObjAddr: 0x3118, symBinAddr: 0x41838, symSize: 0x64 } - - { offsetInCU: 0x2A22, offset: 0xDD24F, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x317C, symBinAddr: 0x4189C, symSize: 0x14 } - - { offsetInCU: 0x2A36, offset: 0xDD263, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwta', symObjAddr: 0x3190, symBinAddr: 0x418B0, symSize: 0x44 } - - { offsetInCU: 0x2A4A, offset: 0xDD277, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwet', symObjAddr: 0x31D4, symBinAddr: 0x418F4, symSize: 0x48 } - - { offsetInCU: 0x2A5E, offset: 0xDD28B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwst', symObjAddr: 0x321C, symBinAddr: 0x4193C, symSize: 0x40 } - - { offsetInCU: 0x2A72, offset: 0xDD29F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVMa', symObjAddr: 0x325C, symBinAddr: 0x4197C, symSize: 0x10 } - - { offsetInCU: 0x2A86, offset: 0xDD2B3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs0D3KeyAAWl', symObjAddr: 0x3290, symBinAddr: 0x4198C, symSize: 0x44 } - - { offsetInCU: 0x2A9A, offset: 0xDD2C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVACSEAAWl', symObjAddr: 0x32D4, symBinAddr: 0x419D0, symSize: 0x44 } - - { offsetInCU: 0x2AAE, offset: 0xDD2DB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs0E3KeyAAWl', symObjAddr: 0x3588, symBinAddr: 0x41C84, symSize: 0x44 } - - { offsetInCU: 0x2AC2, offset: 0xDD2EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVACSeAAWl', symObjAddr: 0x38F8, symBinAddr: 0x41FD4, symSize: 0x44 } - - { offsetInCU: 0x2AD6, offset: 0xDD303, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwup', symObjAddr: 0x3954, symBinAddr: 0x42020, symSize: 0x4 } - - { offsetInCU: 0x2AEA, offset: 0xDD317, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOMa', symObjAddr: 0x3958, symBinAddr: 0x42024, symSize: 0x10 } - - { offsetInCU: 0x2AFE, offset: 0xDD32B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwug', symObjAddr: 0x3ABC, symBinAddr: 0x42188, symSize: 0x8 } - - { offsetInCU: 0x2B12, offset: 0xDD33F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwup', symObjAddr: 0x3AC4, symBinAddr: 0x42190, symSize: 0x4 } - - { offsetInCU: 0x2B26, offset: 0xDD353, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwui', symObjAddr: 0x3AC8, symBinAddr: 0x42194, symSize: 0xC } - - { offsetInCU: 0x2B3A, offset: 0xDD367, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOMa', symObjAddr: 0x3AD4, symBinAddr: 0x421A0, symSize: 0x10 } - - { offsetInCU: 0x2B4E, offset: 0xDD37B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASQWb', symObjAddr: 0x3AE4, symBinAddr: 0x421B0, symSize: 0x4 } - - { offsetInCU: 0x2B62, offset: 0xDD38F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFSQAAWl', symObjAddr: 0x3AE8, symBinAddr: 0x421B4, symSize: 0x44 } - - { offsetInCU: 0x2B76, offset: 0xDD3A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASQWb', symObjAddr: 0x3B2C, symBinAddr: 0x421F8, symSize: 0x4 } - - { offsetInCU: 0x2B8A, offset: 0xDD3B7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFSQAAWl', symObjAddr: 0x3B30, symBinAddr: 0x421FC, symSize: 0x44 } - - { offsetInCU: 0x2B9E, offset: 0xDD3CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3B74, symBinAddr: 0x42240, symSize: 0x4 } - - { offsetInCU: 0x2BB2, offset: 0xDD3DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3B78, symBinAddr: 0x42244, symSize: 0x44 } - - { offsetInCU: 0x2BC6, offset: 0xDD3F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3BBC, symBinAddr: 0x42288, symSize: 0x4 } - - { offsetInCU: 0x2BDA, offset: 0xDD407, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3BC0, symBinAddr: 0x4228C, symSize: 0x44 } - - { offsetInCU: 0x2BEE, offset: 0xDD41B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3C04, symBinAddr: 0x422D0, symSize: 0x4 } - - { offsetInCU: 0x2C02, offset: 0xDD42F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3C08, symBinAddr: 0x422D4, symSize: 0x44 } - - { offsetInCU: 0x2C16, offset: 0xDD443, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3C4C, symBinAddr: 0x42318, symSize: 0x4 } - - { offsetInCU: 0x2C2A, offset: 0xDD457, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3C50, symBinAddr: 0x4231C, symSize: 0x44 } - - { offsetInCU: 0x2C6F, offset: 0xDD49C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x5E4, symBinAddr: 0x3EE9C, symSize: 0x28 } - - { offsetInCU: 0x2C8B, offset: 0xDD4B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x60C, symBinAddr: 0x3EEC4, symSize: 0x28 } - - { offsetInCU: 0x2CAD, offset: 0xDD4DA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xA30, symBinAddr: 0x3F2E8, symSize: 0x28 } - - { offsetInCU: 0x2CC9, offset: 0xDD4F6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xA58, symBinAddr: 0x3F310, symSize: 0x28 } - - { offsetInCU: 0xE8, offset: 0xDD999, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9hexString33_750E6D65F9E101F235B3FD4952DBE776LLySSs16IndexingIteratorVySays5UInt8VGGF', symObjAddr: 0x0, symBinAddr: 0x42384, symSize: 0x1A0 } - - { offsetInCU: 0x41B, offset: 0xDDCCC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9CapacitorE6sha256SSvg', symObjAddr: 0x1A0, symBinAddr: 0x42524, symSize: 0x144 } - - { offsetInCU: 0x502, offset: 0xDDDB3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9CapacitorE6sha256SSvgySWXEfU_', symObjAddr: 0x2F4, symBinAddr: 0x42678, symSize: 0xDC } - - { offsetInCU: 0x738, offset: 0xDDFE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC03getbC0SSyFZ', symObjAddr: 0x3E0, symBinAddr: 0x42764, symSize: 0xD0 } - - { offsetInCU: 0x795, offset: 0xDE046, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC010regeneratebC0yyFZ', symObjAddr: 0x4B0, symBinAddr: 0x42834, symSize: 0x4 } - - { offsetInCU: 0x7A9, offset: 0xDE05A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCfd', symObjAddr: 0x4B4, symBinAddr: 0x42838, symSize: 0x8 } - - { offsetInCU: 0x7D8, offset: 0xDE089, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCfD', symObjAddr: 0x4BC, symBinAddr: 0x42840, symSize: 0x10 } - - { offsetInCU: 0x855, offset: 0xDE106, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC010regeneratebC0yyFZTf4d_n', symObjAddr: 0x6D4, symBinAddr: 0x42A08, symSize: 0x1B4 } - - { offsetInCU: 0x905, offset: 0xDE1B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC06assertbC033_750E6D65F9E101F235B3FD4952DBE776LLyyFZTf4d_n', symObjAddr: 0x888, symBinAddr: 0x42BBC, symSize: 0xF8 } - - { offsetInCU: 0x9A5, offset: 0xDE256, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0V15withUnsafeBytesyxxSWKXEKlFyt_Tg5015$s10Foundation4B31V9CapacitorE6sha256SSvgySWXEfU_ACSays5UInt8VGTf1ncn_n', symObjAddr: 0x4CC, symBinAddr: 0x42850, symSize: 0xEC } - - { offsetInCU: 0x9ED, offset: 0xDE29E, size: 0x8, addend: 0x0, symName: '_$s10Foundation13__DataStorageC15withUnsafeBytes2in5applyxSnySiG_xSWKXEtKlFyt_Tg5015$s10Foundation4B31V9CapacitorE6sha256SSvgySWXEfU_AA0B0VSays5UInt8VGTf1nncn_n', symObjAddr: 0x5B8, symBinAddr: 0x4293C, symSize: 0xCC } - - { offsetInCU: 0xA23, offset: 0xDE2D4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCMa', symObjAddr: 0x980, symBinAddr: 0x42CB4, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0xDE5BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfC', symObjAddr: 0x0, symBinAddr: 0x42CE0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0xDE5D9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc', symObjAddr: 0x30, symBinAddr: 0x42D10, symSize: 0x320C } - - { offsetInCU: 0x123, offset: 0xDE68F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03setD4PathyySSF', symObjAddr: 0x327C, symBinAddr: 0x45F1C, symSize: 0x94 } - - { offsetInCU: 0x1A4, offset: 0xDE710, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF', symObjAddr: 0x3310, symBinAddr: 0x45FB0, symSize: 0x9C } - - { offsetInCU: 0x20A, offset: 0xDE776, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptF', symObjAddr: 0x33AC, symBinAddr: 0x4604C, symSize: 0x8 } - - { offsetInCU: 0x22D, offset: 0xDE799, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptFTo', symObjAddr: 0x34D8, symBinAddr: 0x46178, symSize: 0x6C } - - { offsetInCU: 0x25F, offset: 0xDE7CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptF', symObjAddr: 0x3544, symBinAddr: 0x461E4, symSize: 0xAC } - - { offsetInCU: 0x363, offset: 0xDE8CF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptFTo', symObjAddr: 0x35F0, symBinAddr: 0x46290, symSize: 0x104 } - - { offsetInCU: 0x451, offset: 0xDE9BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC20mimeTypeForExtension04pathI0S2S_tF', symObjAddr: 0x36F4, symBinAddr: 0x46394, symSize: 0x168 } - - { offsetInCU: 0x501, offset: 0xDEA6D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfC', symObjAddr: 0x385C, symBinAddr: 0x464FC, symSize: 0x20 } - - { offsetInCU: 0x51F, offset: 0xDEA8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfc', symObjAddr: 0x387C, symBinAddr: 0x4651C, symSize: 0x2C } - - { offsetInCU: 0x582, offset: 0xDEAEE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfcTo', symObjAddr: 0x38A8, symBinAddr: 0x46548, symSize: 0x2C } - - { offsetInCU: 0x5E9, offset: 0xDEB55, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCfD', symObjAddr: 0x38D4, symBinAddr: 0x46574, symSize: 0x34 } - - { offsetInCU: 0x616, offset: 0xDEB82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC16isMediaExtension04pathH0SbSS_tFTf4nd_n', symObjAddr: 0x47AC, symBinAddr: 0x47334, symSize: 0x12C } - - { offsetInCU: 0x739, offset: 0xDECA5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptFTf4dnn_n', symObjAddr: 0x48D8, symBinAddr: 0x47460, symSize: 0x1728 } - - { offsetInCU: 0x1252, offset: 0xDF7BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCfETo', symObjAddr: 0x3908, symBinAddr: 0x465A8, symSize: 0x48 } - - { offsetInCU: 0x12C3, offset: 0xDF82F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_SSTg5', symObjAddr: 0x3950, symBinAddr: 0x465F0, symSize: 0xDC } - - { offsetInCU: 0x13DF, offset: 0xDF94B, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_SiTg5', symObjAddr: 0x3A2C, symBinAddr: 0x466CC, symSize: 0xE0 } - - { offsetInCU: 0x14FA, offset: 0xDFA66, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFSi_Tg5', symObjAddr: 0x3B0C, symBinAddr: 0x467AC, symSize: 0x298 } - - { offsetInCU: 0x1571, offset: 0xDFADD, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0x3DA4, symBinAddr: 0x46A44, symSize: 0x8C } - - { offsetInCU: 0x1589, offset: 0xDFAF5, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0x3E30, symBinAddr: 0x46AD0, symSize: 0x4C } - - { offsetInCU: 0x15DE, offset: 0xDFB4A, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0x3E7C, symBinAddr: 0x46B1C, symSize: 0x154 } - - { offsetInCU: 0x164C, offset: 0xDFBB8, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0x3FD0, symBinAddr: 0x46C70, symSize: 0xF0 } - - { offsetInCU: 0x1671, offset: 0xDFBDD, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0x40C0, symBinAddr: 0x46D60, symSize: 0x214 } - - { offsetInCU: 0x16AA, offset: 0xDFC16, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0x42D4, symBinAddr: 0x46F74, symSize: 0x78 } - - { offsetInCU: 0x16C2, offset: 0xDFC2E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6Router_pWOc', symObjAddr: 0x434C, symBinAddr: 0x46FEC, symSize: 0x44 } - - { offsetInCU: 0x16D6, offset: 0xDFC42, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMa', symObjAddr: 0x4390, symBinAddr: 0x47030, symSize: 0x3C } - - { offsetInCU: 0x16EA, offset: 0xDFC56, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x44E4, symBinAddr: 0x4706C, symSize: 0x64 } - - { offsetInCU: 0x17A4, offset: 0xDFD10, size: 0x8, addend: 0x0, symName: '_$sSh21_nonEmptyArrayLiteralShyxGSayxG_tcfCSo16NSURLResourceKeya_Tg5Tf4gd_n', symObjAddr: 0x4548, symBinAddr: 0x470D0, symSize: 0x264 } - - { offsetInCU: 0x1A9B, offset: 0xE0007, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMU', symObjAddr: 0x6020, symBinAddr: 0x48BA8, symSize: 0x8 } - - { offsetInCU: 0x1AAF, offset: 0xE001B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMr', symObjAddr: 0x6028, symBinAddr: 0x48BB0, symSize: 0x84 } - - { offsetInCU: 0x1D21, offset: 0xE028D, size: 0x8, addend: 0x0, symName: '_$sSo12NSFileHandleC14forReadingFromAB10Foundation3URLV_tKcfCTO', symObjAddr: 0x33B4, symBinAddr: 0x46054, symSize: 0x124 } - - { offsetInCU: 0x8D, offset: 0xE0620, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC4httpyySo13CAPPluginCallC_SSSgtF', symObjAddr: 0x0, symBinAddr: 0x48CF0, symSize: 0x3B0 } - - { offsetInCU: 0x1B2, offset: 0xE0745, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC4httpyySo13CAPPluginCallC_SSSgtFTo', symObjAddr: 0x3B0, symBinAddr: 0x490A0, symSize: 0x8C } - - { offsetInCU: 0x1F8, offset: 0xE078B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC7requestyySo13CAPPluginCallCFTo', symObjAddr: 0x43C, symBinAddr: 0x4912C, symSize: 0x58 } - - { offsetInCU: 0x23B, offset: 0xE07CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x558, symBinAddr: 0x49248, symSize: 0xB4 } - - { offsetInCU: 0x259, offset: 0xE07EC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x60C, symBinAddr: 0x492FC, symSize: 0xB4 } - - { offsetInCU: 0x2D2, offset: 0xE0865, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x6E0, symBinAddr: 0x493D0, symSize: 0xD8 } - - { offsetInCU: 0x329, offset: 0xE08BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfC', symObjAddr: 0x7B8, symBinAddr: 0x494A8, symSize: 0x20 } - - { offsetInCU: 0x347, offset: 0xE08DA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfc', symObjAddr: 0x7D8, symBinAddr: 0x494C8, symSize: 0x30 } - - { offsetInCU: 0x382, offset: 0xE0915, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfcTo', symObjAddr: 0x808, symBinAddr: 0x494F8, symSize: 0x3C } - - { offsetInCU: 0x3BD, offset: 0xE0950, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCfD', symObjAddr: 0x844, symBinAddr: 0x49534, symSize: 0x30 } - - { offsetInCU: 0x3EB, offset: 0xE097E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCMa', symObjAddr: 0x6C0, symBinAddr: 0x493B0, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0xE0B30, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF', symObjAddr: 0x0, symBinAddr: 0x495A8, symSize: 0x100 } - - { offsetInCU: 0x6D, offset: 0xE0B72, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF', symObjAddr: 0x0, symBinAddr: 0x495A8, symSize: 0x100 } - - { offsetInCU: 0xF2, offset: 0xE0BF7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtFTo', symObjAddr: 0x1C4, symBinAddr: 0x496A8, symSize: 0xC4 } - - { offsetInCU: 0x10E, offset: 0xE0C13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtF', symObjAddr: 0x288, symBinAddr: 0x4976C, symSize: 0xE8 } - - { offsetInCU: 0x193, offset: 0xE0C98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtFTo', symObjAddr: 0x370, symBinAddr: 0x49854, symSize: 0x74 } - - { offsetInCU: 0x1AF, offset: 0xE0CB4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC6getIntySiSS_SitF', symObjAddr: 0x3E4, symBinAddr: 0x498C8, symSize: 0xE8 } - - { offsetInCU: 0x234, offset: 0xE0D39, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC6getIntySiSS_SitFTo', symObjAddr: 0x4CC, symBinAddr: 0x499B0, symSize: 0x74 } - - { offsetInCU: 0x250, offset: 0xE0D55, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF', symObjAddr: 0x540, symBinAddr: 0x49A24, symSize: 0xFC } - - { offsetInCU: 0x2D5, offset: 0xE0DDA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF', symObjAddr: 0x63C, symBinAddr: 0x49B20, symSize: 0xF4 } - - { offsetInCU: 0x34A, offset: 0xE0E4F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyF', symObjAddr: 0x730, symBinAddr: 0x49C14, symSize: 0x1C } - - { offsetInCU: 0x36A, offset: 0xE0E6F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyF', symObjAddr: 0x730, symBinAddr: 0x49C14, symSize: 0x1C } - - { offsetInCU: 0x3CD, offset: 0xE0ED2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x74C, symBinAddr: 0x49C30, symSize: 0x1C } - - { offsetInCU: 0x3ED, offset: 0xE0EF2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x74C, symBinAddr: 0x49C30, symSize: 0x1C } - - { offsetInCU: 0x40A, offset: 0xE0F0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x74C, symBinAddr: 0x49C30, symSize: 0x1C } - - { offsetInCU: 0x450, offset: 0xE0F55, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF', symObjAddr: 0x768, symBinAddr: 0x49C4C, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0xE0F85, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF', symObjAddr: 0x768, symBinAddr: 0x49C4C, symSize: 0x10 } - - { offsetInCU: 0x49B, offset: 0xE0FA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfC', symObjAddr: 0x778, symBinAddr: 0x49C5C, symSize: 0x20 } - - { offsetInCU: 0x4B9, offset: 0xE0FBE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfc', symObjAddr: 0x798, symBinAddr: 0x49C7C, symSize: 0x2C } - - { offsetInCU: 0x51C, offset: 0xE1021, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfcTo', symObjAddr: 0x7C4, symBinAddr: 0x49CA8, symSize: 0x2C } - - { offsetInCU: 0x583, offset: 0xE1088, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCfD', symObjAddr: 0x7F0, symBinAddr: 0x49CD4, symSize: 0x30 } - - { offsetInCU: 0x5FE, offset: 0xE1103, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCMa', symObjAddr: 0x820, symBinAddr: 0x49D04, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0xE1117, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCfETo', symObjAddr: 0x840, symBinAddr: 0x49D24, symSize: 0x10 } - - { offsetInCU: 0x127, offset: 0xE13EF, size: 0x8, addend: 0x0, symName: '_$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig', symObjAddr: 0x0, symBinAddr: 0x49E14, symSize: 0x270 } - - { offsetInCU: 0x40F, offset: 0xE16D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAAsADP06stringG0x0fG4TypeQz_tcfCTW', symObjAddr: 0x2F0, symBinAddr: 0x4A104, symSize: 0xC } - - { offsetInCU: 0x48E, offset: 0xE1756, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x2FC, symBinAddr: 0x4A110, symSize: 0x18C } - - { offsetInCU: 0x5C0, offset: 0xE1888, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x488, symBinAddr: 0x4A29C, symSize: 0xC0 } - - { offsetInCU: 0x6C3, offset: 0xE198B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAAs0de23ExtendedGraphemeClusterG0PWb', symObjAddr: 0x6B8, symBinAddr: 0x4A35C, symSize: 0x4 } - - { offsetInCU: 0x6D7, offset: 0xE199F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x6BC, symBinAddr: 0x4A360, symSize: 0x44 } - - { offsetInCU: 0x6EB, offset: 0xE19B3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAA0fG4TypesADP_s01_de7BuiltinfG0PWT', symObjAddr: 0x700, symBinAddr: 0x4A3A4, symSize: 0xC } - - { offsetInCU: 0x6FF, offset: 0xE19C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0de13UnicodeScalarI0PWb', symObjAddr: 0x70C, symBinAddr: 0x4A3B0, symSize: 0x4 } - - { offsetInCU: 0x713, offset: 0xE19DB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x710, symBinAddr: 0x4A3B4, symSize: 0x44 } - - { offsetInCU: 0x727, offset: 0xE19EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0fghI4TypesADP_s01_de7BuiltinfghI0PWT', symObjAddr: 0x754, symBinAddr: 0x4A3F8, symSize: 0xC } - - { offsetInCU: 0x73B, offset: 0xE1A03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0fgH4TypesADP_s01_de7BuiltinfgH0PWT', symObjAddr: 0x760, symBinAddr: 0x4A404, symSize: 0xC } - - { offsetInCU: 0x74F, offset: 0xE1A17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVMa', symObjAddr: 0x76C, symBinAddr: 0x4A410, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0xE1C34, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCF', symObjAddr: 0x0, symBinAddr: 0x4A428, symSize: 0x4 } - - { offsetInCU: 0x6E, offset: 0xE1C57, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCFTo', symObjAddr: 0x4, symBinAddr: 0x4A42C, symSize: 0x4C } - - { offsetInCU: 0xA0, offset: 0xE1C89, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x50, symBinAddr: 0x4A478, symSize: 0xB4 } - - { offsetInCU: 0xBE, offset: 0xE1CA7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x104, symBinAddr: 0x4A52C, symSize: 0xB4 } - - { offsetInCU: 0x137, offset: 0xE1D20, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x1B8, symBinAddr: 0x4A5E0, symSize: 0xD8 } - - { offsetInCU: 0x18E, offset: 0xE1D77, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfC', symObjAddr: 0x290, symBinAddr: 0x4A6B8, symSize: 0x20 } - - { offsetInCU: 0x1AC, offset: 0xE1D95, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfc', symObjAddr: 0x2B0, symBinAddr: 0x4A6D8, symSize: 0x30 } - - { offsetInCU: 0x1E7, offset: 0xE1DD0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfcTo', symObjAddr: 0x2E0, symBinAddr: 0x4A708, symSize: 0x3C } - - { offsetInCU: 0x222, offset: 0xE1E0B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCfD', symObjAddr: 0x31C, symBinAddr: 0x4A744, symSize: 0x30 } - - { offsetInCU: 0x24F, offset: 0xE1E38, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCFTf4nd_n', symObjAddr: 0x34C, symBinAddr: 0x4A774, symSize: 0x188 } - - { offsetInCU: 0x4FE, offset: 0xE20E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCMa', symObjAddr: 0x4D4, symBinAddr: 0x4A8FC, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0xE226F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvpZ', symObjAddr: 0x500, symBinAddr: 0x75960, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0xE2289, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ', symObjAddr: 0x0, symBinAddr: 0x4A944, symSize: 0x4 } - - { offsetInCU: 0x81, offset: 0xE22A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvgZ', symObjAddr: 0x4, symBinAddr: 0x4A948, symSize: 0x40 } - - { offsetInCU: 0xAC, offset: 0xE22D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvsZ', symObjAddr: 0x44, symBinAddr: 0x4A988, symSize: 0x44 } - - { offsetInCU: 0xE3, offset: 0xE2307, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvMZ', symObjAddr: 0x88, symBinAddr: 0x4A9CC, symSize: 0x40 } - - { offsetInCU: 0x10E, offset: 0xE2332, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvMZ.resume.0', symObjAddr: 0xC8, symBinAddr: 0x4AA0C, symSize: 0x4 } - - { offsetInCU: 0x139, offset: 0xE235D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCfd', symObjAddr: 0xCC, symBinAddr: 0x4AA10, symSize: 0x8 } - - { offsetInCU: 0x168, offset: 0xE238C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCfD', symObjAddr: 0xD4, symBinAddr: 0x4AA18, symSize: 0x10 } - - { offsetInCU: 0x197, offset: 0xE23BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZTf4nnnd_n', symObjAddr: 0xE4, symBinAddr: 0x4AA28, symSize: 0x2C0 } - - { offsetInCU: 0x47F, offset: 0xE26A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCMa', symObjAddr: 0x3A4, symBinAddr: 0x4ACE8, symSize: 0x20 } - - { offsetInCU: 0x493, offset: 0xE26B7, size: 0x8, addend: 0x0, symName: '_$sSi6offset_yp7elementtSgWOb', symObjAddr: 0x41C, symBinAddr: 0x4AD14, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0xE288D, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09CAPPluginE0CSgSS_tF', symObjAddr: 0x0, symBinAddr: 0x4AD80, symSize: 0xA0 } - - { offsetInCU: 0x3F, offset: 0xE28A5, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09CAPPluginE0CSgSS_tF', symObjAddr: 0x0, symBinAddr: 0x4AD80, symSize: 0xA0 } - - { offsetInCU: 0x1D4, offset: 0xE2A3A, size: 0x8, addend: 0x0, symName: '_$sSTsE5first5where7ElementQzSgSbADKXE_tKFSaySo15CAPPluginMethodCG_Tg5054$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09D19E0CSgSS_tFSbAGXEfU_SSTf1cn_nTf4ng_n', symObjAddr: 0xDC, symBinAddr: 0x4AE20, symSize: 0x198 } - - { offsetInCU: 0x43, offset: 0xE2D00, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvgTo', symObjAddr: 0x200, symBinAddr: 0x4B1B8, symSize: 0xBC } - - { offsetInCU: 0x5F, offset: 0xE2D1C, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvg', symObjAddr: 0x2BC, symBinAddr: 0x4B274, symSize: 0x134 } - - { offsetInCU: 0x108, offset: 0xE2DC5, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStF', symObjAddr: 0x3F0, symBinAddr: 0x4B3A8, symSize: 0x198 } - - { offsetInCU: 0x1F5, offset: 0xE2EB2, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStFTo', symObjAddr: 0x688, symBinAddr: 0x4B540, symSize: 0x114 } - - { offsetInCU: 0x262, offset: 0xE2F1F, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSF', symObjAddr: 0x79C, symBinAddr: 0x4B654, symSize: 0x1AC } - - { offsetInCU: 0x33D, offset: 0xE2FFA, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSFTo', symObjAddr: 0x948, symBinAddr: 0x4B800, symSize: 0x64 } - - { offsetInCU: 0x3CB, offset: 0xE3088, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tF', symObjAddr: 0x9AC, symBinAddr: 0x4B864, symSize: 0x138 } - - { offsetInCU: 0x4FB, offset: 0xE31B8, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tFTo', symObjAddr: 0xAE4, symBinAddr: 0x4B99C, symSize: 0x64 } - - { offsetInCU: 0x517, offset: 0xE31D4, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSF', symObjAddr: 0xB48, symBinAddr: 0x4BA00, symSize: 0x150 } - - { offsetInCU: 0x576, offset: 0xE3233, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSFTo', symObjAddr: 0xC98, symBinAddr: 0x4BB50, symSize: 0xF0 } - - { offsetInCU: 0x592, offset: 0xE324F, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSF', symObjAddr: 0xD88, symBinAddr: 0x4BC40, symSize: 0x150 } - - { offsetInCU: 0x5F1, offset: 0xE32AE, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSFTo', symObjAddr: 0xED8, symBinAddr: 0x4BD90, symSize: 0x8C } - - { offsetInCU: 0x7BA, offset: 0xE3477, size: 0x8, addend: 0x0, symName: '_$sSlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKFSS_Tg5', symObjAddr: 0x10CC, symBinAddr: 0x4BF84, symSize: 0x418 } - - { offsetInCU: 0xB6B, offset: 0xE3828, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSs_Tg5', symObjAddr: 0x14E4, symBinAddr: 0x4C39C, symSize: 0x14 } - - { offsetInCU: 0xBA3, offset: 0xE3860, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x14F8, symBinAddr: 0x4C3B0, symSize: 0x14 } - - { offsetInCU: 0xBD0, offset: 0xE388D, size: 0x8, addend: 0x0, symName: '_$sSlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF17appendSubsequenceL_3endSb5IndexQz_tSlRzlFSS_Tg5', symObjAddr: 0x150C, symBinAddr: 0x4C3C4, symSize: 0x10C } - - { offsetInCU: 0xDCE, offset: 0xE3A8B, size: 0x8, addend: 0x0, symName: '_$ss30_copySequenceToContiguousArrayys0dE0Vy7ElementQzGxSTRzlFs010EnumeratedB0VySaySsGG_Tg5', symObjAddr: 0x1618, symBinAddr: 0x4C4D0, symSize: 0x1C0 } - - { offsetInCU: 0x106C, offset: 0xE3D29, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8doesHost33_B57F4D0DE97AE9C2AEF6A73FAB0F46C7LL_5matchSbSS_SStFTf4nnd_n', symObjAddr: 0x18E4, symBinAddr: 0x4C79C, symSize: 0x3D4 } - - { offsetInCU: 0x15CA, offset: 0xE4287, size: 0x8, addend: 0x0, symName: '_$sSTsE8reversedSay7ElementQzGyFs18EnumeratedSequenceVySaySsGG_Tg5', symObjAddr: 0xF64, symBinAddr: 0x4BE1C, symSize: 0x168 } - - { offsetInCU: 0x1794, offset: 0xE4451, size: 0x8, addend: 0x0, symName: '_$sSasSQRzlE2eeoiySbSayxG_ABtFZSs_Tg5Tf4nnd_n', symObjAddr: 0x17D8, symBinAddr: 0x4C690, symSize: 0x10C } - - { offsetInCU: 0x4F, offset: 0xE47AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ', symObjAddr: 0x2DB0, symBinAddr: 0x75A08, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xE47C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ', symObjAddr: 0x2DC0, symBinAddr: 0x75A18, symSize: 0x0 } - - { offsetInCU: 0x82, offset: 0xE47DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO6scheme_WZ', symObjAddr: 0x7C, symBinAddr: 0x4CCE8, symSize: 0x28 } - - { offsetInCU: 0x9C, offset: 0xE47F7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO8hostname_WZ', symObjAddr: 0xC4, symBinAddr: 0x4CD30, symSize: 0x28 } - - { offsetInCU: 0x188, offset: 0xE48E3, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE19_parseConfiguration2at07cordovaE0y10Foundation3URLVSg_AJtF', symObjAddr: 0x15C, symBinAddr: 0x4CDC8, symSize: 0x1C18 } - - { offsetInCU: 0xD07, offset: 0xE5462, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE19_parseConfiguration2at07cordovaE0y10Foundation3URLVSg_AJtFTo', symObjAddr: 0x1D74, symBinAddr: 0x4E9E0, symSize: 0x154 } - - { offsetInCU: 0xD23, offset: 0xE547E, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvgTo', symObjAddr: 0x1EC8, symBinAddr: 0x4EB34, symSize: 0x38 } - - { offsetInCU: 0xD3F, offset: 0xE549A, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvg', symObjAddr: 0x1F00, symBinAddr: 0x4EB6C, symSize: 0x19C } - - { offsetInCU: 0xD83, offset: 0xE54DE, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCMa', symObjAddr: 0x20DC, symBinAddr: 0x4ED08, symSize: 0x3C } - - { offsetInCU: 0xDB9, offset: 0xE5514, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyF', symObjAddr: 0x2118, symBinAddr: 0x4ED44, symSize: 0x6C0 } - - { offsetInCU: 0xEB8, offset: 0xE5613, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyFTo', symObjAddr: 0x27D8, symBinAddr: 0x4F404, symSize: 0x2C } - - { offsetInCU: 0xED4, offset: 0xE562F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsOMa', symObjAddr: 0x28C8, symBinAddr: 0x4F4B0, symSize: 0x10 } - - { offsetInCU: 0xEE8, offset: 0xE5643, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZAE_Tg5Tf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x4F4C0, symSize: 0x2A0 } - - { offsetInCU: 0xFF5, offset: 0xE5750, size: 0x8, addend: 0x0, symName: '_$sSo26CAPInstanceLoggingBehaviorV9CapacitorE8behavior33_8A70532DEC43102D9B8E29134CB87F82LL4fromABSgSS_tFZTf4nd_n', symObjAddr: 0x2BC0, symBinAddr: 0x4F760, symSize: 0x158 } - - { offsetInCU: 0x10B1, offset: 0xE580C, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_So42UIScrollViewContentInsetAdjustmentBehaviorVTg5', symObjAddr: 0x0, symBinAddr: 0x4CC6C, symSize: 0x7C } - - { offsetInCU: 0x4F, offset: 0xE5BD2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6sharedACvpZ', symObjAddr: 0xEC0, symBinAddr: 0x75A38, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0xE5BFD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfC', symObjAddr: 0x30, symBinAddr: 0x4F8E8, symSize: 0x20 } - - { offsetInCU: 0x8E, offset: 0xE5C11, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6sharedACvgZ', symObjAddr: 0x50, symBinAddr: 0x4F908, symSize: 0x40 } - - { offsetInCU: 0xEF, offset: 0xE5C72, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg', symObjAddr: 0x134, symBinAddr: 0x4F9EC, symSize: 0x50 } - - { offsetInCU: 0x10E, offset: 0xE5C91, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF', symObjAddr: 0x20C, symBinAddr: 0x4FA3C, symSize: 0xC } - - { offsetInCU: 0x131, offset: 0xE5CB4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtFTo', symObjAddr: 0x218, symBinAddr: 0x4FA48, symSize: 0x100 } - - { offsetInCU: 0x163, offset: 0xE5CE6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctF', symObjAddr: 0x318, symBinAddr: 0x4FB48, symSize: 0x8 } - - { offsetInCU: 0x186, offset: 0xE5D09, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctFTo', symObjAddr: 0x320, symBinAddr: 0x4FB50, symSize: 0xA0 } - - { offsetInCU: 0x1B8, offset: 0xE5D3B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfc', symObjAddr: 0x3C0, symBinAddr: 0x4FBF0, symSize: 0x6C } - - { offsetInCU: 0x1F5, offset: 0xE5D78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfcTo', symObjAddr: 0x42C, symBinAddr: 0x4FC5C, symSize: 0x70 } - - { offsetInCU: 0x230, offset: 0xE5DB3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCfD', symObjAddr: 0x49C, symBinAddr: 0x4FCCC, symSize: 0x34 } - - { offsetInCU: 0x25D, offset: 0xE5DE0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtFTf4dnnn_n', symObjAddr: 0x4E0, symBinAddr: 0x4FD10, symSize: 0x2BC } - - { offsetInCU: 0x38A, offset: 0xE5F0D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctFTf4dndn_n', symObjAddr: 0x79C, symBinAddr: 0x4FFCC, symSize: 0x3F0 } - - { offsetInCU: 0x50B, offset: 0xE608E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6shared_WZ', symObjAddr: 0x0, symBinAddr: 0x4F8B8, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0xE60CF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvpACTk', symObjAddr: 0x90, symBinAddr: 0x4F948, symSize: 0xA4 } - - { offsetInCU: 0x583, offset: 0xE6106, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCfETo', symObjAddr: 0x4D0, symBinAddr: 0x4FD00, symSize: 0x10 } - - { offsetInCU: 0x66E, offset: 0xE61F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMa', symObjAddr: 0xB8C, symBinAddr: 0x503BC, symSize: 0x3C } - - { offsetInCU: 0x682, offset: 0xE6205, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMU', symObjAddr: 0xC20, symBinAddr: 0x50450, symSize: 0x8 } - - { offsetInCU: 0x696, offset: 0xE6219, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMr', symObjAddr: 0xC28, symBinAddr: 0x50458, symSize: 0x6C } - - { offsetInCU: 0x6AA, offset: 0xE622D, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyaABSHSCWl', symObjAddr: 0xD48, symBinAddr: 0x50524, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0xE646E, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorSo9CAPPluginCRbzrlE4load2onyAC17CAPBridgeProtocol_p_tF', symObjAddr: 0x0, symBinAddr: 0x5056C, symSize: 0x1A8 } - - { offsetInCU: 0x3F, offset: 0xE6486, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorSo9CAPPluginCRbzrlE4load2onyAC17CAPBridgeProtocol_p_tF', symObjAddr: 0x0, symBinAddr: 0x5056C, symSize: 0x1A8 } - - { offsetInCU: 0x8C, offset: 0xE64D3, size: 0x8, addend: 0x0, symName: '_$sSo19NSMutableDictionaryCMa', symObjAddr: 0x1A8, symBinAddr: 0x50714, symSize: 0x3C } - - { offsetInCU: 0x4B, offset: 0xE661F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17setServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x0, symBinAddr: 0x50750, symSize: 0x120 } - - { offsetInCU: 0xB8, offset: 0xE668C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17setServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x120, symBinAddr: 0x50870, symSize: 0x50 } - - { offsetInCU: 0xD4, offset: 0xE66A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17getServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x170, symBinAddr: 0x508C0, symSize: 0x1C4 } - - { offsetInCU: 0x1E9, offset: 0xE67BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17getServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x334, symBinAddr: 0x50A84, symSize: 0x50 } - - { offsetInCU: 0x205, offset: 0xE67D9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC21persistServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x384, symBinAddr: 0x50AD4, symSize: 0x148 } - - { offsetInCU: 0x272, offset: 0xE6846, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC21persistServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x4CC, symBinAddr: 0x50C1C, symSize: 0x50 } - - { offsetInCU: 0x28E, offset: 0xE6862, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x51C, symBinAddr: 0x50C6C, symSize: 0xB4 } - - { offsetInCU: 0x2AC, offset: 0xE6880, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x5D0, symBinAddr: 0x50D20, symSize: 0xB4 } - - { offsetInCU: 0x325, offset: 0xE68F9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x6A4, symBinAddr: 0x50DF4, symSize: 0xD8 } - - { offsetInCU: 0x37C, offset: 0xE6950, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfC', symObjAddr: 0x77C, symBinAddr: 0x50ECC, symSize: 0x20 } - - { offsetInCU: 0x39A, offset: 0xE696E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfc', symObjAddr: 0x79C, symBinAddr: 0x50EEC, symSize: 0x30 } - - { offsetInCU: 0x3D5, offset: 0xE69A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfcTo', symObjAddr: 0x7CC, symBinAddr: 0x50F1C, symSize: 0x3C } - - { offsetInCU: 0x410, offset: 0xE69E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCfD', symObjAddr: 0x808, symBinAddr: 0x50F58, symSize: 0x30 } - - { offsetInCU: 0x480, offset: 0xE6A54, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCMa', symObjAddr: 0x684, symBinAddr: 0x50DD4, symSize: 0x20 } -... diff --git a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/x86_64/Capacitor.yml b/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/x86_64/Capacitor.yml deleted file mode 100644 index 77268ad1c..000000000 --- a/ios/Frameworks/Capacitor.xcframework/ios-arm64_x86_64-simulator/dSYMs/Capacitor.framework.dSYM/Contents/Resources/Relocations/x86_64/Capacitor.yml +++ /dev/null @@ -1,1482 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/mark/Library/Developer/Xcode/DerivedData/Capacitor-cvqxffszbvmpzcdcdtewgtstoqol/Build/Intermediates.noindex/ArchiveIntermediates/Capacitor/InstallationBuildProductsLocation/Library/Frameworks/Capacitor.framework/Capacitor' -relocations: - - { offsetInCU: 0x34, offset: 0xB2B3A, size: 0x8, addend: 0x0, symName: _CapacitorVersionString, symObjAddr: 0x0, symBinAddr: 0x56990, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xB2B6F, size: 0x8, addend: 0x0, symName: _CapacitorVersionNumber, symObjAddr: 0x30, symBinAddr: 0x569C0, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0xB2BAC, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getString:defaultValue:]', symObjAddr: 0x0, symBinAddr: 0x1730, symSize: 0xD0 } - - { offsetInCU: 0xD9, offset: 0xB2C5E, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getString:defaultValue:]', symObjAddr: 0x0, symBinAddr: 0x1730, symSize: 0xD0 } - - { offsetInCU: 0x1D9, offset: 0xB2D5E, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getDate:defaultValue:]', symObjAddr: 0xD0, symBinAddr: 0x1800, symSize: 0x146 } - - { offsetInCU: 0x321, offset: 0xB2EA6, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getObject:defaultValue:]', symObjAddr: 0x216, symBinAddr: 0x1946, symSize: 0xD0 } - - { offsetInCU: 0x421, offset: 0xB2FA6, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getNumber:defaultValue:]', symObjAddr: 0x2E6, symBinAddr: 0x1A16, symSize: 0xD0 } - - { offsetInCU: 0x521, offset: 0xB30A6, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall(BridgedJSProtocol) getBool:defaultValue:]', symObjAddr: 0x3B6, symBinAddr: 0x1AE6, symSize: 0xA3 } - - { offsetInCU: 0x27, offset: 0xB33B2, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall initWithCallbackId:options:success:error:]', symObjAddr: 0x0, symBinAddr: 0x1B89, symSize: 0xB3 } - - { offsetInCU: 0x1E3, offset: 0xB356E, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall initWithCallbackId:options:success:error:]', symObjAddr: 0x0, symBinAddr: 0x1B89, symSize: 0xB3 } - - { offsetInCU: 0x33F, offset: 0xB36CA, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall isSaved]', symObjAddr: 0xB3, symBinAddr: 0x1C3C, symSize: 0x12 } - - { offsetInCU: 0x389, offset: 0xB3714, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setIsSaved:]', symObjAddr: 0xC5, symBinAddr: 0x1C4E, symSize: 0x12 } - - { offsetInCU: 0x3F1, offset: 0xB377C, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall save]', symObjAddr: 0xD7, symBinAddr: 0x1C60, symSize: 0x17 } - - { offsetInCU: 0x43D, offset: 0xB37C8, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall keepAlive]', symObjAddr: 0xEE, symBinAddr: 0x1C77, symSize: 0x9 } - - { offsetInCU: 0x472, offset: 0xB37FD, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setKeepAlive:]', symObjAddr: 0xF7, symBinAddr: 0x1C80, symSize: 0x9 } - - { offsetInCU: 0x4AF, offset: 0xB383A, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall callbackId]', symObjAddr: 0x100, symBinAddr: 0x1C89, symSize: 0xA } - - { offsetInCU: 0x4E4, offset: 0xB386F, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setCallbackId:]', symObjAddr: 0x10A, symBinAddr: 0x1C93, symSize: 0x11 } - - { offsetInCU: 0x523, offset: 0xB38AE, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall options]', symObjAddr: 0x11B, symBinAddr: 0x1CA4, symSize: 0xA } - - { offsetInCU: 0x558, offset: 0xB38E3, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setOptions:]', symObjAddr: 0x125, symBinAddr: 0x1CAE, symSize: 0x11 } - - { offsetInCU: 0x597, offset: 0xB3922, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall successHandler]', symObjAddr: 0x136, symBinAddr: 0x1CBF, symSize: 0xA } - - { offsetInCU: 0x5CC, offset: 0xB3957, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setSuccessHandler:]', symObjAddr: 0x140, symBinAddr: 0x1CC9, symSize: 0xF } - - { offsetInCU: 0x60B, offset: 0xB3996, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall errorHandler]', symObjAddr: 0x14F, symBinAddr: 0x1CD8, symSize: 0xA } - - { offsetInCU: 0x640, offset: 0xB39CB, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall setErrorHandler:]', symObjAddr: 0x159, symBinAddr: 0x1CE2, symSize: 0xF } - - { offsetInCU: 0x67F, offset: 0xB3A0A, size: 0x8, addend: 0x0, symName: '-[CAPPluginCall .cxx_destruct]', symObjAddr: 0x168, symBinAddr: 0x1CF1, symSize: 0x3E } - - { offsetInCU: 0x27, offset: 0xB3A7C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAsDefault]', symObjAddr: 0x0, symBinAddr: 0x1D2F, symSize: 0x17A } - - { offsetInCU: 0x41, offset: 0xB3A96, size: 0x8, addend: 0x0, symName: _CAPInstanceDescriptorDefaultScheme, symObjAddr: 0x7A8, symBinAddr: 0x68660, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0xB3AB6, size: 0x8, addend: 0x0, symName: _CAPInstanceDescriptorDefaultHostname, symObjAddr: 0x7B0, symBinAddr: 0x68668, symSize: 0x0 } - - { offsetInCU: 0x433, offset: 0xB3E88, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAsDefault]', symObjAddr: 0x0, symBinAddr: 0x1D2F, symSize: 0x17A } - - { offsetInCU: 0x559, offset: 0xB3FAE, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor initAtLocation:configuration:cordovaConfiguration:]', symObjAddr: 0x17A, symBinAddr: 0x1EA9, symSize: 0xC3 } - - { offsetInCU: 0x676, offset: 0xB40CB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor _setDefaultsWithAppLocation:]', symObjAddr: 0x23D, symBinAddr: 0x1F6C, symSize: 0x16E } - - { offsetInCU: 0x75E, offset: 0xB41B3, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appendedUserAgentString]', symObjAddr: 0x3AB, symBinAddr: 0x20DA, symSize: 0xA } - - { offsetInCU: 0x793, offset: 0xB41E8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppendedUserAgentString:]', symObjAddr: 0x3B5, symBinAddr: 0x20E4, symSize: 0xF } - - { offsetInCU: 0x7D2, offset: 0xB4227, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor overridenUserAgentString]', symObjAddr: 0x3C4, symBinAddr: 0x20F3, symSize: 0xA } - - { offsetInCU: 0x807, offset: 0xB425C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setOverridenUserAgentString:]', symObjAddr: 0x3CE, symBinAddr: 0x20FD, symSize: 0xF } - - { offsetInCU: 0x846, offset: 0xB429B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor backgroundColor]', symObjAddr: 0x3DD, symBinAddr: 0x210C, symSize: 0xA } - - { offsetInCU: 0x87B, offset: 0xB42D0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setBackgroundColor:]', symObjAddr: 0x3E7, symBinAddr: 0x2116, symSize: 0x11 } - - { offsetInCU: 0x8BA, offset: 0xB430F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor allowedNavigationHostnames]', symObjAddr: 0x3F8, symBinAddr: 0x2127, symSize: 0xA } - - { offsetInCU: 0x8EF, offset: 0xB4344, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAllowedNavigationHostnames:]', symObjAddr: 0x402, symBinAddr: 0x2131, symSize: 0xF } - - { offsetInCU: 0x92E, offset: 0xB4383, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor urlScheme]', symObjAddr: 0x411, symBinAddr: 0x2140, symSize: 0xA } - - { offsetInCU: 0x963, offset: 0xB43B8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setUrlScheme:]', symObjAddr: 0x41B, symBinAddr: 0x214A, symSize: 0xF } - - { offsetInCU: 0x9A2, offset: 0xB43F7, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor errorPath]', symObjAddr: 0x42A, symBinAddr: 0x2159, symSize: 0xA } - - { offsetInCU: 0x9D7, offset: 0xB442C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setErrorPath:]', symObjAddr: 0x434, symBinAddr: 0x2163, symSize: 0xF } - - { offsetInCU: 0xA16, offset: 0xB446B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor urlHostname]', symObjAddr: 0x443, symBinAddr: 0x2172, symSize: 0xA } - - { offsetInCU: 0xA4B, offset: 0xB44A0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setUrlHostname:]', symObjAddr: 0x44D, symBinAddr: 0x217C, symSize: 0xF } - - { offsetInCU: 0xA8A, offset: 0xB44DF, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor serverURL]', symObjAddr: 0x45C, symBinAddr: 0x218B, symSize: 0xA } - - { offsetInCU: 0xABF, offset: 0xB4514, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setServerURL:]', symObjAddr: 0x466, symBinAddr: 0x2195, symSize: 0xF } - - { offsetInCU: 0xAFE, offset: 0xB4553, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor pluginConfigurations]', symObjAddr: 0x475, symBinAddr: 0x21A4, symSize: 0xA } - - { offsetInCU: 0xB33, offset: 0xB4588, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setPluginConfigurations:]', symObjAddr: 0x47F, symBinAddr: 0x21AE, symSize: 0x11 } - - { offsetInCU: 0xB72, offset: 0xB45C7, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor loggingBehavior]', symObjAddr: 0x490, symBinAddr: 0x21BF, symSize: 0xA } - - { offsetInCU: 0xBA7, offset: 0xB45FC, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLoggingBehavior:]', symObjAddr: 0x49A, symBinAddr: 0x21C9, symSize: 0xA } - - { offsetInCU: 0xBE4, offset: 0xB4639, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor scrollingEnabled]', symObjAddr: 0x4A4, symBinAddr: 0x21D3, symSize: 0x9 } - - { offsetInCU: 0xC19, offset: 0xB466E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setScrollingEnabled:]', symObjAddr: 0x4AD, symBinAddr: 0x21DC, symSize: 0x9 } - - { offsetInCU: 0xC56, offset: 0xB46AB, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor zoomingEnabled]', symObjAddr: 0x4B6, symBinAddr: 0x21E5, symSize: 0x9 } - - { offsetInCU: 0xC8B, offset: 0xB46E0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setZoomingEnabled:]', symObjAddr: 0x4BF, symBinAddr: 0x21EE, symSize: 0x9 } - - { offsetInCU: 0xCC8, offset: 0xB471D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor allowLinkPreviews]', symObjAddr: 0x4C8, symBinAddr: 0x21F7, symSize: 0x9 } - - { offsetInCU: 0xCFD, offset: 0xB4752, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAllowLinkPreviews:]', symObjAddr: 0x4D1, symBinAddr: 0x2200, symSize: 0x9 } - - { offsetInCU: 0xD3A, offset: 0xB478F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor handleApplicationNotifications]', symObjAddr: 0x4DA, symBinAddr: 0x2209, symSize: 0x9 } - - { offsetInCU: 0xD6F, offset: 0xB47C4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setHandleApplicationNotifications:]', symObjAddr: 0x4E3, symBinAddr: 0x2212, symSize: 0x9 } - - { offsetInCU: 0xDAC, offset: 0xB4801, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor isWebDebuggable]', symObjAddr: 0x4EC, symBinAddr: 0x221B, symSize: 0x9 } - - { offsetInCU: 0xDE1, offset: 0xB4836, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setIsWebDebuggable:]', symObjAddr: 0x4F5, symBinAddr: 0x2224, symSize: 0x9 } - - { offsetInCU: 0xE1E, offset: 0xB4873, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor contentInsetAdjustmentBehavior]', symObjAddr: 0x4FE, symBinAddr: 0x222D, symSize: 0xA } - - { offsetInCU: 0xE53, offset: 0xB48A8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setContentInsetAdjustmentBehavior:]', symObjAddr: 0x508, symBinAddr: 0x2237, symSize: 0xA } - - { offsetInCU: 0xE90, offset: 0xB48E5, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appLocation]', symObjAddr: 0x512, symBinAddr: 0x2241, symSize: 0xA } - - { offsetInCU: 0xEC5, offset: 0xB491A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppLocation:]', symObjAddr: 0x51C, symBinAddr: 0x224B, symSize: 0xF } - - { offsetInCU: 0xF04, offset: 0xB4959, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor appStartPath]', symObjAddr: 0x52B, symBinAddr: 0x225A, symSize: 0xA } - - { offsetInCU: 0xF39, offset: 0xB498E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setAppStartPath:]', symObjAddr: 0x535, symBinAddr: 0x2264, symSize: 0xF } - - { offsetInCU: 0xF78, offset: 0xB49CD, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor limitsNavigationsToAppBoundDomains]', symObjAddr: 0x544, symBinAddr: 0x2273, symSize: 0x9 } - - { offsetInCU: 0xFAD, offset: 0xB4A02, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLimitsNavigationsToAppBoundDomains:]', symObjAddr: 0x54D, symBinAddr: 0x227C, symSize: 0x9 } - - { offsetInCU: 0xFEA, offset: 0xB4A3F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor preferredContentMode]', symObjAddr: 0x556, symBinAddr: 0x2285, symSize: 0xA } - - { offsetInCU: 0x101F, offset: 0xB4A74, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setPreferredContentMode:]', symObjAddr: 0x560, symBinAddr: 0x228F, symSize: 0xF } - - { offsetInCU: 0x105E, offset: 0xB4AB3, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor cordovaConfiguration]', symObjAddr: 0x56F, symBinAddr: 0x229E, symSize: 0xD } - - { offsetInCU: 0x1093, offset: 0xB4AE8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setCordovaConfiguration:]', symObjAddr: 0x57C, symBinAddr: 0x22AB, symSize: 0xF } - - { offsetInCU: 0x10D2, offset: 0xB4B27, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor warnings]', symObjAddr: 0x58B, symBinAddr: 0x22BA, symSize: 0xD } - - { offsetInCU: 0x1107, offset: 0xB4B5C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setWarnings:]', symObjAddr: 0x598, symBinAddr: 0x22C7, symSize: 0xD } - - { offsetInCU: 0x1144, offset: 0xB4B99, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor instanceType]', symObjAddr: 0x5A5, symBinAddr: 0x22D4, symSize: 0xD } - - { offsetInCU: 0x1179, offset: 0xB4BCE, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor legacyConfig]', symObjAddr: 0x5B2, symBinAddr: 0x22E1, symSize: 0xD } - - { offsetInCU: 0x11AE, offset: 0xB4C03, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor setLegacyConfig:]', symObjAddr: 0x5BF, symBinAddr: 0x22EE, symSize: 0x14 } - - { offsetInCU: 0x11ED, offset: 0xB4C42, size: 0x8, addend: 0x0, symName: '-[CAPInstanceDescriptor .cxx_destruct]', symObjAddr: 0x5D3, symBinAddr: 0x2302, symSize: 0xB2 } - - { offsetInCU: 0x27, offset: 0xB4CEB, size: 0x8, addend: 0x0, symName: '-[CAPPlugin initWithBridge:pluginId:pluginName:]', symObjAddr: 0x0, symBinAddr: 0x23B4, symSize: 0x137 } - - { offsetInCU: 0x1FE, offset: 0xB4EC2, size: 0x8, addend: 0x0, symName: '-[CAPPlugin initWithBridge:pluginId:pluginName:]', symObjAddr: 0x0, symBinAddr: 0x23B4, symSize: 0x137 } - - { offsetInCU: 0x3D4, offset: 0xB5098, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getId]', symObjAddr: 0x137, symBinAddr: 0x24EB, symSize: 0x12 } - - { offsetInCU: 0x41E, offset: 0xB50E2, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getBool:field:defaultValue:]', symObjAddr: 0x149, symBinAddr: 0x24FD, symSize: 0xB5 } - - { offsetInCU: 0x532, offset: 0xB51F6, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getString:field:defaultValue:]', symObjAddr: 0x1FE, symBinAddr: 0x25B2, symSize: 0x1B } - - { offsetInCU: 0x5B8, offset: 0xB527C, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getConfigValue:]', symObjAddr: 0x219, symBinAddr: 0x25CD, symSize: 0xC4 } - - { offsetInCU: 0x694, offset: 0xB5358, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getConfig]', symObjAddr: 0x2DD, symBinAddr: 0x2691, symSize: 0xA7 } - - { offsetInCU: 0x737, offset: 0xB53FB, size: 0x8, addend: 0x0, symName: '-[CAPPlugin load]', symObjAddr: 0x384, symBinAddr: 0x2738, symSize: 0x6 } - - { offsetInCU: 0x766, offset: 0xB542A, size: 0x8, addend: 0x0, symName: '-[CAPPlugin addEventListener:listener:]', symObjAddr: 0x38A, symBinAddr: 0x273E, symSize: 0x155 } - - { offsetInCU: 0x90F, offset: 0xB55D3, size: 0x8, addend: 0x0, symName: '-[CAPPlugin sendRetainedArgumentsForEvent:]', symObjAddr: 0x4DF, symBinAddr: 0x2893, symSize: 0x1E9 } - - { offsetInCU: 0xA7F, offset: 0xB5743, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeEventListener:listener:]', symObjAddr: 0x6C8, symBinAddr: 0x2A7C, symSize: 0xD6 } - - { offsetInCU: 0xBAE, offset: 0xB5872, size: 0x8, addend: 0x0, symName: '-[CAPPlugin notifyListeners:data:]', symObjAddr: 0x79E, symBinAddr: 0x2B52, symSize: 0x15 } - - { offsetInCU: 0xC26, offset: 0xB58EA, size: 0x8, addend: 0x0, symName: '-[CAPPlugin notifyListeners:data:retainUntilConsumed:]', symObjAddr: 0x7B3, symBinAddr: 0x2B67, symSize: 0x2B9 } - - { offsetInCU: 0xF29, offset: 0xB5BED, size: 0x8, addend: 0x0, symName: '-[CAPPlugin addListener:]', symObjAddr: 0xA6C, symBinAddr: 0x2E20, symSize: 0xAE } - - { offsetInCU: 0x101F, offset: 0xB5CE3, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeListener:]', symObjAddr: 0xB1A, symBinAddr: 0x2ECE, symSize: 0x157 } - - { offsetInCU: 0x11C5, offset: 0xB5E89, size: 0x8, addend: 0x0, symName: '-[CAPPlugin removeAllListeners:]', symObjAddr: 0xC71, symBinAddr: 0x3025, symSize: 0x73 } - - { offsetInCU: 0x1271, offset: 0xB5F35, size: 0x8, addend: 0x0, symName: '-[CAPPlugin getListeners:]', symObjAddr: 0xCE4, symBinAddr: 0x3098, symSize: 0x7A } - - { offsetInCU: 0x1319, offset: 0xB5FDD, size: 0x8, addend: 0x0, symName: '-[CAPPlugin hasListeners:]', symObjAddr: 0xD5E, symBinAddr: 0x3112, symSize: 0xA0 } - - { offsetInCU: 0x13E9, offset: 0xB60AD, size: 0x8, addend: 0x0, symName: '-[CAPPlugin checkPermissions:]', symObjAddr: 0xDFE, symBinAddr: 0x31B2, symSize: 0x15 } - - { offsetInCU: 0x143B, offset: 0xB60FF, size: 0x8, addend: 0x0, symName: '-[CAPPlugin requestPermissions:]', symObjAddr: 0xE13, symBinAddr: 0x31C7, symSize: 0x15 } - - { offsetInCU: 0x14E4, offset: 0xB61A8, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setCenteredPopover:]', symObjAddr: 0xE28, symBinAddr: 0x31DC, symSize: 0x28C } - - { offsetInCU: 0x17A4, offset: 0xB6468, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setCenteredPopover:size:]', symObjAddr: 0x10B4, symBinAddr: 0x3468, symSize: 0x2BD } - - { offsetInCU: 0x1A9E, offset: 0xB6762, size: 0x8, addend: 0x0, symName: '-[CAPPlugin supportsPopover]', symObjAddr: 0x1371, symBinAddr: 0x3725, symSize: 0x8 } - - { offsetInCU: 0x1AD1, offset: 0xB6795, size: 0x8, addend: 0x0, symName: '-[CAPPlugin shouldOverrideLoad:]', symObjAddr: 0x1379, symBinAddr: 0x372D, symSize: 0x8 } - - { offsetInCU: 0x1B10, offset: 0xB67D4, size: 0x8, addend: 0x0, symName: '-[CAPPlugin webView]', symObjAddr: 0x1381, symBinAddr: 0x3735, symSize: 0x16 } - - { offsetInCU: 0x1B47, offset: 0xB680B, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setWebView:]', symObjAddr: 0x1397, symBinAddr: 0x374B, symSize: 0x11 } - - { offsetInCU: 0x1B86, offset: 0xB684A, size: 0x8, addend: 0x0, symName: '-[CAPPlugin bridge]', symObjAddr: 0x13A8, symBinAddr: 0x375C, symSize: 0x16 } - - { offsetInCU: 0x1BBD, offset: 0xB6881, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setBridge:]', symObjAddr: 0x13BE, symBinAddr: 0x3772, symSize: 0x11 } - - { offsetInCU: 0x1BFC, offset: 0xB68C0, size: 0x8, addend: 0x0, symName: '-[CAPPlugin pluginId]', symObjAddr: 0x13CF, symBinAddr: 0x3783, symSize: 0xA } - - { offsetInCU: 0x1C31, offset: 0xB68F5, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setPluginId:]', symObjAddr: 0x13D9, symBinAddr: 0x378D, symSize: 0x11 } - - { offsetInCU: 0x1C70, offset: 0xB6934, size: 0x8, addend: 0x0, symName: '-[CAPPlugin pluginName]', symObjAddr: 0x13EA, symBinAddr: 0x379E, symSize: 0xA } - - { offsetInCU: 0x1CA5, offset: 0xB6969, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setPluginName:]', symObjAddr: 0x13F4, symBinAddr: 0x37A8, symSize: 0x11 } - - { offsetInCU: 0x1CE4, offset: 0xB69A8, size: 0x8, addend: 0x0, symName: '-[CAPPlugin eventListeners]', symObjAddr: 0x1405, symBinAddr: 0x37B9, symSize: 0xA } - - { offsetInCU: 0x1D19, offset: 0xB69DD, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setEventListeners:]', symObjAddr: 0x140F, symBinAddr: 0x37C3, symSize: 0x11 } - - { offsetInCU: 0x1D58, offset: 0xB6A1C, size: 0x8, addend: 0x0, symName: '-[CAPPlugin retainedEventArguments]', symObjAddr: 0x1420, symBinAddr: 0x37D4, symSize: 0xA } - - { offsetInCU: 0x1D8D, offset: 0xB6A51, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setRetainedEventArguments:]', symObjAddr: 0x142A, symBinAddr: 0x37DE, symSize: 0x11 } - - { offsetInCU: 0x1DCC, offset: 0xB6A90, size: 0x8, addend: 0x0, symName: '-[CAPPlugin shouldStringifyDatesInCalls]', symObjAddr: 0x143B, symBinAddr: 0x37EF, symSize: 0x9 } - - { offsetInCU: 0x1E01, offset: 0xB6AC5, size: 0x8, addend: 0x0, symName: '-[CAPPlugin setShouldStringifyDatesInCalls:]', symObjAddr: 0x1444, symBinAddr: 0x37F8, symSize: 0x9 } - - { offsetInCU: 0x1E3E, offset: 0xB6B02, size: 0x8, addend: 0x0, symName: '-[CAPPlugin .cxx_destruct]', symObjAddr: 0x144D, symBinAddr: 0x3801, symSize: 0x50 } - - { offsetInCU: 0x27, offset: 0xB6D71, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument initWithName:nullability:type:]', symObjAddr: 0x0, symBinAddr: 0x3851, symSize: 0x3D } - - { offsetInCU: 0x3B0, offset: 0xB70FA, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument initWithName:nullability:type:]', symObjAddr: 0x0, symBinAddr: 0x3851, symSize: 0x3D } - - { offsetInCU: 0x44B, offset: 0xB7195, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument name]', symObjAddr: 0x3D, symBinAddr: 0x388E, symSize: 0xA } - - { offsetInCU: 0x480, offset: 0xB71CA, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument setName:]', symObjAddr: 0x47, symBinAddr: 0x3898, symSize: 0xF } - - { offsetInCU: 0x4BF, offset: 0xB7209, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument nullability]', symObjAddr: 0x56, symBinAddr: 0x38A7, symSize: 0x9 } - - { offsetInCU: 0x4F4, offset: 0xB723E, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument setNullability:]', symObjAddr: 0x5F, symBinAddr: 0x38B0, symSize: 0x9 } - - { offsetInCU: 0x531, offset: 0xB727B, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethodArgument .cxx_destruct]', symObjAddr: 0x68, symBinAddr: 0x38B9, symSize: 0x10 } - - { offsetInCU: 0x564, offset: 0xB72AE, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod initWithName:returnType:]', symObjAddr: 0x78, symBinAddr: 0x38C9, symSize: 0xBB } - - { offsetInCU: 0x69F, offset: 0xB73E9, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod selector]', symObjAddr: 0x133, symBinAddr: 0x3984, symSize: 0xA } - - { offsetInCU: 0x6D4, offset: 0xB741E, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setSelector:]', symObjAddr: 0x13D, symBinAddr: 0x398E, symSize: 0xA } - - { offsetInCU: 0x711, offset: 0xB745B, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod name]', symObjAddr: 0x147, symBinAddr: 0x3998, symSize: 0xA } - - { offsetInCU: 0x746, offset: 0xB7490, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setName:]', symObjAddr: 0x151, symBinAddr: 0x39A2, symSize: 0x11 } - - { offsetInCU: 0x785, offset: 0xB74CF, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod returnType]', symObjAddr: 0x162, symBinAddr: 0x39B3, symSize: 0xA } - - { offsetInCU: 0x7BA, offset: 0xB7504, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod setReturnType:]', symObjAddr: 0x16C, symBinAddr: 0x39BD, symSize: 0x11 } - - { offsetInCU: 0x7F9, offset: 0xB7543, size: 0x8, addend: 0x0, symName: '-[CAPPluginMethod .cxx_destruct]', symObjAddr: 0x17D, symBinAddr: 0x39CE, symSize: 0x54 } - - { offsetInCU: 0x27, offset: 0xB75B1, size: 0x8, addend: 0x0, symName: '+[WKWebView(CapacitorAutoFocus) load]', symObjAddr: 0x0, symBinAddr: 0x3A22, symSize: 0x12 } - - { offsetInCU: 0xC4, offset: 0xB764E, size: 0x8, addend: 0x0, symName: '+[WKWebView(CapacitorAutoFocus) load]', symObjAddr: 0x0, symBinAddr: 0x3A22, symSize: 0x12 } - - { offsetInCU: 0x27, offset: 0xB76E6, size: 0x8, addend: 0x0, symName: '+[UIStatusBarManager(CAPHandleTapAction) load]', symObjAddr: 0x0, symBinAddr: 0x3A34, symSize: 0x58 } - - { offsetInCU: 0x35, offset: 0xB76F4, size: 0x8, addend: 0x0, symName: '+[UIStatusBarManager(CAPHandleTapAction) load]', symObjAddr: 0x0, symBinAddr: 0x3A34, symSize: 0x58 } - - { offsetInCU: 0x5B, offset: 0xB771A, size: 0x8, addend: 0x0, symName: _load.onceToken, symObjAddr: 0x2D40, symBinAddr: 0x77C90, symSize: 0x0 } - - { offsetInCU: 0x198, offset: 0xB7857, size: 0x8, addend: 0x0, symName: '___46+[UIStatusBarManager(CAPHandleTapAction) load]_block_invoke', symObjAddr: 0x58, symBinAddr: 0x3A8C, symSize: 0xC3 } - - { offsetInCU: 0x41D, offset: 0xB7ADC, size: 0x8, addend: 0x0, symName: '-[UIStatusBarManager(CAPHandleTapAction) nofity_handleTapAction:]', symObjAddr: 0x11B, symBinAddr: 0x3B4F, symSize: 0xD6 } - - { offsetInCU: 0x27, offset: 0xB7CB3, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x0, symBinAddr: 0x3C25, symSize: 0x177 } - - { offsetInCU: 0x5F, offset: 0xB7CEB, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x0, symBinAddr: 0x3C25, symSize: 0x177 } - - { offsetInCU: 0x1EA, offset: 0xB7E76, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x177, symBinAddr: 0x3D9C, symSize: 0xD } - - { offsetInCU: 0x21D, offset: 0xB7EA9, size: 0x8, addend: 0x0, symName: '-[CAPCookiesPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x184, symBinAddr: 0x3DA9, symSize: 0xD } - - { offsetInCU: 0x250, offset: 0xB7EDC, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x191, symBinAddr: 0x3DB6, symSize: 0x1B5 } - - { offsetInCU: 0x41E, offset: 0xB80AA, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x346, symBinAddr: 0x3F6B, symSize: 0xD } - - { offsetInCU: 0x451, offset: 0xB80DD, size: 0x8, addend: 0x0, symName: '-[CAPHttpPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x353, symBinAddr: 0x3F78, symSize: 0xD } - - { offsetInCU: 0x484, offset: 0xB8110, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x360, symBinAddr: 0x3F85, symSize: 0x75 } - - { offsetInCU: 0x4FB, offset: 0xB8187, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) identifier]', symObjAddr: 0x3D5, symBinAddr: 0x3FFA, symSize: 0xD } - - { offsetInCU: 0x52E, offset: 0xB81BA, size: 0x8, addend: 0x0, symName: '-[CAPConsolePlugin(CAPPluginCategory) jsName]', symObjAddr: 0x3E2, symBinAddr: 0x4007, symSize: 0xD } - - { offsetInCU: 0x561, offset: 0xB81ED, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) pluginMethods]', symObjAddr: 0x3EF, symBinAddr: 0x4014, symSize: 0xFF } - - { offsetInCU: 0x655, offset: 0xB82E1, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) identifier]', symObjAddr: 0x4EE, symBinAddr: 0x4113, symSize: 0xD } - - { offsetInCU: 0x688, offset: 0xB8314, size: 0x8, addend: 0x0, symName: '-[CAPWebViewPlugin(CAPPluginCategory) jsName]', symObjAddr: 0x4FB, symBinAddr: 0x4120, symSize: 0xD } - - { offsetInCU: 0x27, offset: 0xB83F8, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithDescriptor:isDebug:]', symObjAddr: 0x0, symBinAddr: 0x412D, symSize: 0x3CD } - - { offsetInCU: 0x389, offset: 0xB875A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithDescriptor:isDebug:]', symObjAddr: 0x0, symBinAddr: 0x412D, symSize: 0x3CD } - - { offsetInCU: 0x6A9, offset: 0xB8A7A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration initWithConfiguration:andLocation:]', symObjAddr: 0x3CD, symBinAddr: 0x44FA, symSize: 0x325 } - - { offsetInCU: 0xA01, offset: 0xB8DD2, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration updatingAppLocation:]', symObjAddr: 0x6F2, symBinAddr: 0x481F, symSize: 0x5C } - - { offsetInCU: 0xA8C, offset: 0xB8E5D, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appendedUserAgentString]', symObjAddr: 0x74E, symBinAddr: 0x487B, symSize: 0xA } - - { offsetInCU: 0xAC1, offset: 0xB8E92, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration overridenUserAgentString]', symObjAddr: 0x758, symBinAddr: 0x4885, symSize: 0xA } - - { offsetInCU: 0xAF6, offset: 0xB8EC7, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration backgroundColor]', symObjAddr: 0x762, symBinAddr: 0x488F, symSize: 0xA } - - { offsetInCU: 0xB2B, offset: 0xB8EFC, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration allowedNavigationHostnames]', symObjAddr: 0x76C, symBinAddr: 0x4899, symSize: 0xA } - - { offsetInCU: 0xB60, offset: 0xB8F31, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration localURL]', symObjAddr: 0x776, symBinAddr: 0x48A3, symSize: 0xA } - - { offsetInCU: 0xB95, offset: 0xB8F66, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration serverURL]', symObjAddr: 0x780, symBinAddr: 0x48AD, symSize: 0xA } - - { offsetInCU: 0xBCA, offset: 0xB8F9B, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration errorPath]', symObjAddr: 0x78A, symBinAddr: 0x48B7, symSize: 0xA } - - { offsetInCU: 0xBFF, offset: 0xB8FD0, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration pluginConfigurations]', symObjAddr: 0x794, symBinAddr: 0x48C1, symSize: 0xA } - - { offsetInCU: 0xC34, offset: 0xB9005, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration loggingEnabled]', symObjAddr: 0x79E, symBinAddr: 0x48CB, symSize: 0x9 } - - { offsetInCU: 0xC69, offset: 0xB903A, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration scrollingEnabled]', symObjAddr: 0x7A7, symBinAddr: 0x48D4, symSize: 0x9 } - - { offsetInCU: 0xC9E, offset: 0xB906F, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration zoomingEnabled]', symObjAddr: 0x7B0, symBinAddr: 0x48DD, symSize: 0x9 } - - { offsetInCU: 0xCD3, offset: 0xB90A4, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration allowLinkPreviews]', symObjAddr: 0x7B9, symBinAddr: 0x48E6, symSize: 0x9 } - - { offsetInCU: 0xD08, offset: 0xB90D9, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration handleApplicationNotifications]', symObjAddr: 0x7C2, symBinAddr: 0x48EF, symSize: 0x9 } - - { offsetInCU: 0xD3D, offset: 0xB910E, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration isWebDebuggable]', symObjAddr: 0x7CB, symBinAddr: 0x48F8, symSize: 0x9 } - - { offsetInCU: 0xD72, offset: 0xB9143, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration cordovaDeployDisabled]', symObjAddr: 0x7D4, symBinAddr: 0x4901, symSize: 0x9 } - - { offsetInCU: 0xDA7, offset: 0xB9178, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration contentInsetAdjustmentBehavior]', symObjAddr: 0x7DD, symBinAddr: 0x490A, symSize: 0xA } - - { offsetInCU: 0xDDC, offset: 0xB91AD, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appLocation]', symObjAddr: 0x7E7, symBinAddr: 0x4914, symSize: 0xA } - - { offsetInCU: 0xE11, offset: 0xB91E2, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration appStartPath]', symObjAddr: 0x7F1, symBinAddr: 0x491E, symSize: 0xA } - - { offsetInCU: 0xE46, offset: 0xB9217, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration limitsNavigationsToAppBoundDomains]', symObjAddr: 0x7FB, symBinAddr: 0x4928, symSize: 0x9 } - - { offsetInCU: 0xE7B, offset: 0xB924C, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration preferredContentMode]', symObjAddr: 0x804, symBinAddr: 0x4931, symSize: 0xA } - - { offsetInCU: 0xEB0, offset: 0xB9281, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration legacyConfig]', symObjAddr: 0x80E, symBinAddr: 0x493B, symSize: 0xA } - - { offsetInCU: 0xEE5, offset: 0xB92B6, size: 0x8, addend: 0x0, symName: '-[CAPInstanceConfiguration .cxx_destruct]', symObjAddr: 0x818, symBinAddr: 0x4945, symSize: 0x96 } - - { offsetInCU: 0x126, offset: 0xB95D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC4loadyyF', symObjAddr: 0x0, symBinAddr: 0x49E0, symSize: 0x90 } - - { offsetInCU: 0x1B5, offset: 0xB9667, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC4loadyyFTo', symObjAddr: 0x90, symBinAddr: 0x4A70, symSize: 0x30 } - - { offsetInCU: 0x1EF, offset: 0xB96A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC10getCookiesyySo13CAPPluginCallCF', symObjAddr: 0xC0, symBinAddr: 0x4AA0, symSize: 0x1E0 } - - { offsetInCU: 0x2A4, offset: 0xB9756, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC10getCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0x2A0, symBinAddr: 0x4C80, symSize: 0x50 } - - { offsetInCU: 0x2C0, offset: 0xB9772, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC9setCookieyySo13CAPPluginCallCF', symObjAddr: 0x2F0, symBinAddr: 0x4CD0, symSize: 0x410 } - - { offsetInCU: 0x4AC, offset: 0xB995E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC9setCookieyySo13CAPPluginCallCFTo', symObjAddr: 0x700, symBinAddr: 0x50E0, symSize: 0x50 } - - { offsetInCU: 0x4C8, offset: 0xB997A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12deleteCookieyySo13CAPPluginCallCF', symObjAddr: 0x750, symBinAddr: 0x5130, symSize: 0x240 } - - { offsetInCU: 0x5B4, offset: 0xB9A66, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12deleteCookieyySo13CAPPluginCallCFTo', symObjAddr: 0x990, symBinAddr: 0x5370, symSize: 0x50 } - - { offsetInCU: 0x5D0, offset: 0xB9A82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12clearCookiesyySo13CAPPluginCallCF', symObjAddr: 0x9E0, symBinAddr: 0x53C0, symSize: 0x180 } - - { offsetInCU: 0x6BA, offset: 0xB9B6C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC12clearCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0xB60, symBinAddr: 0x5540, symSize: 0x50 } - - { offsetInCU: 0x700, offset: 0xB9BB2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC15clearAllCookiesyySo13CAPPluginCallCFTo', symObjAddr: 0xBB0, symBinAddr: 0x5590, symSize: 0x70 } - - { offsetInCU: 0x787, offset: 0xB9C39, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0xC20, symBinAddr: 0x5600, symSize: 0xB0 } - - { offsetInCU: 0x7A5, offset: 0xB9C57, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0xCD0, symBinAddr: 0x56B0, symSize: 0xC0 } - - { offsetInCU: 0x81E, offset: 0xB9CD0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0xDB0, symBinAddr: 0x5790, symSize: 0xE0 } - - { offsetInCU: 0x86D, offset: 0xB9D1F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfC', symObjAddr: 0xE90, symBinAddr: 0x5870, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0xB9D3D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfc', symObjAddr: 0xEB0, symBinAddr: 0x5890, symSize: 0x40 } - - { offsetInCU: 0x8C6, offset: 0xB9D78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCACycfcTo', symObjAddr: 0xEF0, symBinAddr: 0x58D0, symSize: 0x40 } - - { offsetInCU: 0x901, offset: 0xB9DB3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCfD', symObjAddr: 0xF30, symBinAddr: 0x5910, symSize: 0x30 } - - { offsetInCU: 0x974, offset: 0xB9E26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCMa', symObjAddr: 0xD90, symBinAddr: 0x5770, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0xB9E46, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPCookiesPluginCfETo', symObjAddr: 0xF60, symBinAddr: 0x5940, symSize: 0x20 } - - { offsetInCU: 0x9C3, offset: 0xB9E75, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1650, symBinAddr: 0x5F70, symSize: 0x20 } - - { offsetInCU: 0x9D7, offset: 0xB9E89, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1670, symBinAddr: 0x5F90, symSize: 0x20 } - - { offsetInCU: 0x9EB, offset: 0xB9E9D, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaSHSCSQWb', symObjAddr: 0x16C0, symBinAddr: 0x5FE0, symSize: 0x20 } - - { offsetInCU: 0xA0A, offset: 0xB9EBC, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x19F0, symBinAddr: 0x6310, symSize: 0x40 } - - { offsetInCU: 0xA1E, offset: 0xB9ED0, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOc', symObjAddr: 0x1A30, symBinAddr: 0x6350, symSize: 0x40 } - - { offsetInCU: 0xA32, offset: 0xB9EE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOh', symObjAddr: 0x1A70, symBinAddr: 0x6390, symSize: 0x30 } - - { offsetInCU: 0xA46, offset: 0xB9EF8, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x1AA0, symBinAddr: 0x63C0, symSize: 0x30 } - - { offsetInCU: 0xA5A, offset: 0xB9F0C, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1B50, symBinAddr: 0x6470, symSize: 0x20 } - - { offsetInCU: 0xA6E, offset: 0xB9F20, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1B70, symBinAddr: 0x6490, symSize: 0x20 } - - { offsetInCU: 0xA82, offset: 0xB9F34, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSQWb', symObjAddr: 0x1B90, symBinAddr: 0x64B0, symSize: 0x20 } - - { offsetInCU: 0xA96, offset: 0xB9F48, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation26_ObjectiveCBridgeableErrorSCs0F0PWb', symObjAddr: 0x1BB0, symBinAddr: 0x64D0, symSize: 0x20 } - - { offsetInCU: 0xAAA, offset: 0xB9F5C, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCs5ErrorPWb', symObjAddr: 0x1BD0, symBinAddr: 0x64F0, symSize: 0x20 } - - { offsetInCU: 0xABE, offset: 0xB9F70, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0x1BF0, symBinAddr: 0x6510, symSize: 0x20 } - - { offsetInCU: 0xAD2, offset: 0xB9F84, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0x1C10, symBinAddr: 0x6530, symSize: 0x20 } - - { offsetInCU: 0xAE6, offset: 0xB9F98, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyaSHSCSQWb', symObjAddr: 0x1C30, symBinAddr: 0x6550, symSize: 0x20 } - - { offsetInCU: 0xAFA, offset: 0xB9FAC, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomF0PWb', symObjAddr: 0x1C50, symBinAddr: 0x6570, symSize: 0x20 } - - { offsetInCU: 0xB0E, offset: 0xB9FC0, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAC26_ObjectiveCBridgeableErrorPWb', symObjAddr: 0x1C70, symBinAddr: 0x6590, symSize: 0x20 } - - { offsetInCU: 0xB22, offset: 0xB9FD4, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCSHWb', symObjAddr: 0x1C90, symBinAddr: 0x65B0, symSize: 0x20 } - - { offsetInCU: 0xB36, offset: 0xB9FE8, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_AC06_ErrorB8ProtocolPWT', symObjAddr: 0x1CB0, symBinAddr: 0x65D0, symSize: 0x20 } - - { offsetInCU: 0xB4A, offset: 0xB9FFC, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_SYWT', symObjAddr: 0x1D20, symBinAddr: 0x6640, symSize: 0x20 } - - { offsetInCU: 0xB5E, offset: 0xBA010, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSC0B0AcDP_8RawValueSYs17FixedWidthIntegerPWT', symObjAddr: 0x1D40, symBinAddr: 0x6660, symSize: 0x10 } - - { offsetInCU: 0xB72, offset: 0xBA024, size: 0x8, addend: 0x0, symName: '_$sS2is17FixedWidthIntegersWl', symObjAddr: 0x1D50, symBinAddr: 0x6670, symSize: 0x30 } - - { offsetInCU: 0xB86, offset: 0xBA038, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeV10Foundation06_ErrorB8ProtocolSCSQWb', symObjAddr: 0x1D80, symBinAddr: 0x66A0, symSize: 0x20 } - - { offsetInCU: 0xB9A, offset: 0xBA04C, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeV10Foundation06_ErrorB8ProtocolSC01_D4TypeAcDP_AC21_BridgedStoredNSErrorPWT', symObjAddr: 0x1DA0, symBinAddr: 0x66C0, symSize: 0x20 } - - { offsetInCU: 0xBAE, offset: 0xBA060, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyaSHSCSQWb', symObjAddr: 0x1DC0, symBinAddr: 0x66E0, symSize: 0x20 } - - { offsetInCU: 0xC34, offset: 0xBA0E6, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromF1C_6resulty01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x1030, symBinAddr: 0x5A00, symSize: 0x10 } - - { offsetInCU: 0xC7A, offset: 0xBA12C, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromF1C_6resultSb01_F5CTypeQz_xSgztFZTW', symObjAddr: 0x1040, symBinAddr: 0x5A10, symSize: 0x10 } - - { offsetInCU: 0xCBA, offset: 0xBA16C, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromE1C_6resulty01_E5CTypeQz_xSgztFZTW', symObjAddr: 0x10C0, symBinAddr: 0x5A90, symSize: 0x10 } - - { offsetInCU: 0xCFA, offset: 0xBA1AC, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromE1C_6resultSb01_E5CTypeQz_xSgztFZTW', symObjAddr: 0x10D0, symBinAddr: 0x5AA0, symSize: 0x10 } - - { offsetInCU: 0xD3A, offset: 0xBA1EC, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromC1C_6resulty01_C5CTypeQz_xSgztFZTW', symObjAddr: 0x1140, symBinAddr: 0x5AD0, symSize: 0x10 } - - { offsetInCU: 0xD7A, offset: 0xBA22C, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromC1C_6resultSb01_C5CTypeQz_xSgztFZTW', symObjAddr: 0x1150, symBinAddr: 0x5AE0, symSize: 0x10 } - - { offsetInCU: 0xDC6, offset: 0xBA278, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14C0, symBinAddr: 0x5DE0, symSize: 0x50 } - - { offsetInCU: 0xDF7, offset: 0xBA2A9, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toghI0s0hI0VSgyFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F00, symSize: 0x70 } - - { offsetInCU: 0xE13, offset: 0xBA2C5, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP9_userInfoyXlSgvgTW', symObjAddr: 0x1760, symBinAddr: 0x6080, symSize: 0x10 } - - { offsetInCU: 0xE3E, offset: 0xBA2F0, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x1800, symBinAddr: 0x6120, symSize: 0x10 } - - { offsetInCU: 0xE84, offset: 0xBA336, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyas35_HasCustomAnyHashableRepresentationSCsACP03_tofgH0s0gH0VSgyFTW', symObjAddr: 0x1810, symBinAddr: 0x6130, symSize: 0x70 } - - { offsetInCU: 0xEA0, offset: 0xBA352, size: 0x8, addend: 0x0, symName: '_$sSo16NSURLResourceKeyas35_HasCustomAnyHashableRepresentationSCsACP03_todeF0s0eF0VSgyFTW', symObjAddr: 0x1900, symBinAddr: 0x6220, symSize: 0x70 } - - { offsetInCU: 0xF41, offset: 0xBA3F3, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP05errorB0SivgTW', symObjAddr: 0x1360, symBinAddr: 0x5C80, symSize: 0x40 } - - { offsetInCU: 0xF5D, offset: 0xBA40F, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP13errorUserInfoSDySSypGvgTW', symObjAddr: 0x13A0, symBinAddr: 0x5CC0, symSize: 0x40 } - - { offsetInCU: 0xF79, offset: 0xBA42B, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation26_ObjectiveCBridgeableErrorSCAcDP15_bridgedNSErrorxSgSo0H0Ch_tcfCTW', symObjAddr: 0x13E0, symBinAddr: 0x5D00, symSize: 0x60 } - - { offsetInCU: 0xFA4, offset: 0xBA456, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH9hashValueSivgTW', symObjAddr: 0x1440, symBinAddr: 0x5D60, symSize: 0x40 } - - { offsetInCU: 0xFD5, offset: 0xBA487, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1480, symBinAddr: 0x5DA0, symSize: 0x40 } - - { offsetInCU: 0xFF1, offset: 0xBA4A3, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP7_domainSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x6000, symSize: 0x40 } - - { offsetInCU: 0x100D, offset: 0xBA4BF, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP5_codeSivgTW', symObjAddr: 0x1720, symBinAddr: 0x6040, symSize: 0x40 } - - { offsetInCU: 0x1029, offset: 0xBA4DB, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVs5ErrorSCsACP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x1770, symBinAddr: 0x6090, symSize: 0x40 } - - { offsetInCU: 0x1045, offset: 0xBA4F7, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x17B0, symBinAddr: 0x60D0, symSize: 0x50 } - - { offsetInCU: 0x110D, offset: 0xBA5BF, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorSo0F0CvgTW', symObjAddr: 0x10A0, symBinAddr: 0x5A70, symSize: 0x10 } - - { offsetInCU: 0x113E, offset: 0xBA5F0, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorxSo0F0C_tcfCTW', symObjAddr: 0x10B0, symBinAddr: 0x5A80, symSize: 0x10 } - - { offsetInCU: 0x1169, offset: 0xBA61B, size: 0x8, addend: 0x0, symName: '_$sSC11WKErrorCodeLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW', symObjAddr: 0x1340, symBinAddr: 0x5C60, symSize: 0x20 } - - { offsetInCU: 0x11AD, offset: 0xBA65F, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5E30, symSize: 0x10 } - - { offsetInCU: 0x11C9, offset: 0xBA67B, size: 0x8, addend: 0x0, symName: '_$sSo11WKErrorCodeVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x1520, symBinAddr: 0x5E40, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0xBA767, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVACycfC', symObjAddr: 0x0, symBinAddr: 0x6800, symSize: 0x20 } - - { offsetInCU: 0x7A, offset: 0xBA796, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvg', symObjAddr: 0x20, symBinAddr: 0x6820, symSize: 0x30 } - - { offsetInCU: 0x8E, offset: 0xBA7AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvs', symObjAddr: 0x50, symBinAddr: 0x6850, symSize: 0x30 } - - { offsetInCU: 0xB6, offset: 0xBA7D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvM', symObjAddr: 0x80, symBinAddr: 0x6880, symSize: 0x10 } - - { offsetInCU: 0xD4, offset: 0xBA7F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV8basePathSSvM.resume.0', symObjAddr: 0x90, symBinAddr: 0x6890, symSize: 0x10 } - - { offsetInCU: 0xFF, offset: 0xBA81B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterV5route3forS2S_tF', symObjAddr: 0xA0, symBinAddr: 0x68A0, symSize: 0x120 } - - { offsetInCU: 0x184, offset: 0xBA8A0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP5route3forS2S_tFTW', symObjAddr: 0x1C0, symBinAddr: 0x69C0, symSize: 0x10 } - - { offsetInCU: 0x1B1, offset: 0xBA8CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvgTW', symObjAddr: 0x1D0, symBinAddr: 0x69D0, symSize: 0x30 } - - { offsetInCU: 0x20D, offset: 0xBA929, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvsTW', symObjAddr: 0x200, symBinAddr: 0x6A00, symSize: 0x30 } - - { offsetInCU: 0x24B, offset: 0xBA967, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvMTW', symObjAddr: 0x230, symBinAddr: 0x6A30, symSize: 0x10 } - - { offsetInCU: 0x267, offset: 0xBA983, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVAA0B0A2aDP8basePathSSvMTW.resume.0', symObjAddr: 0x240, symBinAddr: 0x6A40, symSize: 0x10 } - - { offsetInCU: 0x284, offset: 0xBA9A0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwCP', symObjAddr: 0x290, symBinAddr: 0x6A90, symSize: 0x30 } - - { offsetInCU: 0x298, offset: 0xBA9B4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwxx', symObjAddr: 0x2C0, symBinAddr: 0x6AC0, symSize: 0x10 } - - { offsetInCU: 0x2AC, offset: 0xBA9C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwcp', symObjAddr: 0x2D0, symBinAddr: 0x6AD0, symSize: 0x30 } - - { offsetInCU: 0x2C0, offset: 0xBA9DC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwca', symObjAddr: 0x300, symBinAddr: 0x6B00, symSize: 0x40 } - - { offsetInCU: 0x2D4, offset: 0xBA9F0, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x340, symBinAddr: 0x6B40, symSize: 0x10 } - - { offsetInCU: 0x2E8, offset: 0xBAA04, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwta', symObjAddr: 0x350, symBinAddr: 0x6B50, symSize: 0x30 } - - { offsetInCU: 0x2FC, offset: 0xBAA18, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwet', symObjAddr: 0x380, symBinAddr: 0x6B80, symSize: 0x40 } - - { offsetInCU: 0x310, offset: 0xBAA2C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVwst', symObjAddr: 0x3C0, symBinAddr: 0x6BC0, symSize: 0x40 } - - { offsetInCU: 0x324, offset: 0xBAA40, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6RouterVMa', symObjAddr: 0x400, symBinAddr: 0x6C00, symSize: 0xA } - - { offsetInCU: 0x93, offset: 0xBABF0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvg', symObjAddr: 0xF0, symBinAddr: 0x6D00, symSize: 0x50 } - - { offsetInCU: 0xB2, offset: 0xBAC0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvs', symObjAddr: 0x140, symBinAddr: 0x6D50, symSize: 0x70 } - - { offsetInCU: 0xDB, offset: 0xBAC38, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvM', symObjAddr: 0x1B0, symBinAddr: 0x6DC0, symSize: 0x40 } - - { offsetInCU: 0x124, offset: 0xBAC81, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvg', symObjAddr: 0x250, symBinAddr: 0x6E60, symSize: 0x40 } - - { offsetInCU: 0x141, offset: 0xBAC9E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvs', symObjAddr: 0x290, symBinAddr: 0x6EA0, symSize: 0x50 } - - { offsetInCU: 0x168, offset: 0xBACC5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM', symObjAddr: 0x2E0, symBinAddr: 0x6EF0, symSize: 0x40 } - - { offsetInCU: 0x187, offset: 0xBACE4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvM.resume.0', symObjAddr: 0x320, symBinAddr: 0x6F30, symSize: 0x10 } - - { offsetInCU: 0x1C1, offset: 0xBAD1E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfC', symObjAddr: 0x370, symBinAddr: 0x6F80, symSize: 0x50 } - - { offsetInCU: 0x1F5, offset: 0xBAD52, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfc', symObjAddr: 0x3C0, symBinAddr: 0x6FD0, symSize: 0x30 } - - { offsetInCU: 0x209, offset: 0xBAD66, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC10DataAsJsony10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x3F0, symBinAddr: 0x7000, symSize: 0x180 } - - { offsetInCU: 0x22E, offset: 0xBAD8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x570, symBinAddr: 0x7180, symSize: 0x2F0 } - - { offsetInCU: 0x30E, offset: 0xBAE6B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7JSValue_pKFySSXEfU_', symObjAddr: 0x860, symBinAddr: 0x7470, symSize: 0x2D0 } - - { offsetInCU: 0x4CC, offset: 0xBB029, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKF', symObjAddr: 0xD10, symBinAddr: 0x7920, symSize: 0x3B0 } - - { offsetInCU: 0x727, offset: 0xBB284, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKFySS_SStXEfU0_', symObjAddr: 0x10C0, symBinAddr: 0x7CD0, symSize: 0x270 } - - { offsetInCU: 0x923, offset: 0xBB480, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC12DataAsStringy10Foundation0E0VAA7JSValue_pKF', symObjAddr: 0x1330, symBinAddr: 0x7F40, symSize: 0xB0 } - - { offsetInCU: 0x97B, offset: 0xBB4D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSF', symObjAddr: 0x13E0, symBinAddr: 0x7FF0, symSize: 0x120 } - - { offsetInCU: 0xA41, offset: 0xBB59E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getc12DataFromFormE0y10Foundation0E0VSgAA7JSValue_pKF', symObjAddr: 0x1500, symBinAddr: 0x8110, symSize: 0x1100 } - - { offsetInCU: 0x13F6, offset: 0xBBF53, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getC4Datay10Foundation0E0VSgAA7JSValue_p_S2SSgtKF', symObjAddr: 0x2600, symBinAddr: 0x9210, symSize: 0x5A0 } - - { offsetInCU: 0x1608, offset: 0xBC165, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGFySSXEfU_', symObjAddr: 0x2C40, symBinAddr: 0x9850, symSize: 0x240 } - - { offsetInCU: 0x16ED, offset: 0xBC24A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03setC4BodyyyAA7JSValue_p_SSSgtKF', symObjAddr: 0x2E80, symBinAddr: 0x9A90, symSize: 0x220 } - - { offsetInCU: 0x17D7, offset: 0xBC334, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC14setContentTypeyySSSgF', symObjAddr: 0x30A0, symBinAddr: 0x9CB0, symSize: 0x70 } - - { offsetInCU: 0x182E, offset: 0xBC38B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10setTimeoutyySdF', symObjAddr: 0x3110, symBinAddr: 0x9D20, symSize: 0x50 } - - { offsetInCU: 0x1885, offset: 0xBC3E2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getbC010Foundation10URLRequestVyF', symObjAddr: 0x3160, symBinAddr: 0x9D70, symSize: 0x50 } - - { offsetInCU: 0x18D4, offset: 0xBC431, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctF', symObjAddr: 0x31B0, symBinAddr: 0x9DC0, symSize: 0x80 } - - { offsetInCU: 0x196B, offset: 0xBC4C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC10urlSession_4task26willPerformHTTPRedirection03newC017completionHandlerySo12NSURLSessionC_So0M4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVyAQSgctFTo', symObjAddr: 0x3230, symBinAddr: 0x9E40, symSize: 0x1A0 } - - { offsetInCU: 0x19D5, offset: 0xBC532, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC03getB7SessionySo12NSURLSessionCSo13CAPPluginCallCF', symObjAddr: 0x33D0, symBinAddr: 0x9FE0, symSize: 0xD0 } - - { offsetInCU: 0x1A3C, offset: 0xBC599, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfC', symObjAddr: 0x3640, symBinAddr: 0xA250, symSize: 0x20 } - - { offsetInCU: 0x1A5A, offset: 0xBC5B7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfc', symObjAddr: 0x3660, symBinAddr: 0xA270, symSize: 0x30 } - - { offsetInCU: 0x1ABD, offset: 0xBC61A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCACycfcTo', symObjAddr: 0x3690, symBinAddr: 0xA2A0, symSize: 0x30 } - - { offsetInCU: 0x1B24, offset: 0xBC681, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCfD', symObjAddr: 0x36C0, symBinAddr: 0xA2D0, symSize: 0x30 } - - { offsetInCU: 0x1B51, offset: 0xBC6AE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC_6methodAC10Foundation3URLV_SStcfcTf4ngn_n', symObjAddr: 0x4560, symBinAddr: 0xB170, symSize: 0x490 } - - { offsetInCU: 0x1DB6, offset: 0xBC913, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvpACTK', symObjAddr: 0x0, symBinAddr: 0x6C10, symSize: 0x50 } - - { offsetInCU: 0x1DE3, offset: 0xBC940, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7request10Foundation10URLRequestVvpACTk', symObjAddr: 0x50, symBinAddr: 0x6C60, symSize: 0xA0 } - - { offsetInCU: 0x1E1A, offset: 0xBC977, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC7headersSDyS2SGvpACTk', symObjAddr: 0x1F0, symBinAddr: 0x6E00, symSize: 0x60 } - - { offsetInCU: 0x2006, offset: 0xBCB63, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x34A0, symBinAddr: 0xA0B0, symSize: 0x1A0 } - - { offsetInCU: 0x20A3, offset: 0xBCC00, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCfETo', symObjAddr: 0x36F0, symBinAddr: 0xA300, symSize: 0x40 } - - { offsetInCU: 0x20F3, offset: 0xBCC50, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_SSTg5', symObjAddr: 0x3730, symBinAddr: 0xA340, symSize: 0xC0 } - - { offsetInCU: 0x217D, offset: 0xBCCDA, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x37F0, symBinAddr: 0xA400, symSize: 0xB0 } - - { offsetInCU: 0x220B, offset: 0xBCD68, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_So13CAPPluginCallCTg5', symObjAddr: 0x38A0, symBinAddr: 0xA4B0, symSize: 0xB0 } - - { offsetInCU: 0x231A, offset: 0xBCE77, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationO22withUnsafeMutableBytesyxxSwKXEKlFs16IndexingIteratorVySS8UTF8ViewVG_Sit_Tg5', symObjAddr: 0x3950, symBinAddr: 0xA560, symSize: 0x3C0 } - - { offsetInCU: 0x240F, offset: 0xBCF6C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0V15withUnsafeBytesyxxSWKXEKlFyt_Tgq5015$s10Foundation4B42VyACxcSTRzs5UInt8V7ElementRtzlufcySWXEfU3_ACTf1ncn_n', symObjAddr: 0x3D10, symBinAddr: 0xA920, symSize: 0xD0 } - - { offsetInCU: 0x2479, offset: 0xBCFD6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufcAC15_RepresentationOSWXEfU_', symObjAddr: 0x3DE0, symBinAddr: 0xA9F0, symSize: 0x80 } - - { offsetInCU: 0x24EE, offset: 0xBD04B, size: 0x8, addend: 0x0, symName: '_$s10Foundation13__DataStorageC22withUnsafeMutableBytes2in5applyxSnySiG_xSwKXEtKlFs16IndexingIteratorVySS8UTF8ViewVG_Sit_Tg5', symObjAddr: 0x3E60, symBinAddr: 0xAA70, symSize: 0xA0 } - - { offsetInCU: 0x25D9, offset: 0xBD136, size: 0x8, addend: 0x0, symName: '_$sSTsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlFSDySS9Capacitor7JSValue_pG_s17_NativeDictionaryVyS2SGTg5051$sSD16compactMapValuesySDyxqd__Gqd__Sgq_KXEKlFys17_fg46Vyxqd__Gz_x3key_q_5valuettKXEfU_SS_9Capacitor7E116_pSSTg5076$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7I18_pKFSSSgAaH_pXEfU_Tf3nnpf_nTf1ncn_n', symObjAddr: 0x3F00, symBinAddr: 0xAB10, symSize: 0x400 } - - { offsetInCU: 0x2786, offset: 0xBD2E3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_AI_SitSryAEGXEfU_SS8UTF8ViewV_TG5', symObjAddr: 0x4300, symBinAddr: 0xAF10, symSize: 0x90 } - - { offsetInCU: 0x2860, offset: 0xBD3BD, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x49F0, symBinAddr: 0xB600, symSize: 0x30 } - - { offsetInCU: 0x2874, offset: 0xBD3D1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOAEs0D0AAWl', symObjAddr: 0x4A20, symBinAddr: 0xB630, symSize: 0x30 } - - { offsetInCU: 0x2888, offset: 0xBD3E5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pWOc', symObjAddr: 0x4A90, symBinAddr: 0xB660, symSize: 0x30 } - - { offsetInCU: 0x2A8B, offset: 0xBD5E8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x5170, symBinAddr: 0xBD40, symSize: 0xC0 } - - { offsetInCU: 0x2B01, offset: 0xBD65E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x5230, symBinAddr: 0xBE00, symSize: 0x80 } - - { offsetInCU: 0x2B2E, offset: 0xBD68B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x52B0, symBinAddr: 0xBE80, symSize: 0x80 } - - { offsetInCU: 0x2B83, offset: 0xBD6E0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x5330, symBinAddr: 0xBF00, symSize: 0x70 } - - { offsetInCU: 0x2BD4, offset: 0xBD731, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationO5countAESi_tcfCTf4nd_n', symObjAddr: 0x53A0, symBinAddr: 0xBF70, symSize: 0xC0 } - - { offsetInCU: 0x2D34, offset: 0xBD891, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x5BB0, symBinAddr: 0xC780, symSize: 0x60 } - - { offsetInCU: 0x2D48, offset: 0xBD8A5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x5C40, symBinAddr: 0xC7E0, symSize: 0x40 } - - { offsetInCU: 0x2E01, offset: 0xBD95E, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x61D0, symBinAddr: 0xCD70, symSize: 0x30 } - - { offsetInCU: 0x2E62, offset: 0xBD9BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMa', symObjAddr: 0x67D0, symBinAddr: 0xD370, symSize: 0x30 } - - { offsetInCU: 0x2E76, offset: 0xBD9D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMU', symObjAddr: 0x6880, symBinAddr: 0xD420, symSize: 0x10 } - - { offsetInCU: 0x2E8A, offset: 0xBD9E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestCMr', symObjAddr: 0x6890, symBinAddr: 0xD430, symSize: 0x70 } - - { offsetInCU: 0x2E9E, offset: 0xBD9FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwCP', symObjAddr: 0x6BB0, symBinAddr: 0xD750, symSize: 0x30 } - - { offsetInCU: 0x2EB2, offset: 0xBDA0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwxx', symObjAddr: 0x6BE0, symBinAddr: 0xD780, symSize: 0x10 } - - { offsetInCU: 0x2EC6, offset: 0xBDA23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwcp', symObjAddr: 0x6BF0, symBinAddr: 0xD790, symSize: 0x30 } - - { offsetInCU: 0x2EDA, offset: 0xBDA37, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwca', symObjAddr: 0x6C20, symBinAddr: 0xD7C0, symSize: 0x40 } - - { offsetInCU: 0x2EEE, offset: 0xBDA4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwta', symObjAddr: 0x6C70, symBinAddr: 0xD800, symSize: 0x30 } - - { offsetInCU: 0x2F02, offset: 0xBDA5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwet', symObjAddr: 0x6CA0, symBinAddr: 0xD830, symSize: 0x50 } - - { offsetInCU: 0x2F16, offset: 0xBDA73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwst', symObjAddr: 0x6CF0, symBinAddr: 0xD880, symSize: 0x50 } - - { offsetInCU: 0x2F2A, offset: 0xBDA87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwug', symObjAddr: 0x6D40, symBinAddr: 0xD8D0, symSize: 0x10 } - - { offsetInCU: 0x2F3E, offset: 0xBDA9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwup', symObjAddr: 0x6D50, symBinAddr: 0xD8E0, symSize: 0x10 } - - { offsetInCU: 0x2F52, offset: 0xBDAAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOwui', symObjAddr: 0x6D60, symBinAddr: 0xD8F0, symSize: 0x10 } - - { offsetInCU: 0x2F66, offset: 0xBDAC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOMa', symObjAddr: 0x6D70, symBinAddr: 0xD900, symSize: 0x10 } - - { offsetInCU: 0x2F7A, offset: 0xBDAD7, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOb', symObjAddr: 0x6D80, symBinAddr: 0xD910, symSize: 0x40 } - - { offsetInCU: 0x2F8E, offset: 0xBDAEB, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6DC0, symBinAddr: 0xD950, symSize: 0x20 } - - { offsetInCU: 0x2FA2, offset: 0xBDAFF, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x6DE0, symBinAddr: 0xD970, symSize: 0x20 } - - { offsetInCU: 0x2FEC, offset: 0xBDB49, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_SS8UTF8ViewV_TG5TA', symObjAddr: 0x6E60, symBinAddr: 0xD9F0, symSize: 0x50 } - - { offsetInCU: 0x303F, offset: 0xBDB9C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOSgWOe', symObjAddr: 0x6EB0, symBinAddr: 0xDA40, symSize: 0x20 } - - { offsetInCU: 0x3053, offset: 0xBDBB0, size: 0x8, addend: 0x0, symName: '_$s10Foundation15ContiguousBytes_pWOb', symObjAddr: 0x6ED0, symBinAddr: 0xDA60, symSize: 0x20 } - - { offsetInCU: 0x3067, offset: 0xBDBC4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufc8IteratorQz_SitSwXEfU1_AI_SitSryAEGXEfU_SS8UTF8ViewV_TG5TA', symObjAddr: 0x6EF0, symBinAddr: 0xDA80, symSize: 0x10 } - - { offsetInCU: 0x307B, offset: 0xBDBD8, size: 0x8, addend: 0x0, symName: '_$sSw17withMemoryRebound2to_q_xm_q_SryxGKXEtKr0_lFs5UInt8V_s16IndexingIteratorVySS8UTF8ViewVG_SitTg5Tf4dnn_n', symObjAddr: 0x6F00, symBinAddr: 0xDA90, symSize: 0x50 } - - { offsetInCU: 0x30D4, offset: 0xBDC31, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP7_domainSSvgTW', symObjAddr: 0x330, symBinAddr: 0x6F40, symSize: 0x10 } - - { offsetInCU: 0x30F0, offset: 0xBDC4D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP5_codeSivgTW', symObjAddr: 0x340, symBinAddr: 0x6F50, symSize: 0x10 } - - { offsetInCU: 0x310C, offset: 0xBDC69, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x350, symBinAddr: 0x6F60, symSize: 0x10 } - - { offsetInCU: 0x3128, offset: 0xBDC85, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A10UrlRequestC0abC5ErrorOs0D0AAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x360, symBinAddr: 0x6F70, symSize: 0x10 } - - { offsetInCU: 0x3222, offset: 0xBDD7F, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg5100$s9Capacitor0A10UrlRequestC03getc19DataAsMultipartFormE0y10Foundation0E0VAA7JSValue_pKFySS_SStXEfU0_10Foundation0J0VSSTf1cn_n', symObjAddr: 0xB30, symBinAddr: 0x7740, symSize: 0x1E0 } - - { offsetInCU: 0x3408, offset: 0xBDF65, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9Capacitor7JSValue_pTg5Tf4gd_n', symObjAddr: 0x4390, symBinAddr: 0xAFA0, symSize: 0xE0 } - - { offsetInCU: 0x3535, offset: 0xBE092, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x4470, symBinAddr: 0xB080, symSize: 0xF0 } - - { offsetInCU: 0x3669, offset: 0xBE1C6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x4AC0, symBinAddr: 0xB690, symSize: 0xE0 } - - { offsetInCU: 0x379C, offset: 0xBE2F9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSo38UIApplicationOpenExternalURLOptionsKeya_ypTg5Tf4gd_n', symObjAddr: 0x4BA0, symBinAddr: 0xB770, symSize: 0xE0 } - - { offsetInCU: 0x38CF, offset: 0xBE42C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SayypGTg5Tf4gd_n', symObjAddr: 0x4C80, symBinAddr: 0xB850, symSize: 0xE0 } - - { offsetInCU: 0x3A16, offset: 0xBE573, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_10Foundation3URLVSgTg5Tf4gd_n', symObjAddr: 0x4D60, symBinAddr: 0xB930, symSize: 0x170 } - - { offsetInCU: 0x3B4D, offset: 0xBE6AA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So42UIScrollViewContentInsetAdjustmentBehaviorVTg5Tf4gd_n', symObjAddr: 0x4ED0, symBinAddr: 0xBAA0, symSize: 0xE0 } - - { offsetInCU: 0x3C70, offset: 0xBE7CD, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVySS9Capacitor7JSValue_p_G_Tg5076$s9Capacitor0A10UrlRequestC03getc10DataAsFormB7Encodedy10Foundation0E0VSgAA7F12_pKFySSXEfU_10Foundation13URLComponentsVSDySSAfG_pGTf1cn_nTf4nng_n', symObjAddr: 0x4FB0, symBinAddr: 0xBB80, symSize: 0x1C0 } - - { offsetInCU: 0x3D61, offset: 0xBE8BE, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVyS2S_G_Tg556$s9Capacitor0A10UrlRequestC03getC6HeaderyypSgSSFySSXEfU_SDySSypG9Capacitor0phI0CTf1cn_nTf4nng_n', symObjAddr: 0x5C80, symBinAddr: 0xC820, symSize: 0x550 } - - { offsetInCU: 0x3FE6, offset: 0xBEB43, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVyS2S_G_Tg559$s9Capacitor0A10UrlRequestC03setC7HeadersyySDyS2SGFySSXEfU_SDyS2SG9Capacitor0qhI0CTf1cn_nTf4ngg_n', symObjAddr: 0x6200, symBinAddr: 0xCDA0, symSize: 0x410 } - - { offsetInCU: 0x420F, offset: 0xBED6C, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSD4KeysVySSyp_G_Tg560$s9Capacitor0A10UrlRequestC03setC7HeadersyySDySSypGFySSXEfU_SDySSypG9Capacitor0qhI0CTf1cn_nTf4ngg_n', symObjAddr: 0x6610, symBinAddr: 0xD1B0, symSize: 0x1C0 } - - { offsetInCU: 0x4405, offset: 0xBEF62, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVyACxcSTRzs5UInt8V7ElementRtzlufCSS8UTF8ViewV_Tg5Tf4nd_n', symObjAddr: 0x5460, symBinAddr: 0xC030, symSize: 0x750 } - - { offsetInCU: 0x6D, offset: 0xBF370, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC6bridgeAA0B8Protocol_pSgvg', symObjAddr: 0x0, symBinAddr: 0xDB20, symSize: 0x30 } - - { offsetInCU: 0xD2, offset: 0xBF3D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvg', symObjAddr: 0x90, symBinAddr: 0xDBB0, symSize: 0x40 } - - { offsetInCU: 0xEF, offset: 0xBF3F2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvg', symObjAddr: 0xD0, symBinAddr: 0xDBF0, symSize: 0x30 } - - { offsetInCU: 0x10C, offset: 0xBF40F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvs', symObjAddr: 0x100, symBinAddr: 0xDC20, symSize: 0x40 } - - { offsetInCU: 0x133, offset: 0xBF436, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18isStatusBarVisibleSbvM', symObjAddr: 0x140, symBinAddr: 0xDC60, symSize: 0x40 } - - { offsetInCU: 0x162, offset: 0xBF465, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM', symObjAddr: 0x1C0, symBinAddr: 0xDCE0, symSize: 0x40 } - - { offsetInCU: 0x191, offset: 0xBF494, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14statusBarStyleSo08UIStatusfG0VvM.resume.0', symObjAddr: 0x200, symBinAddr: 0xDD20, symSize: 0x10 } - - { offsetInCU: 0x1BC, offset: 0xBF4BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18statusBarAnimationSo08UIStatusfG0VvM', symObjAddr: 0x2C0, symBinAddr: 0xDDE0, symSize: 0x40 } - - { offsetInCU: 0x209, offset: 0xBF50C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvgTo', symObjAddr: 0x300, symBinAddr: 0xDE20, symSize: 0x60 } - - { offsetInCU: 0x244, offset: 0xBF547, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvg', symObjAddr: 0x360, symBinAddr: 0xDE80, symSize: 0x40 } - - { offsetInCU: 0x28B, offset: 0xBF58E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvsTo', symObjAddr: 0x3A0, symBinAddr: 0xDEC0, symSize: 0x60 } - - { offsetInCU: 0x2CE, offset: 0xBF5D1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvs', symObjAddr: 0x400, symBinAddr: 0xDF20, symSize: 0x50 } - - { offsetInCU: 0x2F5, offset: 0xBF5F8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvM', symObjAddr: 0x4B0, symBinAddr: 0xDFD0, symSize: 0x40 } - - { offsetInCU: 0x314, offset: 0xBF617, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvg', symObjAddr: 0x4F0, symBinAddr: 0xE010, symSize: 0x40 } - - { offsetInCU: 0x340, offset: 0xBF643, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvgSbyXEfU_', symObjAddr: 0x550, symBinAddr: 0xE070, symSize: 0x4D0 } - - { offsetInCU: 0x3A4, offset: 0xBF6A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvs', symObjAddr: 0x530, symBinAddr: 0xE050, symSize: 0x20 } - - { offsetInCU: 0x3CB, offset: 0xBF6CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM', symObjAddr: 0xA20, symBinAddr: 0xE540, symSize: 0x30 } - - { offsetInCU: 0x422, offset: 0xBF725, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11isNewBinarySbvM.resume.0', symObjAddr: 0xA50, symBinAddr: 0xE570, symSize: 0x20 } - - { offsetInCU: 0x4BC, offset: 0xBF7BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC04loadC0yyF', symObjAddr: 0xA70, symBinAddr: 0xE590, symSize: 0x440 } - - { offsetInCU: 0x6EA, offset: 0xBF9ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC04loadC0yyFTo', symObjAddr: 0x1810, symBinAddr: 0xF330, symSize: 0x30 } - - { offsetInCU: 0x713, offset: 0xBFA16, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC07loadWebC0yyF', symObjAddr: 0x1880, symBinAddr: 0xF360, symSize: 0x4A0 } - - { offsetInCU: 0xA00, offset: 0xBFD03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11viewDidLoadyyFTo', symObjAddr: 0x1D20, symBinAddr: 0xF800, symSize: 0x70 } - - { offsetInCU: 0xA74, offset: 0xBFD77, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC27canPerformUnwindSegueAction_4from10withSenderSb10ObjectiveC8SelectorV_So06UIViewD0CyptFTo', symObjAddr: 0x1DA0, symBinAddr: 0xF870, symSize: 0x80 } - - { offsetInCU: 0xA90, offset: 0xBFD93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC18instanceDescriptorSo011CAPInstanceF0CyF', symObjAddr: 0x1E20, symBinAddr: 0xF8F0, symSize: 0x330 } - - { offsetInCU: 0xBD5, offset: 0xBFED8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC6routerAA6Router_pyF', symObjAddr: 0x2150, symBinAddr: 0xFC20, symSize: 0x40 } - - { offsetInCU: 0xC00, offset: 0xBFF03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC13Configuration3forSo05WKWebcF0CSo011CAPInstanceF0C_tF', symObjAddr: 0x2190, symBinAddr: 0xFC60, symSize: 0x360 } - - { offsetInCU: 0xE01, offset: 0xC0104, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC04with13configurationSo05WKWebC0CSo6CGRectV_So0hC13ConfigurationCtF', symObjAddr: 0x24F0, symBinAddr: 0xFFC0, symSize: 0x80 } - - { offsetInCU: 0xE76, offset: 0xC0179, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC16capacitorDidLoadyyF', symObjAddr: 0x2570, symBinAddr: 0x10040, symSize: 0x10 } - - { offsetInCU: 0xEF5, offset: 0xC01F8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC20setStatusBarDefaultsyyF', symObjAddr: 0x2580, symBinAddr: 0x10050, symSize: 0x330 } - - { offsetInCU: 0x1026, offset: 0xC0329, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC28setScreenOrientationDefaultsyyF', symObjAddr: 0x28B0, symBinAddr: 0x10380, symSize: 0x640 } - - { offsetInCU: 0x16B5, offset: 0xC09B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC22prefersStatusBarHiddenSbvgTo', symObjAddr: 0x2EF0, symBinAddr: 0x109C0, symSize: 0x40 } - - { offsetInCU: 0x172B, offset: 0xC0A2E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC19setStatusBarVisibleyySbF', symObjAddr: 0x3040, symBinAddr: 0x10A70, symSize: 0xF0 } - - { offsetInCU: 0x1790, offset: 0xC0A93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VF', symObjAddr: 0x3160, symBinAddr: 0x10B90, symSize: 0xE0 } - - { offsetInCU: 0x1837, offset: 0xC0B3A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21setStatusBarAnimationyySo08UIStatusgH0VF', symObjAddr: 0x3240, symBinAddr: 0x10C70, symSize: 0x40 } - - { offsetInCU: 0x189A, offset: 0xC0B9D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvgTo', symObjAddr: 0x3280, symBinAddr: 0x10CB0, symSize: 0x20 } - - { offsetInCU: 0x18B6, offset: 0xC0BB9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC30supportedInterfaceOrientationsSo26UIInterfaceOrientationMaskVvg', symObjAddr: 0x32A0, symBinAddr: 0x10CD0, symSize: 0xA0 } - - { offsetInCU: 0x191C, offset: 0xC0C1F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfC', symObjAddr: 0x3440, symBinAddr: 0x10E70, symSize: 0x70 } - - { offsetInCU: 0x193A, offset: 0xC0C3D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc', symObjAddr: 0x34B0, symBinAddr: 0x10EE0, symSize: 0xF0 } - - { offsetInCU: 0x1983, offset: 0xC0C86, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfcTo', symObjAddr: 0x35A0, symBinAddr: 0x10FD0, symSize: 0x50 } - - { offsetInCU: 0x199F, offset: 0xC0CA2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfC', symObjAddr: 0x35F0, symBinAddr: 0x11020, symSize: 0x40 } - - { offsetInCU: 0x19BD, offset: 0xC0CC0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfc', symObjAddr: 0x3630, symBinAddr: 0x11060, symSize: 0xC0 } - - { offsetInCU: 0x19F8, offset: 0xC0CFB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC5coderACSgSo7NSCoderC_tcfcTo', symObjAddr: 0x36F0, symBinAddr: 0x11120, symSize: 0x30 } - - { offsetInCU: 0x1A14, offset: 0xC0D17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCfD', symObjAddr: 0x3720, symBinAddr: 0x11150, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0xC0D63, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC03webC0So05WKWebC0CSgvpACTk', symObjAddr: 0x30, symBinAddr: 0xDB50, symSize: 0x60 } - - { offsetInCU: 0x1A96, offset: 0xC0D99, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC21supportedOrientationsSaySiGvpACTk', symObjAddr: 0x450, symBinAddr: 0xDF70, symSize: 0x60 } - - { offsetInCU: 0x1D0A, offset: 0xC100D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcTf4nennnnn_nAA0nS10ControllerC_Tg5Tf4gggggnn_n', symObjAddr: 0x5300, symBinAddr: 0x12CB0, symSize: 0x730 } - - { offsetInCU: 0x1EA5, offset: 0xC11A8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC19updateBinaryVersion33_0151BC8B8398CBA447E765B04F9447A0LLyyF', symObjAddr: 0xEB0, symBinAddr: 0xE9D0, symSize: 0x440 } - - { offsetInCU: 0x1F6C, offset: 0xC126F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC010prepareWebC033_0151BC8B8398CBA447E765B04F9447A0LL4with12assetHandler010delegationP0ySo24CAPInstanceConfigurationC_AA0fc5AssetP0CAA0fc10DelegationP0CtF', symObjAddr: 0x12F0, symBinAddr: 0xEE10, symSize: 0x520 } - - { offsetInCU: 0x222B, offset: 0xC152E, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x3130, symBinAddr: 0x10B60, symSize: 0x30 } - - { offsetInCU: 0x2312, offset: 0xC1615, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCfETo', symObjAddr: 0x3750, symBinAddr: 0x11180, symSize: 0x50 } - - { offsetInCU: 0x2341, offset: 0xC1644, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyF', symObjAddr: 0x37A0, symBinAddr: 0x111D0, symSize: 0xE0 } - - { offsetInCU: 0x23AF, offset: 0xC16B2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17getServerBasePathSSyFTo', symObjAddr: 0x3880, symBinAddr: 0x112B0, symSize: 0x60 } - - { offsetInCU: 0x23CB, offset: 0xC16CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tF', symObjAddr: 0x38E0, symBinAddr: 0x11310, symSize: 0x240 } - - { offsetInCU: 0x246F, offset: 0xC1772, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFyyScMYccfU_', symObjAddr: 0x3B20, symBinAddr: 0x11550, symSize: 0x180 } - - { offsetInCU: 0x24ED, offset: 0xC17F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFTo', symObjAddr: 0x3CA0, symBinAddr: 0x116D0, symSize: 0x50 } - - { offsetInCU: 0x2509, offset: 0xC180C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC14printLoadError33_0151BC8B8398CBA447E765B04F9447A0LLyyF', symObjAddr: 0x3CF0, symBinAddr: 0x11720, symSize: 0x370 } - - { offsetInCU: 0x285B, offset: 0xC1B5E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC010bridgedWebC0So05WKWebC0CSgvg', symObjAddr: 0x4060, symBinAddr: 0x11A90, symSize: 0x40 } - - { offsetInCU: 0x2897, offset: 0xC1B9A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC07bridgedcD0So06UIViewD0CSgvg', symObjAddr: 0x40A0, symBinAddr: 0x11AD0, symSize: 0x20 } - - { offsetInCU: 0x28D4, offset: 0xC1BD7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCAA0B8DelegateA2aDP010bridgedWebC0So05WKWebC0CSgvgTW', symObjAddr: 0x40C0, symBinAddr: 0x11AF0, symSize: 0x40 } - - { offsetInCU: 0x294F, offset: 0xC1C52, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCAA0B8DelegateA2aDP07bridgedcD0So06UIViewD0CSgvgTW', symObjAddr: 0x4100, symBinAddr: 0x11B30, symSize: 0x20 } - - { offsetInCU: 0x2A1A, offset: 0xC1D1D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF10Foundation12URLQueryItemV_Tg5', symObjAddr: 0x4160, symBinAddr: 0x11B50, symSize: 0x1A0 } - - { offsetInCU: 0x2BFF, offset: 0xC1F02, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi_Tg5', symObjAddr: 0x4300, symBinAddr: 0x11CF0, symSize: 0x110 } - - { offsetInCU: 0x2D97, offset: 0xC209A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x4410, symBinAddr: 0x11E00, symSize: 0x110 } - - { offsetInCU: 0x2F1F, offset: 0xC2222, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor18PluginHeaderMethodV_Tg5', symObjAddr: 0x4520, symBinAddr: 0x11F10, symSize: 0x110 } - - { offsetInCU: 0x30BD, offset: 0xC23C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo8NSObject_p_Tg5', symObjAddr: 0x4630, symBinAddr: 0x12020, symSize: 0x160 } - - { offsetInCU: 0x3290, offset: 0xC2593, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0x4790, symBinAddr: 0x12180, symSize: 0x140 } - - { offsetInCU: 0x345C, offset: 0xC275F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x48D0, symBinAddr: 0x122C0, symSize: 0xF0 } - - { offsetInCU: 0x35F4, offset: 0xC28F7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSs_Tg5', symObjAddr: 0x49C0, symBinAddr: 0x123B0, symSize: 0x110 } - - { offsetInCU: 0x3792, offset: 0xC2A95, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x4AD0, symBinAddr: 0x124C0, symSize: 0x140 } - - { offsetInCU: 0x38F0, offset: 0xC2BF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC11logWarnings33_0151BC8B8398CBA447E765B04F9447A0LL3forySo21CAPInstanceDescriptorC_tFTf4nd_n', symObjAddr: 0x4C10, symBinAddr: 0x12600, symSize: 0x490 } - - { offsetInCU: 0x4000, offset: 0xC3303, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x50A0, symBinAddr: 0x12A90, symSize: 0x30 } - - { offsetInCU: 0x4014, offset: 0xC3317, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgWOf', symObjAddr: 0x5110, symBinAddr: 0x12AC0, symSize: 0x40 } - - { offsetInCU: 0x403E, offset: 0xC3341, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo8NSObject_p_Tg5Tf4nnd_n', symObjAddr: 0x5150, symBinAddr: 0x12B00, symSize: 0x80 } - - { offsetInCU: 0x40D3, offset: 0xC33D6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo8NSObject_p_Tg5Tf4nng_n', symObjAddr: 0x51D0, symBinAddr: 0x12B80, symSize: 0x130 } - - { offsetInCU: 0x421C, offset: 0xC351F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerCMa', symObjAddr: 0x5A30, symBinAddr: 0x133E0, symSize: 0x20 } - - { offsetInCU: 0x4230, offset: 0xC3533, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x5AE0, symBinAddr: 0x13460, symSize: 0x20 } - - { offsetInCU: 0x4244, offset: 0xC3547, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x5B00, symBinAddr: 0x13480, symSize: 0x10 } - - { offsetInCU: 0x4258, offset: 0xC355B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setStatusBarStyleyySo08UIStatusgH0VFyycfU_TA', symObjAddr: 0x5B10, symBinAddr: 0x13490, symSize: 0x20 } - - { offsetInCU: 0x4281, offset: 0xC3584, size: 0x8, addend: 0x0, symName: '_$s9Capacitor23CAPBridgeViewControllerC17setServerBasePath4pathySS_tFyyScMYccfU_TA', symObjAddr: 0x5B60, symBinAddr: 0x134E0, symSize: 0x20 } - - { offsetInCU: 0x4295, offset: 0xC3598, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0x6140, symBinAddr: 0x13AC0, symSize: 0x30 } - - { offsetInCU: 0x42A9, offset: 0xC35AC, size: 0x8, addend: 0x0, symName: ___swift_project_value_buffer, symObjAddr: 0x61E0, symBinAddr: 0x13B60, symSize: 0x20 } - - { offsetInCU: 0x42BD, offset: 0xC35C0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0x6220, symBinAddr: 0x13BA0, symSize: 0x10 } - - { offsetInCU: 0x442E, offset: 0xC3731, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiG_Tg5', symObjAddr: 0x3340, symBinAddr: 0x10D70, symSize: 0x50 } - - { offsetInCU: 0x450C, offset: 0xC380F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3390, symBinAddr: 0x10DC0, symSize: 0xB0 } - - { offsetInCU: 0x27, offset: 0xC3FCD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC13viewDidAppearyySbFTo', symObjAddr: 0x0, symBinAddr: 0x13CA0, symSize: 0xF0 } - - { offsetInCU: 0x75, offset: 0xC401B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC13viewDidAppearyySbFTo', symObjAddr: 0x0, symBinAddr: 0x13CA0, symSize: 0xF0 } - - { offsetInCU: 0xE9, offset: 0xC408F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfcTo', symObjAddr: 0xF0, symBinAddr: 0x13D90, symSize: 0xB0 } - - { offsetInCU: 0x15A, offset: 0xC4100, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerC5coderACSgSo7NSCoderC_tcfcTo', symObjAddr: 0x1A0, symBinAddr: 0x13E40, symSize: 0x40 } - - { offsetInCU: 0x19D, offset: 0xC4143, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerCfD', symObjAddr: 0x1E0, symBinAddr: 0x13E80, symSize: 0x30 } - - { offsetInCU: 0x1DC, offset: 0xC4182, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17TmpViewControllerCMa', symObjAddr: 0x210, symBinAddr: 0x13EB0, symSize: 0x20 } - - { offsetInCU: 0x97, offset: 0xC4368, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE11modulePrintyySo9CAPPluginC_ypdtF', symObjAddr: 0x0, symBinAddr: 0x13ED0, symSize: 0x2B0 } - - { offsetInCU: 0x3A1, offset: 0xC4672, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE5alertyySS_S2StF', symObjAddr: 0x2B0, symBinAddr: 0x14180, symSize: 0x90 } - - { offsetInCU: 0x40A, offset: 0xC46DB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE19setStatusBarVisibleyySbF', symObjAddr: 0x340, symBinAddr: 0x14210, symSize: 0x20 } - - { offsetInCU: 0x451, offset: 0xC4722, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE17setStatusBarStyleyySo08UIStatusfG0VF', symObjAddr: 0x360, symBinAddr: 0x14230, symSize: 0x20 } - - { offsetInCU: 0x498, offset: 0xC4769, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeProtocolPAAE21setStatusBarAnimationyySo08UIStatusfG0VF', symObjAddr: 0x380, symBinAddr: 0x14250, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0xC47BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO2eeoiySbAC_ACtFZ', symObjAddr: 0x3A0, symBinAddr: 0x14270, symSize: 0x10 } - - { offsetInCU: 0x513, offset: 0xC47E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x3B0, symBinAddr: 0x14280, symSize: 0x20 } - - { offsetInCU: 0x599, offset: 0xC486A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO9hashValueSivg', symObjAddr: 0x3D0, symBinAddr: 0x142A0, symSize: 0x30 } - - { offsetInCU: 0x660, offset: 0xC4931, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x400, symBinAddr: 0x142D0, symSize: 0x10 } - - { offsetInCU: 0x68B, offset: 0xC495C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x410, symBinAddr: 0x142E0, symSize: 0x30 } - - { offsetInCU: 0x76F, offset: 0xC4A40, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x440, symBinAddr: 0x14310, symSize: 0x20 } - - { offsetInCU: 0x7F8, offset: 0xC4AC9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZ', symObjAddr: 0x4F0, symBinAddr: 0x143C0, symSize: 0x10 } - - { offsetInCU: 0x80C, offset: 0xC4ADD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO9errorCodeSivg', symObjAddr: 0x500, symBinAddr: 0x143D0, symSize: 0x10 } - - { offsetInCU: 0x877, offset: 0xC4B48, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO13errorUserInfoSDySSypGvg', symObjAddr: 0x510, symBinAddr: 0x143E0, symSize: 0xB0 } - - { offsetInCU: 0x96E, offset: 0xC4C3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP11errorDomainSSvgZTW', symObjAddr: 0x5C0, symBinAddr: 0x14490, symSize: 0x10 } - - { offsetInCU: 0x9A0, offset: 0xC4C71, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP9errorCodeSivgTW', symObjAddr: 0x5D0, symBinAddr: 0x144A0, symSize: 0x10 } - - { offsetInCU: 0x9BC, offset: 0xC4C8D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAadEP13errorUserInfoSDySSypGvgTW', symObjAddr: 0x5E0, symBinAddr: 0x144B0, symSize: 0x10 } - - { offsetInCU: 0x9D8, offset: 0xC4CA9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO16errorDescriptionSSSgvg', symObjAddr: 0x5F0, symBinAddr: 0x144C0, symSize: 0xB0 } - - { offsetInCU: 0xA0C, offset: 0xC4CDD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP16errorDescriptionSSSgvgTW', symObjAddr: 0x6A0, symBinAddr: 0x14570, symSize: 0x10 } - - { offsetInCU: 0xA28, offset: 0xC4CF9, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor18PluginHeaderMethodV_Tg5', symObjAddr: 0x6E0, symBinAddr: 0x145B0, symSize: 0x30 } - - { offsetInCU: 0xA40, offset: 0xC4D11, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0x710, symBinAddr: 0x145E0, symSize: 0x20 } - - { offsetInCU: 0xA58, offset: 0xC4D29, size: 0x8, addend: 0x0, symName: '_$sSaySSGSayxGSKsWl', symObjAddr: 0x7D0, symBinAddr: 0x14600, symSize: 0x40 } - - { offsetInCU: 0xA6C, offset: 0xC4D3D, size: 0x8, addend: 0x0, symName: '_$sSaySSGMa', symObjAddr: 0x810, symBinAddr: 0x14640, symSize: 0x30 } - - { offsetInCU: 0xA80, offset: 0xC4D51, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0x840, symBinAddr: 0x14670, symSize: 0x20 } - - { offsetInCU: 0xA98, offset: 0xC4D69, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFyp_Tg5', symObjAddr: 0x860, symBinAddr: 0x14690, symSize: 0x30 } - - { offsetInCU: 0xAB0, offset: 0xC4D81, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor7JSValue_pSg_Tg5', symObjAddr: 0x890, symBinAddr: 0x146C0, symSize: 0x20 } - - { offsetInCU: 0xAC8, offset: 0xC4D99, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0x8B0, symBinAddr: 0x146E0, symSize: 0x20 } - - { offsetInCU: 0xAE0, offset: 0xC4DB1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x8D0, symBinAddr: 0x14700, symSize: 0x20 } - - { offsetInCU: 0xB5B, offset: 0xC4E2C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x8F0, symBinAddr: 0x14720, symSize: 0x110 } - - { offsetInCU: 0xCC9, offset: 0xC4F9A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo12NSHTTPCookieC_Tg5', symObjAddr: 0xA00, symBinAddr: 0x14830, symSize: 0x140 } - - { offsetInCU: 0xE40, offset: 0xC5111, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_pSg_Tg5', symObjAddr: 0xC50, symBinAddr: 0x14A80, symSize: 0x140 } - - { offsetInCU: 0xFAF, offset: 0xC5280, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9Capacitor7JSValue_p_Tg5', symObjAddr: 0xD90, symBinAddr: 0x14BC0, symSize: 0x140 } - - { offsetInCU: 0x111E, offset: 0xC53EF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSi6offset_Ss7elementt_Tg5', symObjAddr: 0xED0, symBinAddr: 0x14D00, symSize: 0x150 } - - { offsetInCU: 0x121E, offset: 0xC54EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO11errorDomainSSvgZTf4d_n', symObjAddr: 0x1020, symBinAddr: 0x14E50, symSize: 0x20 } - - { offsetInCU: 0x123C, offset: 0xC550D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASQWb', symObjAddr: 0x1040, symBinAddr: 0x14E70, symSize: 0x10 } - - { offsetInCU: 0x1250, offset: 0xC5521, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOACSQAAWl', symObjAddr: 0x1050, symBinAddr: 0x14E80, symSize: 0x30 } - - { offsetInCU: 0x1264, offset: 0xC5535, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation13CustomNSErrorAAs0C0PWb', symObjAddr: 0x1080, symBinAddr: 0x14EB0, symSize: 0x10 } - - { offsetInCU: 0x1278, offset: 0xC5549, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOACs0C0AAWl', symObjAddr: 0x1090, symBinAddr: 0x14EC0, symSize: 0x30 } - - { offsetInCU: 0x128C, offset: 0xC555D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AAs0C0PWb', symObjAddr: 0x10C0, symBinAddr: 0x14EF0, symSize: 0x10 } - - { offsetInCU: 0x12A0, offset: 0xC5571, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x10D0, symBinAddr: 0x14F00, symSize: 0x10 } - - { offsetInCU: 0x12B4, offset: 0xC5585, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x10E0, symBinAddr: 0x14F10, symSize: 0x10 } - - { offsetInCU: 0x12C8, offset: 0xC5599, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwet', symObjAddr: 0x10F0, symBinAddr: 0x14F20, symSize: 0x50 } - - { offsetInCU: 0x12DC, offset: 0xC55AD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwst', symObjAddr: 0x1140, symBinAddr: 0x14F70, symSize: 0xA0 } - - { offsetInCU: 0x12F0, offset: 0xC55C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwug', symObjAddr: 0x11E0, symBinAddr: 0x15010, symSize: 0x10 } - - { offsetInCU: 0x1304, offset: 0xC55D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwup', symObjAddr: 0x11F0, symBinAddr: 0x15020, symSize: 0x10 } - - { offsetInCU: 0x1318, offset: 0xC55E9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOwui', symObjAddr: 0x1200, symBinAddr: 0x15030, symSize: 0x10 } - - { offsetInCU: 0x132C, offset: 0xC55FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOMa', symObjAddr: 0x1210, symBinAddr: 0x15040, symSize: 0x10 } - - { offsetInCU: 0x1340, offset: 0xC5611, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOAC10Foundation13CustomNSErrorAAWl', symObjAddr: 0x1220, symBinAddr: 0x15050, symSize: 0x30 } - - { offsetInCU: 0x1354, offset: 0xC5625, size: 0x8, addend: 0x0, symName: '_$sSo12NSHTTPCookieCMa', symObjAddr: 0x1250, symBinAddr: 0x15080, symSize: 0x2F } - - { offsetInCU: 0x140E, offset: 0xC56DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x460, symBinAddr: 0x14330, symSize: 0x30 } - - { offsetInCU: 0x14AB, offset: 0xC577C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4D0, symBinAddr: 0x143A0, symSize: 0x10 } - - { offsetInCU: 0x14C7, offset: 0xC5798, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x4E0, symBinAddr: 0x143B0, symSize: 0x10 } - - { offsetInCU: 0x15A4, offset: 0xC5875, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP7_domainSSvgTW', symObjAddr: 0x490, symBinAddr: 0x14360, symSize: 0x20 } - - { offsetInCU: 0x15C0, offset: 0xC5891, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorOs0C0AAsADP5_codeSivgTW', symObjAddr: 0x4B0, symBinAddr: 0x14380, symSize: 0x20 } - - { offsetInCU: 0x15EB, offset: 0xC58BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP13failureReasonSSSgvgTW', symObjAddr: 0x6B0, symBinAddr: 0x14580, symSize: 0x10 } - - { offsetInCU: 0x1607, offset: 0xC58D8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP18recoverySuggestionSSSgvgTW', symObjAddr: 0x6C0, symBinAddr: 0x14590, symSize: 0x10 } - - { offsetInCU: 0x1623, offset: 0xC58F4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A11BridgeErrorO10Foundation09LocalizedC0AadEP10helpAnchorSSSgvgTW', symObjAddr: 0x6D0, symBinAddr: 0x145A0, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0xC5B5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF', symObjAddr: 0x0, symBinAddr: 0x150B0, symSize: 0x80 } - - { offsetInCU: 0x4F, offset: 0xC5B83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor28associatedKeyboardFlagHandle33_3E0898892F6945378FAE8ABD0FA44A3BLLs5UInt8Vvp', symObjAddr: 0xA60, symBinAddr: 0x76C20, symSize: 0x0 } - - { offsetInCU: 0x5D, offset: 0xC5B91, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE39setKeyboardShouldRequireUserInteractionyySbSgF', symObjAddr: 0x0, symBinAddr: 0x150B0, symSize: 0x80 } - - { offsetInCU: 0xEF, offset: 0xC5C23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo9WKWebViewCRszlE36keyboardShouldRequireUserInteractionSbSgvg', symObjAddr: 0x80, symBinAddr: 0x15130, symSize: 0xD0 } - - { offsetInCU: 0x119, offset: 0xC5C4D, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE27associatedKeyboardFlagValueypSgvs', symObjAddr: 0x150, symBinAddr: 0x15200, symSize: 0xF0 } - - { offsetInCU: 0x17A, offset: 0xC5CAE, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE23_swizzleKeyboardMethodsyyFZTo', symObjAddr: 0x240, symBinAddr: 0x152F0, symSize: 0x30 } - - { offsetInCU: 0x1B2, offset: 0xC5CE6, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzle_WZ', symObjAddr: 0x270, symBinAddr: 0x15320, symSize: 0x10 } - - { offsetInCU: 0x23A, offset: 0xC5D6E, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_', symObjAddr: 0x280, symBinAddr: 0x15330, symSize: 0x120 } - - { offsetInCU: 0x308, offset: 0xC5E3C, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ABSgypSgcfU_', symObjAddr: 0x3A0, symBinAddr: 0x15450, symSize: 0xD0 } - - { offsetInCU: 0x35B, offset: 0xC5E8F, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ys13OpaquePointerV_10ObjectiveC8SelectorVtcfU0_yyp_SVS3bypSgtcfU_', symObjAddr: 0x470, symBinAddr: 0x15520, symSize: 0x330 } - - { offsetInCU: 0x454, offset: 0xC5F88, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9CapacitorE18oneTimeOnlySwizzleytvpZfiyyXEfU_ys13OpaquePointerV_10ObjectiveC8SelectorVtcfU0_yyp_SVS3bypSgtcfU_TA', symObjAddr: 0x7C0, symBinAddr: 0x15870, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0xC5F9C, size: 0x8, addend: 0x0, symName: '_$sypSVS3bypSgIegnyyyyn_yXlSVS3byXlSgIeyByyyyyy_TR', symObjAddr: 0x7F0, symBinAddr: 0x158A0, symSize: 0xD0 } - - { offsetInCU: 0x480, offset: 0xC5FB4, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8C0, symBinAddr: 0x15970, symSize: 0x20 } - - { offsetInCU: 0x494, offset: 0xC5FC8, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8E0, symBinAddr: 0x15990, symSize: 0x10 } - - { offsetInCU: 0x4A8, offset: 0xC5FDC, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x8F0, symBinAddr: 0x159A0, symSize: 0x30 } - - { offsetInCU: 0x4BC, offset: 0xC5FF0, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x9C0, symBinAddr: 0x159D0, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0xC6004, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x9F0, symBinAddr: 0x15A00, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0xC628C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ', symObjAddr: 0x0, symBinAddr: 0x15A70, symSize: 0x260 } - - { offsetInCU: 0x6D, offset: 0xC62CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAA10Foundation4DataVRszlE4data015base64EncodedOrF3UrlAFSgSS_tFZ', symObjAddr: 0x0, symBinAddr: 0x15A70, symSize: 0x260 } - - { offsetInCU: 0x171, offset: 0xC63D2, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0x490, symBinAddr: 0x15E60, symSize: 0xFC } - - { offsetInCU: 0x1C2, offset: 0xC6423, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlFSS_SSTg5', symObjAddr: 0x2A0, symBinAddr: 0x15CD0, symSize: 0x190 } - - { offsetInCU: 0x4F, offset: 0xC661F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfC', symObjAddr: 0x0, symBinAddr: 0x15F60, symSize: 0x30 } - - { offsetInCU: 0x97, offset: 0xC6667, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0Cvg', symObjAddr: 0x90, symBinAddr: 0x15FF0, symSize: 0x40 } - - { offsetInCU: 0xB4, offset: 0xC6684, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC6bridgeAcA0A6BridgeCSg_tcfc', symObjAddr: 0xD0, symBinAddr: 0x16030, symSize: 0x170 } - - { offsetInCU: 0x13B, offset: 0xC670B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC7cleanUpyyF', symObjAddr: 0x260, symBinAddr: 0x161C0, symSize: 0x90 } - - { offsetInCU: 0x1DA, offset: 0xC67AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC15willLoadWebviewyySo05WKWebC0CSgF', symObjAddr: 0x2F0, symBinAddr: 0x16250, symSize: 0x50 } - - { offsetInCU: 0x298, offset: 0xC6868, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtF', symObjAddr: 0x340, symBinAddr: 0x162A0, symSize: 0x70 } - - { offsetInCU: 0x35C, offset: 0xC692C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_29didStartProvisionalNavigationySo05WKWebC0C_So12WKNavigationCSgtFTo', symObjAddr: 0x3B0, symBinAddr: 0x16310, symSize: 0xB0 } - - { offsetInCU: 0x406, offset: 0xC69D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctF', symObjAddr: 0x460, symBinAddr: 0x163C0, symSize: 0x20 } - - { offsetInCU: 0x49D, offset: 0xC6A6D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_32requestMediaCapturePermissionFor16initiatedByFrame4type08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCSo07WKMediaI4TypeVySo20WKPermissionDecisionVctFTo', symObjAddr: 0x480, symBinAddr: 0x163E0, symSize: 0xA0 } - - { offsetInCU: 0x4FC, offset: 0xC6ACC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctF', symObjAddr: 0x520, symBinAddr: 0x16480, symSize: 0x20 } - - { offsetInCU: 0x581, offset: 0xC6B51, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_46requestDeviceOrientationAndMotionPermissionFor16initiatedByFrame08decisionE0ySo05WKWebC0C_So16WKSecurityOriginCSo11WKFrameInfoCySo20WKPermissionDecisionVctFTo', symObjAddr: 0x540, symBinAddr: 0x164A0, symSize: 0xA0 } - - { offsetInCU: 0x5E0, offset: 0xC6BB0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF', symObjAddr: 0x5E0, symBinAddr: 0x16540, symSize: 0x9D0 } - - { offsetInCU: 0x81A, offset: 0xC6DEA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctFTo', symObjAddr: 0xFF0, symBinAddr: 0x16F10, symSize: 0xA0 } - - { offsetInCU: 0x84C, offset: 0xC6E1C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtF', symObjAddr: 0x1090, symBinAddr: 0x16FB0, symSize: 0x10 } - - { offsetInCU: 0x86F, offset: 0xC6E3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtFTo', symObjAddr: 0x10A0, symBinAddr: 0x16FC0, symSize: 0x70 } - - { offsetInCU: 0x8A1, offset: 0xC6E71, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptF', symObjAddr: 0x1110, symBinAddr: 0x17030, symSize: 0x10 } - - { offsetInCU: 0x8BD, offset: 0xC6E8D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptF', symObjAddr: 0x1140, symBinAddr: 0x17060, symSize: 0x10 } - - { offsetInCU: 0x8D9, offset: 0xC6EA9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CF', symObjAddr: 0x1200, symBinAddr: 0x17120, symSize: 0x30 } - - { offsetInCU: 0x928, offset: 0xC6EF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webcB26ContentProcessDidTerminateyySo05WKWebC0CFTo', symObjAddr: 0x1230, symBinAddr: 0x17150, symSize: 0x70 } - - { offsetInCU: 0x95D, offset: 0xC6F2D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtF', symObjAddr: 0x12A0, symBinAddr: 0x171C0, symSize: 0x10 } - - { offsetInCU: 0x980, offset: 0xC6F50, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtFTo', symObjAddr: 0x12B0, symBinAddr: 0x171D0, symSize: 0x70 } - - { offsetInCU: 0x9B2, offset: 0xC6F82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF', symObjAddr: 0x1320, symBinAddr: 0x17240, symSize: 0x290 } - - { offsetInCU: 0xAEB, offset: 0xC70BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctFTo', symObjAddr: 0x15C0, symBinAddr: 0x174E0, symSize: 0xC0 } - - { offsetInCU: 0xB1D, offset: 0xC70ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctF', symObjAddr: 0x1680, symBinAddr: 0x175A0, symSize: 0x20 } - - { offsetInCU: 0xB40, offset: 0xC7110, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctFTo', symObjAddr: 0x16A0, symBinAddr: 0x175C0, symSize: 0xD0 } - - { offsetInCU: 0xB72, offset: 0xC7142, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF', symObjAddr: 0x1770, symBinAddr: 0x17690, symSize: 0xC40 } - - { offsetInCU: 0x104E, offset: 0xC761E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU_', symObjAddr: 0x23B0, symBinAddr: 0x182D0, symSize: 0x50 } - - { offsetInCU: 0x108B, offset: 0xC765B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo13UIAlertActionCcfU1_', symObjAddr: 0x2460, symBinAddr: 0x18380, symSize: 0x1C0 } - - { offsetInCU: 0x123E, offset: 0xC780E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFTo', symObjAddr: 0x2620, symBinAddr: 0x18540, symSize: 0xF0 } - - { offsetInCU: 0x1270, offset: 0xC7840, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtF', symObjAddr: 0x2750, symBinAddr: 0x18670, symSize: 0x10 } - - { offsetInCU: 0x1293, offset: 0xC7863, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtFTo', symObjAddr: 0x2760, symBinAddr: 0x18680, symSize: 0xA0 } - - { offsetInCU: 0x12C6, offset: 0xC7896, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtF', symObjAddr: 0x2800, symBinAddr: 0x18720, symSize: 0x50 } - - { offsetInCU: 0x132B, offset: 0xC78FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC06scrollC16WillBeginZooming_4withySo08UIScrollC0C_So6UIViewCSgtFTo', symObjAddr: 0x2850, symBinAddr: 0x18770, symSize: 0xB0 } - - { offsetInCU: 0x136B, offset: 0xC793B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfC', symObjAddr: 0x2960, symBinAddr: 0x18880, symSize: 0x20 } - - { offsetInCU: 0x1389, offset: 0xC7959, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfc', symObjAddr: 0x2980, symBinAddr: 0x188A0, symSize: 0x30 } - - { offsetInCU: 0x13EC, offset: 0xC79BC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCACycfcTo', symObjAddr: 0x29B0, symBinAddr: 0x188D0, symSize: 0x30 } - - { offsetInCU: 0x1453, offset: 0xC7A23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCfD', symObjAddr: 0x29E0, symBinAddr: 0x18900, symSize: 0x30 } - - { offsetInCU: 0x1480, offset: 0xC7A50, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_15decidePolicyFor08decisionE0ySo05WKWebC0C_So18WKNavigationActionCySo0lmH0VctF06$sSo24lmH16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4dnng_n', symObjAddr: 0x2A90, symBinAddr: 0x189B0, symSize: 0x9E0 } - - { offsetInCU: 0x170B, offset: 0xC7CDB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_9didFinishySo05WKWebC0C_So12WKNavigationCSgtFTf4ndn_n', symObjAddr: 0x3470, symBinAddr: 0x19390, symSize: 0xE0 } - - { offsetInCU: 0x1861, offset: 0xC7E31, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_7didFail9withErrorySo05WKWebC0C_So12WKNavigationCSgs0J0_ptFTf4ndnn_n', symObjAddr: 0x3550, symBinAddr: 0x19470, symSize: 0x440 } - - { offsetInCU: 0x1A90, offset: 0xC8060, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_28didFailProvisionalNavigation9withErrorySo05WKWebC0C_So12WKNavigationCSgs0L0_ptFTf4ndnn_n', symObjAddr: 0x3990, symBinAddr: 0x198B0, symSize: 0x420 } - - { offsetInCU: 0x1C61, offset: 0xC8231, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC10logJSError33_F9163AD9166938F8B4F54F28D02AA29FLLyySDySSypGFTf4nd_n', symObjAddr: 0x3DB0, symBinAddr: 0x19CD0, symSize: 0x910 } - - { offsetInCU: 0x21CF, offset: 0xC879F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC21userContentController_10didReceiveySo06WKUsergH0C_So15WKScriptMessageCtFTf4dnn_n', symObjAddr: 0x46C0, symBinAddr: 0x1A5E0, symSize: 0xED0 } - - { offsetInCU: 0x2676, offset: 0xC8C46, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_34runJavaScriptAlertPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nnncn_nTf4dndng_n', symObjAddr: 0x55F0, symBinAddr: 0x1B510, symSize: 0x2F0 } - - { offsetInCU: 0x2791, offset: 0xC8D61, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_36runJavaScriptConfirmPanelWithMessage16initiatedByFrame010completionE0ySo05WKWebC0C_SSSo11WKFrameInfoCySbctFTf4dndnn_n', symObjAddr: 0x58E0, symBinAddr: 0x1B800, symSize: 0x320 } - - { offsetInCU: 0x2889, offset: 0xC8E59, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctF019$sSo8NSStringCSgIeyQ12_SSSgIegg_TRSo0Y0CSgIeyBy_Tf1nnnncn_nTf4dnndng_n', symObjAddr: 0x5D00, symBinAddr: 0x1BBB0, symSize: 0xD60 } - - { offsetInCU: 0x2D77, offset: 0xC9347, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_06createbC4With3for14windowFeaturesSo05WKWebC0CSgAI_So0lC13ConfigurationCSo18WKNavigationActionCSo08WKWindowK0CtFTf4ddndd_n', symObjAddr: 0x6A60, symBinAddr: 0x1C910, symSize: 0x1E0 } - - { offsetInCU: 0x2DD7, offset: 0xC93A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC17contentControllerSo013WKUserContentG0CvpACTk', symObjAddr: 0x30, symBinAddr: 0x15F90, symSize: 0x60 } - - { offsetInCU: 0x2E0D, offset: 0xC93DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCMa', symObjAddr: 0x240, symBinAddr: 0x161A0, symSize: 0x20 } - - { offsetInCU: 0x3077, offset: 0xC9647, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TR', symObjAddr: 0x2710, symBinAddr: 0x18630, symSize: 0x40 } - - { offsetInCU: 0x30E3, offset: 0xC96B3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerCfETo', symObjAddr: 0x2A10, symBinAddr: 0x18930, symSize: 0x40 } - - { offsetInCU: 0x3112, offset: 0xC96E2, size: 0x8, addend: 0x0, symName: '_$sSo38UIApplicationOpenExternalURLOptionsKeyaABSHSCWl', symObjAddr: 0x2A50, symBinAddr: 0x18970, symSize: 0x40 } - - { offsetInCU: 0x320D, offset: 0xC97DD, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x55C0, symBinAddr: 0x1B4E0, symSize: 0x20 } - - { offsetInCU: 0x3221, offset: 0xC97F1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x55E0, symBinAddr: 0x1B500, symSize: 0x10 } - - { offsetInCU: 0x3240, offset: 0xC9810, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC03webC0_37runJavaScriptTextInputPanelWithPrompt07defaultJ016initiatedByFrame010completionE0ySo05WKWebC0C_S2SSgSo11WKFrameInfoCyAKctFySo11UITextFieldCcfU_TA', symObjAddr: 0x5C50, symBinAddr: 0x1BB40, symSize: 0x20 } - - { offsetInCU: 0x3254, offset: 0xC9824, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x5CA0, symBinAddr: 0x1BB90, symSize: 0x20 } - - { offsetInCU: 0x3273, offset: 0xC9843, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x6EF0, symBinAddr: 0x1CDA0, symSize: 0x10 } - - { offsetInCU: 0x3287, offset: 0xC9857, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwet', symObjAddr: 0x6F10, symBinAddr: 0x1CDB0, symSize: 0xB0 } - - { offsetInCU: 0x329B, offset: 0xC986B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwst', symObjAddr: 0x6FC0, symBinAddr: 0x1CE60, symSize: 0xE0 } - - { offsetInCU: 0x32AF, offset: 0xC987F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwug', symObjAddr: 0x70A0, symBinAddr: 0x1CF40, symSize: 0x20 } - - { offsetInCU: 0x32C3, offset: 0xC9893, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwup', symObjAddr: 0x70C0, symBinAddr: 0x1CF60, symSize: 0x10 } - - { offsetInCU: 0x32D7, offset: 0xC98A7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOwui', symObjAddr: 0x70D0, symBinAddr: 0x1CF70, symSize: 0x20 } - - { offsetInCU: 0x32EB, offset: 0xC98BB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24WebViewDelegationHandlerC0bC12LoadingStateOMa', symObjAddr: 0x70F0, symBinAddr: 0x1CF90, symSize: 0x10 } - - { offsetInCU: 0x32FF, offset: 0xC98CF, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCSgIeyBy_SSSgIegg_TRTA', symObjAddr: 0x7120, symBinAddr: 0x1CFC0, symSize: 0x10 } - - { offsetInCU: 0x331E, offset: 0xC98EE, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x71E0, symBinAddr: 0x1D080, symSize: 0x20 } - - { offsetInCU: 0x3347, offset: 0xC9917, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0x7200, symBinAddr: 0x1D0A0, symSize: 0x10 } - - { offsetInCU: 0x34D6, offset: 0xC9AA6, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTg5', symObjAddr: 0x2900, symBinAddr: 0x18820, symSize: 0x60 } - - { offsetInCU: 0x4F, offset: 0xCA060, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19dateStringFormatter33_883E0F63E6283FEB7FEBC7F75A4BFDE5LLSo013NSISO8601DateD0Cvp', symObjAddr: 0x2970, symBinAddr: 0x76CF8, symSize: 0x0 } - - { offsetInCU: 0x5D, offset: 0xCA06E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSF', symObjAddr: 0x0, symBinAddr: 0x1D330, symSize: 0x100 } - - { offsetInCU: 0xB7, offset: 0xCA0C8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSStringContainerPAAE9getStringyS2S_SStF', symObjAddr: 0x100, symBinAddr: 0x1D430, symSize: 0x40 } - - { offsetInCU: 0x113, offset: 0xCA124, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getBoolySbSgSSF', symObjAddr: 0x140, symBinAddr: 0x1D470, symSize: 0x100 } - - { offsetInCU: 0x16D, offset: 0xCA17E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSStringContainerP9getStringyS2S_SStF', symObjAddr: 0x240, symBinAddr: 0x1D570, symSize: 0x10 } - - { offsetInCU: 0x189, offset: 0xCA19A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSBoolContainerP7getBoolySbSS_SbtF', symObjAddr: 0x250, symBinAddr: 0x1D580, symSize: 0x10 } - - { offsetInCU: 0x1A5, offset: 0xCA1B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSBoolContainerPAAE7getBoolySbSS_SbtF', symObjAddr: 0x260, symBinAddr: 0x1D590, symSize: 0x30 } - - { offsetInCU: 0x201, offset: 0xCA212, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14JSIntContainerP6getIntySiSS_SitF', symObjAddr: 0x290, symBinAddr: 0x1D5C0, symSize: 0x10 } - - { offsetInCU: 0x21D, offset: 0xCA22E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14JSIntContainerPAAE6getIntySiSS_SitF', symObjAddr: 0x2A0, symBinAddr: 0x1D5D0, symSize: 0x30 } - - { offsetInCU: 0x279, offset: 0xCA28A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSFloatContainerP8getFloatySfSS_SftF', symObjAddr: 0x2D0, symBinAddr: 0x1D600, symSize: 0x10 } - - { offsetInCU: 0x295, offset: 0xCA2A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSFloatContainerPAAE8getFloatySfSS_SftF', symObjAddr: 0x2E0, symBinAddr: 0x1D610, symSize: 0x30 } - - { offsetInCU: 0x2F1, offset: 0xCA302, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSDoubleContainerP9getDoubleySdSS_SdtF', symObjAddr: 0x310, symBinAddr: 0x1D640, symSize: 0x10 } - - { offsetInCU: 0x30D, offset: 0xCA31E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSDoubleContainerPAAE9getDoubleySdSS_SdtF', symObjAddr: 0x320, symBinAddr: 0x1D650, symSize: 0x30 } - - { offsetInCU: 0x369, offset: 0xCA37A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSDateContainerP7getDatey10Foundation0E0VSS_AGtF', symObjAddr: 0x350, symBinAddr: 0x1D680, symSize: 0x10 } - - { offsetInCU: 0x385, offset: 0xCA396, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15JSDateContainerPAAE7getDatey10Foundation0E0VSS_AGtF', symObjAddr: 0x360, symBinAddr: 0x1D690, symSize: 0x110 } - - { offsetInCU: 0x3E2, offset: 0xCA3F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerP8getArrayySayAA7JSValue_pGSS_AFtF', symObjAddr: 0x470, symBinAddr: 0x1D7A0, symSize: 0x10 } - - { offsetInCU: 0x3FE, offset: 0xCA40F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerPAAE8getArrayySayAA7JSValue_pGSS_AFtF', symObjAddr: 0x480, symBinAddr: 0x1D7B0, symSize: 0x30 } - - { offsetInCU: 0x45A, offset: 0xCA46B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerP8getArrayySayqd__GSgSS_qd__mtlF', symObjAddr: 0x4B0, symBinAddr: 0x1D7E0, symSize: 0x20 } - - { offsetInCU: 0x476, offset: 0xCA487, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSArrayContainerPAAE8getArrayySayqd__GSgSS_qd__mtlF', symObjAddr: 0x4D0, symBinAddr: 0x1D800, symSize: 0x50 } - - { offsetInCU: 0x4DC, offset: 0xCA4ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSObjectContainerP9getObjectySDySSAA7JSValue_pGSS_AFtF', symObjAddr: 0x520, symBinAddr: 0x1D850, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0xCA509, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17JSObjectContainerPAAE9getObjectySDySSAA7JSValue_pGSS_AFtF', symObjAddr: 0x530, symBinAddr: 0x1D860, symSize: 0x30 } - - { offsetInCU: 0x554, offset: 0xCA565, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE8getValueyAA0B0_pSgSSF', symObjAddr: 0x560, symBinAddr: 0x1D890, symSize: 0xA0 } - - { offsetInCU: 0x5AE, offset: 0xCA5BF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE6getAnyyypSgSSF', symObjAddr: 0x600, symBinAddr: 0x1D930, symSize: 0x90 } - - { offsetInCU: 0x5FA, offset: 0xCA60B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE6getIntySiSgSSF', symObjAddr: 0x690, symBinAddr: 0x1D9C0, symSize: 0x100 } - - { offsetInCU: 0x654, offset: 0xCA665, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE8getFloatySfSgSSF', symObjAddr: 0x790, symBinAddr: 0x1DAC0, symSize: 0x220 } - - { offsetInCU: 0x6D0, offset: 0xCA6E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSF', symObjAddr: 0x9B0, symBinAddr: 0x1DCE0, symSize: 0x100 } - - { offsetInCU: 0x72A, offset: 0xCA73B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE7getDatey10Foundation0E0VSgSSF', symObjAddr: 0xAB0, symBinAddr: 0x1DDE0, symSize: 0x350 } - - { offsetInCU: 0x7A8, offset: 0xCA7B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSo12NSDictionaryCSg_SbtFZ', symObjAddr: 0xF50, symBinAddr: 0x1E280, symSize: 0xD0 } - - { offsetInCU: 0x810, offset: 0xCA821, size: 0x8, addend: 0x0, symName: '_$s9Capacitor15coerceToJSValue33_883E0F63E6283FEB7FEBC7F75A4BFDE5LL_15formattingDatesAA0D0_pSgypSg_SbtF', symObjAddr: 0x1020, symBinAddr: 0x1E350, symSize: 0xC50 } - - { offsetInCU: 0x10A7, offset: 0xCB0B8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZ', symObjAddr: 0x1C70, symBinAddr: 0x1EFA0, symSize: 0x10 } - - { offsetInCU: 0x10E4, offset: 0xCB0F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO20coerceArrayToJSArray_24formattingDatesAsStringsSayAA7JSValue_pGSgSayypGSg_SbtFZ', symObjAddr: 0x1C80, symBinAddr: 0x1EFB0, symSize: 0x1A0 } - - { offsetInCU: 0x1337, offset: 0xCB348, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19dateStringFormatter33_883E0F63E6283FEB7FEBC7F75A4BFDE5LL_WZ', symObjAddr: 0x1E20, symBinAddr: 0x1F150, symSize: 0x30 } - - { offsetInCU: 0x137C, offset: 0xCB38D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSStringContainerA2cDP9getStringyS2S_SStFTW', symObjAddr: 0x1E50, symBinAddr: 0x1F180, symSize: 0x10 } - - { offsetInCU: 0x1398, offset: 0xCB3A9, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSStringContainerA2cDP9getStringySSSgSSFTW', symObjAddr: 0x1E60, symBinAddr: 0x1F190, symSize: 0x20 } - - { offsetInCU: 0x13B4, offset: 0xCB3C5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSBoolContainerA2cDP7getBoolySbSS_SbtFTW', symObjAddr: 0x1E80, symBinAddr: 0x1F1B0, symSize: 0x10 } - - { offsetInCU: 0x13D0, offset: 0xCB3E1, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSBoolContainerA2cDP7getBoolySbSgSSFTW', symObjAddr: 0x1E90, symBinAddr: 0x1F1C0, symSize: 0x20 } - - { offsetInCU: 0x13EC, offset: 0xCB3FD, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor14JSIntContainerA2cDP6getIntySiSS_SitFTW', symObjAddr: 0x1EB0, symBinAddr: 0x1F1E0, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0xCB419, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor14JSIntContainerA2cDP6getIntySiSgSSFTW', symObjAddr: 0x1EC0, symBinAddr: 0x1F1F0, symSize: 0x20 } - - { offsetInCU: 0x1424, offset: 0xCB435, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSFloatContainerA2cDP8getFloatySfSS_SftFTW', symObjAddr: 0x1EE0, symBinAddr: 0x1F210, symSize: 0x10 } - - { offsetInCU: 0x1440, offset: 0xCB451, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSFloatContainerA2cDP8getFloatySfSgSSFTW', symObjAddr: 0x1EF0, symBinAddr: 0x1F220, symSize: 0x30 } - - { offsetInCU: 0x145C, offset: 0xCB46D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSDoubleContainerA2cDP9getDoubleySdSS_SdtFTW', symObjAddr: 0x1F20, symBinAddr: 0x1F250, symSize: 0x10 } - - { offsetInCU: 0x1478, offset: 0xCB489, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSDoubleContainerA2cDP9getDoubleySdSgSSFTW', symObjAddr: 0x1F30, symBinAddr: 0x1F260, symSize: 0x20 } - - { offsetInCU: 0x1494, offset: 0xCB4A5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSDateContainerA2cDP7getDatey10Foundation0G0VSS_AItFTW', symObjAddr: 0x1F50, symBinAddr: 0x1F280, symSize: 0x10 } - - { offsetInCU: 0x14B0, offset: 0xCB4C1, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor15JSDateContainerA2cDP7getDatey10Foundation0G0VSgSSFTW', symObjAddr: 0x1F60, symBinAddr: 0x1F290, symSize: 0x20 } - - { offsetInCU: 0x14CC, offset: 0xCB4DD, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayAC7JSValue_pGSS_AHtFTW', symObjAddr: 0x1F80, symBinAddr: 0x1F2B0, symSize: 0x10 } - - { offsetInCU: 0x14E8, offset: 0xCB4F9, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayqd__GSgSS_qd__mtlFTW', symObjAddr: 0x1F90, symBinAddr: 0x1F2C0, symSize: 0x20 } - - { offsetInCU: 0x1504, offset: 0xCB515, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSArrayContainerA2cDP8getArrayySayAC7JSValue_pGSgSSFTW', symObjAddr: 0x1FB0, symBinAddr: 0x1F2E0, symSize: 0x20 } - - { offsetInCU: 0x1520, offset: 0xCB531, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSObjectContainerA2cDP9getObjectySDySSAC7JSValue_pGSS_AHtFTW', symObjAddr: 0x1FD0, symBinAddr: 0x1F300, symSize: 0x10 } - - { offsetInCU: 0x153C, offset: 0xCB54D, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor17JSObjectContainerA2cDP9getObjectySDySSAC7JSValue_pGSgSSFTW', symObjAddr: 0x1FE0, symBinAddr: 0x1F310, symSize: 0x20 } - - { offsetInCU: 0x156E, offset: 0xCB57F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x2000, symBinAddr: 0x1F330, symSize: 0xE0 } - - { offsetInCU: 0x15AD, offset: 0xCB5BE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x20E0, symBinAddr: 0x1F410, symSize: 0x180 } - - { offsetInCU: 0x1635, offset: 0xCB646, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x2260, symBinAddr: 0x1F590, symSize: 0xC0 } - - { offsetInCU: 0x1678, offset: 0xCB689, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x2320, symBinAddr: 0x1F650, symSize: 0x60 } - - { offsetInCU: 0x16BA, offset: 0xCB6CB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOb', symObjAddr: 0x23F0, symBinAddr: 0x1F6B0, symSize: 0x40 } - - { offsetInCU: 0x16CE, offset: 0xCB6DF, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo38UIApplicationOpenExternalURLOptionsKeya_Tg5', symObjAddr: 0x2490, symBinAddr: 0x1F720, symSize: 0x80 } - - { offsetInCU: 0x1777, offset: 0xCB788, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x2510, symBinAddr: 0x1F7A0, symSize: 0x30 } - - { offsetInCU: 0x17A4, offset: 0xCB7B5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesO26coerceDictionaryToJSObject_24formattingDatesAsStringsSDySSAA7JSValue_pGSgSDys11AnyHashableVypGSg_SbtFZTf4nnd_n', symObjAddr: 0x2540, symBinAddr: 0x1F7D0, symSize: 0xC0 } - - { offsetInCU: 0x17E3, offset: 0xCB7F4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pWOb', symObjAddr: 0x2660, symBinAddr: 0x1F8C0, symSize: 0x20 } - - { offsetInCU: 0x17F7, offset: 0xCB808, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSTypesOMa', symObjAddr: 0x27C0, symBinAddr: 0x1FA20, symSize: 0x10 } - - { offsetInCU: 0x180B, offset: 0xCB81C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x27D0, symBinAddr: 0x1FA30, symSize: 0x30 } - - { offsetInCU: 0x181F, offset: 0xCB830, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x2800, symBinAddr: 0x1FA60, symSize: 0x30 } - - { offsetInCU: 0x1833, offset: 0xCB844, size: 0x8, addend: 0x0, symName: '_$s10Foundation25NSFastEnumerationIteratorVACStAAWl', symObjAddr: 0x28C0, symBinAddr: 0x1FAC0, symSize: 0x40 } - - { offsetInCU: 0x4F, offset: 0xCBF5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13tmpVCAppeared10Foundation12NotificationVvpZ', symObjAddr: 0x39780, symBinAddr: 0x79C18, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xCBF79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultSchemeSSvpZ', symObjAddr: 0xD0D0, symBinAddr: 0x76D30, symSize: 0x0 } - - { offsetInCU: 0x83, offset: 0xCBF93, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgZ', symObjAddr: 0x0, symBinAddr: 0x1FB60, symSize: 0x10 } - - { offsetInCU: 0xCC, offset: 0xCBFDC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfC', symObjAddr: 0x10, symBinAddr: 0x1FB70, symSize: 0xA0 } - - { offsetInCU: 0x152, offset: 0xCC062, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvgTo', symObjAddr: 0xB0, symBinAddr: 0x1FC10, symSize: 0xA0 } - - { offsetInCU: 0x19D, offset: 0xCC0AD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7webViewSo05WKWebD0CSgvg', symObjAddr: 0x150, symBinAddr: 0x1FCB0, symSize: 0x70 } - - { offsetInCU: 0x1F2, offset: 0xCC102, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvgTo', symObjAddr: 0x1C0, symBinAddr: 0x1FD20, symSize: 0x20 } - - { offsetInCU: 0x22D, offset: 0xCC13D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19autoRegisterPluginsSbvg', symObjAddr: 0x1E0, symBinAddr: 0x1FD40, symSize: 0x20 } - - { offsetInCU: 0x24A, offset: 0xCC15A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM', symObjAddr: 0x280, symBinAddr: 0x1FDE0, symSize: 0x40 } - - { offsetInCU: 0x279, offset: 0xCC189, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18notificationRouterAA012NotificationD0CvM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x1FE20, symSize: 0x10 } - - { offsetInCU: 0x2A4, offset: 0xCC1B4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isSimEnvironmentSbvgTo', symObjAddr: 0x2D0, symBinAddr: 0x1FE30, symSize: 0x10 } - - { offsetInCU: 0x2C0, offset: 0xCC1D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isSimEnvironmentSbvg', symObjAddr: 0x2E0, symBinAddr: 0x1FE40, symSize: 0x10 } - - { offsetInCU: 0x2EB, offset: 0xCC1FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvgTo', symObjAddr: 0x2F0, symBinAddr: 0x1FE50, symSize: 0x10 } - - { offsetInCU: 0x307, offset: 0xCC217, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16isDevEnvironmentSbvg', symObjAddr: 0x300, symBinAddr: 0x1FE60, symSize: 0x10 } - - { offsetInCU: 0x332, offset: 0xCC242, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0VvgTo', symObjAddr: 0x310, symBinAddr: 0x1FE70, symSize: 0x40 } - - { offsetInCU: 0x36C, offset: 0xCC27C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18userInterfaceStyleSo06UIUserdE0Vvg', symObjAddr: 0x350, symBinAddr: 0x1FEB0, symSize: 0xC0 } - - { offsetInCU: 0x3E1, offset: 0xCC2F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvgTo', symObjAddr: 0x410, symBinAddr: 0x1FF70, symSize: 0xC0 } - - { offsetInCU: 0x444, offset: 0xCC354, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvg', symObjAddr: 0x4D0, symBinAddr: 0x20030, symSize: 0x90 } - - { offsetInCU: 0x49B, offset: 0xCC3AB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsTo', symObjAddr: 0x560, symBinAddr: 0x200C0, symSize: 0x40 } - - { offsetInCU: 0x4B7, offset: 0xCC3C7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvs', symObjAddr: 0x5A0, symBinAddr: 0x20100, symSize: 0x200 } - - { offsetInCU: 0x51F, offset: 0xCC42F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsyyScMYccfU_', symObjAddr: 0x840, symBinAddr: 0x203A0, symSize: 0xE0 } - - { offsetInCU: 0x58F, offset: 0xCC49F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvM', symObjAddr: 0x920, symBinAddr: 0x20480, symSize: 0xC0 } - - { offsetInCU: 0x60D, offset: 0xCC51D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvM.resume.0', symObjAddr: 0x9E0, symBinAddr: 0x20540, symSize: 0x30 } - - { offsetInCU: 0x656, offset: 0xCC566, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvgTo', symObjAddr: 0xA10, symBinAddr: 0x20570, symSize: 0xC0 } - - { offsetInCU: 0x6B9, offset: 0xCC5C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0Vvg', symObjAddr: 0xAD0, symBinAddr: 0x20630, symSize: 0x90 } - - { offsetInCU: 0x710, offset: 0xCC620, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsTo', symObjAddr: 0xB60, symBinAddr: 0x206C0, symSize: 0x40 } - - { offsetInCU: 0x72E, offset: 0xCC63E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsyyScMYccfU_', symObjAddr: 0xC60, symBinAddr: 0x207C0, symSize: 0xE0 } - - { offsetInCU: 0x774, offset: 0xCC684, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM', symObjAddr: 0xD40, symBinAddr: 0x208A0, symSize: 0xC0 } - - { offsetInCU: 0x7F2, offset: 0xCC702, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvM.resume.0', symObjAddr: 0xE00, symBinAddr: 0x20960, symSize: 0x30 } - - { offsetInCU: 0x81D, offset: 0xCC72D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvgTo', symObjAddr: 0xE30, symBinAddr: 0x20990, symSize: 0x40 } - - { offsetInCU: 0x839, offset: 0xCC749, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0Vvg', symObjAddr: 0xE70, symBinAddr: 0x209D0, symSize: 0xC0 } - - { offsetInCU: 0x8B0, offset: 0xCC7C0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsTo', symObjAddr: 0xF30, symBinAddr: 0x20A90, symSize: 0x40 } - - { offsetInCU: 0x8CE, offset: 0xCC7DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsyyScMYccfU_', symObjAddr: 0x11A0, symBinAddr: 0x20D00, symSize: 0xE0 } - - { offsetInCU: 0x932, offset: 0xCC842, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM', symObjAddr: 0x1280, symBinAddr: 0x20DE0, symSize: 0xF0 } - - { offsetInCU: 0x9CE, offset: 0xCC8DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvM.resume.0', symObjAddr: 0x1370, symBinAddr: 0x20ED0, symSize: 0x30 } - - { offsetInCU: 0x9F9, offset: 0xCC909, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13capacitorSiteSSvgZ', symObjAddr: 0x1420, symBinAddr: 0x20F80, symSize: 0x30 } - - { offsetInCU: 0xA24, offset: 0xCC934, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19fileStartIdentifierSSvgZ', symObjAddr: 0x1450, symBinAddr: 0x20FB0, symSize: 0x30 } - - { offsetInCU: 0xA4F, offset: 0xCC95F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultSchemeSSvgZ', symObjAddr: 0x14B0, symBinAddr: 0x21010, symSize: 0x50 } - - { offsetInCU: 0xAB0, offset: 0xCC9C0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvg', symObjAddr: 0x1600, symBinAddr: 0x21160, symSize: 0x40 } - - { offsetInCU: 0xACD, offset: 0xCC9DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvgTo', symObjAddr: 0x1640, symBinAddr: 0x211A0, symSize: 0xA0 } - - { offsetInCU: 0xB18, offset: 0xCCA28, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14viewControllerSo06UIViewD0CSgvg', symObjAddr: 0x16E0, symBinAddr: 0x21240, symSize: 0x70 } - - { offsetInCU: 0xB4F, offset: 0xCCA5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC6configSo24CAPInstanceConfigurationCvM', symObjAddr: 0x1940, symBinAddr: 0x214A0, symSize: 0x40 } - - { offsetInCU: 0xB7E, offset: 0xCCA8E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyF', symObjAddr: 0x1980, symBinAddr: 0x214E0, symSize: 0x70 } - - { offsetInCU: 0xBF3, offset: 0xCCB03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10getWebViewSo05WKWebE0CSgyFTo', symObjAddr: 0x19F0, symBinAddr: 0x21550, symSize: 0xA0 } - - { offsetInCU: 0xC56, offset: 0xCCB66, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11isSimulatorSbyF', symObjAddr: 0x1A90, symBinAddr: 0x215F0, symSize: 0x10 } - - { offsetInCU: 0xC81, offset: 0xCCB91, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11isSimulatorSbyFTo', symObjAddr: 0x1AA0, symBinAddr: 0x21600, symSize: 0x10 } - - { offsetInCU: 0xC9D, offset: 0xCCBAD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9isDevModeSbyF', symObjAddr: 0x1AB0, symBinAddr: 0x21610, symSize: 0x10 } - - { offsetInCU: 0xCC8, offset: 0xCCBD8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9isDevModeSbyFTo', symObjAddr: 0x1AC0, symBinAddr: 0x21620, symSize: 0x10 } - - { offsetInCU: 0xCE4, offset: 0xCCBF4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyF', symObjAddr: 0x1AD0, symBinAddr: 0x21630, symSize: 0x90 } - - { offsetInCU: 0xD71, offset: 0xCCC81, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19getStatusBarVisibleSbyFTo', symObjAddr: 0x1B60, symBinAddr: 0x216C0, symSize: 0xC0 } - - { offsetInCU: 0xDEC, offset: 0xCCCFC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19setStatusBarVisibleyySbF', symObjAddr: 0x1C20, symBinAddr: 0x21780, symSize: 0x10 } - - { offsetInCU: 0xE27, offset: 0xCCD37, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyF', symObjAddr: 0x1C30, symBinAddr: 0x21790, symSize: 0x90 } - - { offsetInCU: 0xEB4, offset: 0xCCDC4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17getStatusBarStyleSo08UIStatuseF0VyFTo', symObjAddr: 0x1CC0, symBinAddr: 0x21820, symSize: 0xC0 } - - { offsetInCU: 0xF2F, offset: 0xCCE3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setStatusBarStyleyySo08UIStatuseF0VF', symObjAddr: 0x1D80, symBinAddr: 0x218E0, symSize: 0x10 } - - { offsetInCU: 0xF88, offset: 0xCCE98, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyF', symObjAddr: 0x1D90, symBinAddr: 0x218F0, symSize: 0xC0 } - - { offsetInCU: 0x1007, offset: 0xCCF17, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21getUserInterfaceStyleSo06UIUsereF0VyFTo', symObjAddr: 0x1E50, symBinAddr: 0x219B0, symSize: 0x40 } - - { offsetInCU: 0x1041, offset: 0xCCF51, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11getLocalUrlSSyF', symObjAddr: 0x1E90, symBinAddr: 0x219F0, symSize: 0xB0 } - - { offsetInCU: 0x109C, offset: 0xCCFAC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11getLocalUrlSSyFTo', symObjAddr: 0x1F40, symBinAddr: 0x21AA0, symSize: 0xF0 } - - { offsetInCU: 0x10EF, offset: 0xCCFFF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC21setStatusBarAnimationyySo08UIStatuseF0VF', symObjAddr: 0x2030, symBinAddr: 0x21B90, symSize: 0x10 } - - { offsetInCU: 0x1172, offset: 0xCD082, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setServerBasePathyySSF', symObjAddr: 0x2040, symBinAddr: 0x21BA0, symSize: 0x230 } - - { offsetInCU: 0x125F, offset: 0xCD16F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfc', symObjAddr: 0x2290, symBinAddr: 0x21DF0, symSize: 0xA0 } - - { offsetInCU: 0x12B3, offset: 0xCD1C3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_', symObjAddr: 0x2330, symBinAddr: 0x21E90, symSize: 0x60 } - - { offsetInCU: 0x1313, offset: 0xCD223, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfD', symObjAddr: 0x2420, symBinAddr: 0x21F80, symSize: 0x210 } - - { offsetInCU: 0x14AD, offset: 0xCD3BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfDTo', symObjAddr: 0x2630, symBinAddr: 0x22190, symSize: 0x20 } - - { offsetInCU: 0x14F6, offset: 0xCD406, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12exportCoreJS8localUrlySS_tF', symObjAddr: 0x2730, symBinAddr: 0x22290, symSize: 0x130 } - - { offsetInCU: 0x1655, offset: 0xCD565, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyF', symObjAddr: 0x2860, symBinAddr: 0x223C0, symSize: 0x3D0 } - - { offsetInCU: 0x1937, offset: 0xCD847, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC15registerPluginsyyF', symObjAddr: 0x2CA0, symBinAddr: 0x22800, symSize: 0x450 } - - { offsetInCU: 0x1DA6, offset: 0xCDCB6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmF', symObjAddr: 0x30F0, symBinAddr: 0x22C50, symSize: 0x1B0 } - - { offsetInCU: 0x1EBF, offset: 0xCDDCF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18registerPluginTypeyySo9CAPPluginCmFTo', symObjAddr: 0x32A0, symBinAddr: 0x22E00, symSize: 0x40 } - - { offsetInCU: 0x1F17, offset: 0xCDE27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCF', symObjAddr: 0x32E0, symBinAddr: 0x22E40, symSize: 0x470 } - - { offsetInCU: 0x222E, offset: 0xCE13E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerPluginInstanceyySo9CAPPluginCFTo', symObjAddr: 0x3750, symBinAddr: 0x232B0, symSize: 0x50 } - - { offsetInCU: 0x224A, offset: 0xCE15A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10loadPlugin4typeSo010CAPBridgedD0_So9CAPPluginCXcSgAHm_tF', symObjAddr: 0x37A0, symBinAddr: 0x23300, symSize: 0x240 } - - { offsetInCU: 0x243D, offset: 0xCE34D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC6plugin8withNameSo9CAPPluginCSgSS_tF', symObjAddr: 0x39E0, symBinAddr: 0x23540, symSize: 0xC0 } - - { offsetInCU: 0x24DF, offset: 0xCE3EF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CF', symObjAddr: 0x3AC0, symBinAddr: 0x23620, symSize: 0xA0 } - - { offsetInCU: 0x257A, offset: 0xCE48A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8saveCallyySo09CAPPluginD0CFTo', symObjAddr: 0x3B60, symBinAddr: 0x236C0, symSize: 0xE0 } - - { offsetInCU: 0x2608, offset: 0xCE518, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9savedCall6withIDSo09CAPPluginD0CSgSS_tF', symObjAddr: 0x3C40, symBinAddr: 0x237A0, symSize: 0xC0 } - - { offsetInCU: 0x2673, offset: 0xCE583, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CF', symObjAddr: 0x3D20, symBinAddr: 0x23880, symSize: 0x60 } - - { offsetInCU: 0x26DD, offset: 0xCE5ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCallyySo09CAPPluginD0CFTo', symObjAddr: 0x3D80, symBinAddr: 0x238E0, symSize: 0xA0 } - - { offsetInCU: 0x2733, offset: 0xCE643, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCall6withIDySS_tF', symObjAddr: 0x3E20, symBinAddr: 0x23980, symSize: 0xF0 } - - { offsetInCU: 0x2847, offset: 0xCE757, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12getSavedCallySo09CAPPluginE0CSgSSF', symObjAddr: 0x3F30, symBinAddr: 0x23A90, symSize: 0xC0 } - - { offsetInCU: 0x2911, offset: 0xCE821, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC11releaseCall10callbackIdySS_tF', symObjAddr: 0x4070, symBinAddr: 0x23BD0, symSize: 0xF0 } - - { offsetInCU: 0x2A9A, offset: 0xCE9AA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22registerCordovaPluginsyyF', symObjAddr: 0x4180, symBinAddr: 0x23CE0, symSize: 0x3E0 } - - { offsetInCU: 0x2CAA, offset: 0xCEBBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC17setupWebDebugging33_B558F97FDDF7E6D98578814FFB110E95LL13configurationySo24CAPInstanceConfigurationC_tF', symObjAddr: 0x4560, symBinAddr: 0x240C0, symSize: 0x180 } - - { offsetInCU: 0x2E22, offset: 0xCED32, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tF', symObjAddr: 0x46E0, symBinAddr: 0x24240, symSize: 0xBE0 } - - { offsetInCU: 0x38D9, offset: 0xCF7E9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_', symObjAddr: 0x52C0, symBinAddr: 0x24E20, symSize: 0x330 } - - { offsetInCU: 0x3A03, offset: 0xCF913, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA19CAPPluginCallResultCSg_So0fG0CSgtcfU_', symObjAddr: 0x55F0, symBinAddr: 0x25150, symSize: 0x2C0 } - - { offsetInCU: 0x3B00, offset: 0xCFA10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA18CAPPluginCallErrorCSgcfU0_', symObjAddr: 0x58B0, symBinAddr: 0x25410, symSize: 0x140 } - - { offsetInCU: 0x3C11, offset: 0xCFB21, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC19handleCordovaJSCall4callyAA0E0V_tF', symObjAddr: 0x5A20, symBinAddr: 0x25580, symSize: 0x650 } - - { offsetInCU: 0x3FC1, offset: 0xCFED1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFyyScMYccfU_', symObjAddr: 0x6070, symBinAddr: 0x25BD0, symSize: 0x300 } - - { offsetInCU: 0x4306, offset: 0xD0216, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFyyScMYccfU_', symObjAddr: 0x6420, symBinAddr: 0x25F80, symSize: 0x2C0 } - - { offsetInCU: 0x45D3, offset: 0xD04E3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStF', symObjAddr: 0x67C0, symBinAddr: 0x26320, symSize: 0x370 } - - { offsetInCU: 0x4840, offset: 0xD0750, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStFTo', symObjAddr: 0x6B40, symBinAddr: 0x266A0, symSize: 0x80 } - - { offsetInCU: 0x485C, offset: 0xD076C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4eval2jsySS_tF', symObjAddr: 0x6BC0, symBinAddr: 0x26720, symSize: 0x1F0 } - - { offsetInCU: 0x48CA, offset: 0xD07DA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStF', symObjAddr: 0x7090, symBinAddr: 0x26BF0, symSize: 0xE0 } - - { offsetInCU: 0x4A5D, offset: 0xD096D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6targetySS_SStFTo', symObjAddr: 0x7170, symBinAddr: 0x26CD0, symSize: 0x80 } - - { offsetInCU: 0x4A79, offset: 0xD0989, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14triggerJSEvent9eventName6target4dataySS_S2StF', symObjAddr: 0x71F0, symBinAddr: 0x26D50, symSize: 0x110 } - - { offsetInCU: 0x4C9D, offset: 0xD0BAD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventNameySS_tF', symObjAddr: 0x7320, symBinAddr: 0x26E80, symSize: 0x20 } - - { offsetInCU: 0x4CDD, offset: 0xD0BED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC20triggerWindowJSEvent9eventName4dataySS_SStF', symObjAddr: 0x7360, symBinAddr: 0x26EC0, symSize: 0x30 } - - { offsetInCU: 0x4D2E, offset: 0xD0C3E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventNameySS_tF', symObjAddr: 0x73B0, symBinAddr: 0x26F10, symSize: 0x20 } - - { offsetInCU: 0x4D6E, offset: 0xD0C7E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC22triggerDocumentJSEvent9eventName4dataySS_SStF', symObjAddr: 0x7460, symBinAddr: 0x26FC0, symSize: 0x30 } - - { offsetInCU: 0x4DBF, offset: 0xD0CCF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStF', symObjAddr: 0x7540, symBinAddr: 0x270A0, symSize: 0x220 } - - { offsetInCU: 0x4E3D, offset: 0xD0D4D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_', symObjAddr: 0x7760, symBinAddr: 0x272C0, symSize: 0x1B0 } - - { offsetInCU: 0x5025, offset: 0xD0F35, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_yypSg_s5Error_pSgtcfU_', symObjAddr: 0x7910, symBinAddr: 0x27470, symSize: 0xF0 } - - { offsetInCU: 0x5139, offset: 0xD1049, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC8localURL07fromWebD010Foundation0D0VSgAI_tF', symObjAddr: 0x7A00, symBinAddr: 0x27560, symSize: 0x280 } - - { offsetInCU: 0x5212, offset: 0xD1122, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12portablePath12fromLocalURL10Foundation0G0VSgAI_tF', symObjAddr: 0x7CA0, symBinAddr: 0x27800, symSize: 0x1C0 } - - { offsetInCU: 0x528D, offset: 0xD119D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13showAlertWith5title7message11buttonTitleySS_S2StF', symObjAddr: 0x7F90, symBinAddr: 0x27AF0, symSize: 0x1B0 } - - { offsetInCU: 0x537C, offset: 0xD128C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtF', symObjAddr: 0x8210, symBinAddr: 0x27D70, symSize: 0x310 } - - { offsetInCU: 0x5505, offset: 0xD1415, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9presentVC_8animated10completionySo16UIViewControllerC_SbyycSgtFTo', symObjAddr: 0x8520, symBinAddr: 0x28080, symSize: 0xB0 } - - { offsetInCU: 0x5521, offset: 0xD1431, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtF', symObjAddr: 0x85D0, symBinAddr: 0x28130, symSize: 0x1F0 } - - { offsetInCU: 0x55F2, offset: 0xD1502, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9dismissVC8animated10completionySb_yycSgtFTo', symObjAddr: 0x87C0, symBinAddr: 0x28320, symSize: 0x90 } - - { offsetInCU: 0x560E, offset: 0xD151E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfC', symObjAddr: 0x8850, symBinAddr: 0x283B0, symSize: 0x20 } - - { offsetInCU: 0x562C, offset: 0xD153C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfc', symObjAddr: 0x8870, symBinAddr: 0x283D0, symSize: 0x30 } - - { offsetInCU: 0x568F, offset: 0xD159F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCACycfcTo', symObjAddr: 0x88A0, symBinAddr: 0x28400, symSize: 0x30 } - - { offsetInCU: 0x56F6, offset: 0xD1606, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFTf4enn_nAA0G0V_TB5', symObjAddr: 0xA420, symBinAddr: 0x29F80, symSize: 0x3F0 } - - { offsetInCU: 0x5873, offset: 0xD1783, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFTf4en_nAA0gE0V_TB5', symObjAddr: 0xA810, symBinAddr: 0x2A370, symSize: 0x290 } - - { offsetInCU: 0x58E2, offset: 0xD17F2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC10fatalErroryys0D0_p_sAE_ptFZTf4nnd_n', symObjAddr: 0xAAA0, symBinAddr: 0x2A600, symSize: 0x5C0 } - - { offsetInCU: 0x5CC9, offset: 0xD1BD9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcTf4nennnnn_nTf4gggggnn_n', symObjAddr: 0xB0F0, symBinAddr: 0x2AC50, symSize: 0x700 } - - { offsetInCU: 0x5E71, offset: 0xD1D81, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvpACTK', symObjAddr: 0x7A0, symBinAddr: 0x20300, symSize: 0xA0 } - - { offsetInCU: 0x5EBA, offset: 0xD1DCA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvpACTK', symObjAddr: 0xBC0, symBinAddr: 0x20720, symSize: 0xA0 } - - { offsetInCU: 0x5F2E, offset: 0xD1E3E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13tmpVCAppeared_WZ', symObjAddr: 0x13A0, symBinAddr: 0x20F00, symSize: 0x80 } - - { offsetInCU: 0x5F48, offset: 0xD1E58, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC13defaultScheme_WZ', symObjAddr: 0x1480, symBinAddr: 0x20FE0, symSize: 0x30 } - - { offsetInCU: 0x5F73, offset: 0xD1E83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvpACTK', symObjAddr: 0x1540, symBinAddr: 0x210A0, symSize: 0x60 } - - { offsetInCU: 0x5FA0, offset: 0xD1EB0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14bridgeDelegateAA09CAPBridgeD0_pSgvpACTk', symObjAddr: 0x15A0, symBinAddr: 0x21100, symSize: 0x60 } - - { offsetInCU: 0x602D, offset: 0xD1F3D, size: 0x8, addend: 0x0, symName: '_$s10Foundation12NotificationVIeghn_So14NSNotificationCIeyBhy_TR', symObjAddr: 0x2390, symBinAddr: 0x21EF0, symSize: 0x90 } - - { offsetInCU: 0x6168, offset: 0xD2078, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCfETo', symObjAddr: 0x2650, symBinAddr: 0x221B0, symSize: 0xE0 } - - { offsetInCU: 0x6466, offset: 0xD2376, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x59F0, symBinAddr: 0x25550, symSize: 0x30 } - - { offsetInCU: 0x6494, offset: 0xD23A4, size: 0x8, addend: 0x0, symName: '_$sypSgs5Error_pSgIegng_yXlSgSo7NSErrorCSgIeyByy_TR', symObjAddr: 0x6380, symBinAddr: 0x25EE0, symSize: 0xA0 } - - { offsetInCU: 0x64C2, offset: 0xD23D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCSgSo0bC0CSgIeggg_AdGIeyByy_TR', symObjAddr: 0x8A60, symBinAddr: 0x285C0, symSize: 0x80 } - - { offsetInCU: 0x64DA, offset: 0xD23EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCSgIegg_ADIeyBy_TR', symObjAddr: 0x8AE0, symBinAddr: 0x28640, symSize: 0x50 } - - { offsetInCU: 0x651E, offset: 0xD242E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x8B30, symBinAddr: 0x28690, symSize: 0x220 } - - { offsetInCU: 0x6591, offset: 0xD24A1, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0x8D50, symBinAddr: 0x288B0, symSize: 0x260 } - - { offsetInCU: 0x6614, offset: 0xD2524, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x8FB0, symBinAddr: 0x28B10, symSize: 0x220 } - - { offsetInCU: 0x66A3, offset: 0xD25B3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x91D0, symBinAddr: 0x28D30, symSize: 0x250 } - - { offsetInCU: 0x671B, offset: 0xD262B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So13CAPPluginCallCTg5', symObjAddr: 0x9420, symBinAddr: 0x28F80, symSize: 0x220 } - - { offsetInCU: 0x67B5, offset: 0xD26C5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_SSTg5', symObjAddr: 0x9640, symBinAddr: 0x291A0, symSize: 0x210 } - - { offsetInCU: 0x683D, offset: 0xD274D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0x9850, symBinAddr: 0x293B0, symSize: 0x220 } - - { offsetInCU: 0x68D1, offset: 0xD27E1, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x9A70, symBinAddr: 0x295D0, symSize: 0x240 } - - { offsetInCU: 0x695A, offset: 0xD286A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So13CAPPluginCallCTg5', symObjAddr: 0x9CB0, symBinAddr: 0x29810, symSize: 0x220 } - - { offsetInCU: 0x69D8, offset: 0xD28E8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo8NSObject_p_Tg5', symObjAddr: 0x9EF0, symBinAddr: 0x29A50, symSize: 0x220 } - - { offsetInCU: 0x6A49, offset: 0xD2959, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo8NSObject_p_Tg5', symObjAddr: 0xA380, symBinAddr: 0x29EE0, symSize: 0xA0 } - - { offsetInCU: 0x6B09, offset: 0xD2A19, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo9CAPPluginCm_Tg5Tf4d_n', symObjAddr: 0xB060, symBinAddr: 0x2ABC0, symSize: 0x70 } - - { offsetInCU: 0x6B4A, offset: 0xD2A5A, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo8NSObject_p_Tg5Tf4d_n', symObjAddr: 0xB0D0, symBinAddr: 0x2AC30, symSize: 0x20 } - - { offsetInCU: 0x6B73, offset: 0xD2A83, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC16statusBarVisibleSbvsyyScMYccfU_TA', symObjAddr: 0xB830, symBinAddr: 0x2B390, symSize: 0x20 } - - { offsetInCU: 0x6B87, offset: 0xD2A97, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xB850, symBinAddr: 0x2B3B0, symSize: 0x20 } - - { offsetInCU: 0x6B9B, offset: 0xD2AAB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xB870, symBinAddr: 0x2B3D0, symSize: 0x10 } - - { offsetInCU: 0x6BAF, offset: 0xD2ABF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14statusBarStyleSo08UIStatusdE0VvsyyScMYccfU_TA', symObjAddr: 0xB900, symBinAddr: 0x2B420, symSize: 0x20 } - - { offsetInCU: 0x6BC3, offset: 0xD2AD3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC18statusBarAnimationSo08UIStatusdE0VvsyyScMYccfU_TA', symObjAddr: 0xB940, symBinAddr: 0x2B460, symSize: 0x20 } - - { offsetInCU: 0x6BD7, offset: 0xD2AE7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeCMa', symObjAddr: 0xB990, symBinAddr: 0x2B480, symSize: 0x20 } - - { offsetInCU: 0x6BEB, offset: 0xD2AFB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC14evalWithPlugin_2jsySo9CAPPluginC_SStFyyScMYccfU_TA', symObjAddr: 0xB9C0, symBinAddr: 0x2B4B0, symSize: 0x30 } - - { offsetInCU: 0x6BFF, offset: 0xD2B0F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4eval2jsySS_tFyyScMYccfU_TA', symObjAddr: 0xBA30, symBinAddr: 0x2B520, symSize: 0x30 } - - { offsetInCU: 0x6C13, offset: 0xD2B23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC7logToJsyySS_SStFyyScMYccfU_TA', symObjAddr: 0xBAA0, symBinAddr: 0x2B590, symSize: 0x20 } - - { offsetInCU: 0x6C27, offset: 0xD2B37, size: 0x8, addend: 0x0, symName: '_$sSDySSypGWOs', symObjAddr: 0xC410, symBinAddr: 0x2BF00, symSize: 0x20 } - - { offsetInCU: 0x6C3B, offset: 0xD2B4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVWOr', symObjAddr: 0xC460, symBinAddr: 0x2BF20, symSize: 0x50 } - - { offsetInCU: 0x6C4F, offset: 0xD2B5F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVWOs', symObjAddr: 0xC4B0, symBinAddr: 0x2BF70, symSize: 0x50 } - - { offsetInCU: 0x6C63, offset: 0xD2B73, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_TA', symObjAddr: 0xC550, symBinAddr: 0x2C010, symSize: 0x20 } - - { offsetInCU: 0x6C77, offset: 0xD2B87, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA19CAPPluginCallResultCSg_So0fG0CSgtcfU_TA', symObjAddr: 0xC5B0, symBinAddr: 0x2C070, symSize: 0x20 } - - { offsetInCU: 0x6C8B, offset: 0xD2B9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC12handleJSCall4callyAA0D0V_tFyyYbcfU0_yAA18CAPPluginCallErrorCSgcfU0_TA', symObjAddr: 0xC630, symBinAddr: 0x2C0F0, symSize: 0x20 } - - { offsetInCU: 0x6C9F, offset: 0xD2BAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVWOs', symObjAddr: 0xC650, symBinAddr: 0x2C110, symSize: 0xA0 } - - { offsetInCU: 0x6CB3, offset: 0xD2BC3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVWOr', symObjAddr: 0xC750, symBinAddr: 0x2C210, symSize: 0xA0 } - - { offsetInCU: 0x6CC7, offset: 0xD2BD7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSResultProtocol_pWOb', symObjAddr: 0xC820, symBinAddr: 0x2C2E0, symSize: 0x20 } - - { offsetInCU: 0x6CDB, offset: 0xD2BEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC9toJsError5erroryAA16JSResultProtocol_p_tFyyScMYccfU_TA', symObjAddr: 0xC840, symBinAddr: 0x2C300, symSize: 0x20 } - - { offsetInCU: 0x6CEF, offset: 0xD2BFF, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0xC890, symBinAddr: 0x2C320, symSize: 0x30 } - - { offsetInCU: 0x6D03, offset: 0xD2C13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVWOs', symObjAddr: 0xC8C0, symBinAddr: 0x2C350, symSize: 0x60 } - - { offsetInCU: 0x6D17, offset: 0xD2C27, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVWOr', symObjAddr: 0xC970, symBinAddr: 0x2C400, symSize: 0x60 } - - { offsetInCU: 0x6D2B, offset: 0xD2C3B, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo12NSHTTPCookieC_Tg5Tf4d_n', symObjAddr: 0xC9F0, symBinAddr: 0x2C480, symSize: 0x60 } - - { offsetInCU: 0x6D84, offset: 0xD2C94, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4toJs6result4saveyAA16JSResultProtocol_p_SbtFyyScMYccfU_TA', symObjAddr: 0xCB20, symBinAddr: 0x2C5B0, symSize: 0x20 } - - { offsetInCU: 0x6D98, offset: 0xD2CA8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyFy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0xCBC0, symBinAddr: 0x2C630, symSize: 0x30 } - - { offsetInCU: 0x6DAC, offset: 0xD2CBC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC25setupCordovaCompatibilityyyFy10Foundation12NotificationVYbcfU0_TA', symObjAddr: 0xCBF0, symBinAddr: 0x2C660, symSize: 0x30 } - - { offsetInCU: 0x6DC0, offset: 0xD2CD0, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCC20, symBinAddr: 0x2C690, symSize: 0x20 } - - { offsetInCU: 0x6DD4, offset: 0xD2CE4, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TRTA', symObjAddr: 0xCC60, symBinAddr: 0x2C6D0, symSize: 0x10 } - - { offsetInCU: 0x6DE8, offset: 0xD2CF8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPBridgeDelegate_pSgXwWOh', symObjAddr: 0xCC70, symBinAddr: 0x2C6E0, symSize: 0x20 } - - { offsetInCU: 0x6DFC, offset: 0xD2D0C, size: 0x8, addend: 0x0, symName: ___swift_allocate_value_buffer, symObjAddr: 0xCC90, symBinAddr: 0x2C700, symSize: 0x40 } - - { offsetInCU: 0x6E10, offset: 0xD2D20, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A6BridgeC4with8delegate20cordovaConfiguration12assetHandler010delegationH019autoRegisterPluginsACSo011CAPInstanceF0C_AA17CAPBridgeDelegate_pSo15CDVConfigParserCAA012WebViewAssetH0CAA0rs10DelegationH0CSbtcfcy10Foundation12NotificationVYbcfU_TA', symObjAddr: 0xCDC0, symBinAddr: 0x2C810, symSize: 0x10 } - - { offsetInCU: 0x71A8, offset: 0xD30B8, size: 0x8, addend: 0x0, symName: '_$sSlsE6prefixy11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0xCA50, symBinAddr: 0x2C4E0, symSize: 0x90 } - - { offsetInCU: 0x7541, offset: 0xD3451, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC10callbackId7options7success5errorABSgSSSg_SDys11AnyHashableVypGSgy9Capacitor0aB6ResultCSg_AGtcSgyAM0aB5ErrorCSgcSgtcfcTO', symObjAddr: 0x88D0, symBinAddr: 0x28430, symSize: 0x190 } - - { offsetInCU: 0x27, offset: 0xD3769, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x0, symBinAddr: 0x2CB20, symSize: 0xB0 } - - { offsetInCU: 0x4B, offset: 0xD378D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x0, symBinAddr: 0x2CB20, symSize: 0xB0 } - - { offsetInCU: 0x69, offset: 0xD37AB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0xB0, symBinAddr: 0x2CBD0, symSize: 0xB0 } - - { offsetInCU: 0xE2, offset: 0xD3824, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x180, symBinAddr: 0x2CCA0, symSize: 0xD0 } - - { offsetInCU: 0x13B, offset: 0xD387D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfC', symObjAddr: 0x250, symBinAddr: 0x2CD70, symSize: 0x20 } - - { offsetInCU: 0x159, offset: 0xD389B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfc', symObjAddr: 0x270, symBinAddr: 0x2CD90, symSize: 0x30 } - - { offsetInCU: 0x194, offset: 0xD38D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCACycfcTo', symObjAddr: 0x2A0, symBinAddr: 0x2CDC0, symSize: 0x30 } - - { offsetInCU: 0x1CF, offset: 0xD3911, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCfD', symObjAddr: 0x2D0, symBinAddr: 0x2CDF0, symSize: 0x2B } - - { offsetInCU: 0x1FD, offset: 0xD393F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor17CAPInstancePluginCMa', symObjAddr: 0x160, symBinAddr: 0x2CC80, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0xD3A78, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfC', symObjAddr: 0x0, symBinAddr: 0x2CE20, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0xD3A96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tF', symObjAddr: 0x40, symBinAddr: 0x2CE60, symSize: 0x10 } - - { offsetInCU: 0x81, offset: 0xD3AAA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_', symObjAddr: 0x50, symBinAddr: 0x2CE70, symSize: 0x80 } - - { offsetInCU: 0xCC, offset: 0xD3AF5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_ySaySo12NSHTTPCookieCGcfU_', symObjAddr: 0xD0, symBinAddr: 0x2CEF0, symSize: 0x110 } - - { offsetInCU: 0x254, offset: 0xD3C7D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFTo', symObjAddr: 0x240, symBinAddr: 0x2D060, symSize: 0x50 } - - { offsetInCU: 0x286, offset: 0xD3CAF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfc', symObjAddr: 0x290, symBinAddr: 0x2D0B0, symSize: 0x30 } - - { offsetInCU: 0x2C1, offset: 0xD3CEA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCACycfcTo', symObjAddr: 0x2C0, symBinAddr: 0x2D0E0, symSize: 0x30 } - - { offsetInCU: 0x2FC, offset: 0xD3D25, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCfD', symObjAddr: 0x2F0, symBinAddr: 0x2D110, symSize: 0x30 } - - { offsetInCU: 0x329, offset: 0xD3D52, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFTf4nd_n', symObjAddr: 0x27F0, symBinAddr: 0x2F610, symSize: 0x1C0 } - - { offsetInCU: 0x43E, offset: 0xD3E67, size: 0x8, addend: 0x0, symName: '_$sSaySo12NSHTTPCookieCGIegg_So7NSArrayCIeyBy_TR', symObjAddr: 0x1E0, symBinAddr: 0x2D000, symSize: 0x60 } - - { offsetInCU: 0x480, offset: 0xD3EA9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12getServerUrl10Foundation3URLVSgyF', symObjAddr: 0x320, symBinAddr: 0x2D140, symSize: 0x1A0 } - - { offsetInCU: 0x4EF, offset: 0xD3F18, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC14isUrlSanitized33_9693F7733192184D77E45ECC2FDF6960LLySbSSF', symObjAddr: 0x4C0, symBinAddr: 0x2D2E0, symSize: 0x1C0 } - - { offsetInCU: 0x55D, offset: 0xD3F86, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12getServerUrly10Foundation3URLVSgSSSgF', symObjAddr: 0x680, symBinAddr: 0x2D4A0, symSize: 0x160 } - - { offsetInCU: 0x648, offset: 0xD4071, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC6encodeyS2SF', symObjAddr: 0x7E0, symBinAddr: 0x2D600, symSize: 0xA0 } - - { offsetInCU: 0x698, offset: 0xD40C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC6decodeyS2SF', symObjAddr: 0x880, symBinAddr: 0x2D6A0, symSize: 0x40 } - - { offsetInCU: 0x6F7, offset: 0xD4120, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yySS_SStF', symObjAddr: 0x8C0, symBinAddr: 0x2D6E0, symSize: 0x280 } - - { offsetInCU: 0x870, offset: 0xD4299, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtF', symObjAddr: 0xB40, symBinAddr: 0x2D960, symSize: 0x10 } - - { offsetInCU: 0x88C, offset: 0xD42B5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVF', symObjAddr: 0xB50, symBinAddr: 0x2D970, symSize: 0x10 } - - { offsetInCU: 0x8A8, offset: 0xD42D1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC10getCookiesSSyF', symObjAddr: 0xB60, symBinAddr: 0x2D980, symSize: 0x540 } - - { offsetInCU: 0xDCC, offset: 0xD47F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStF', symObjAddr: 0x10A0, symBinAddr: 0x2DEC0, symSize: 0x10 } - - { offsetInCU: 0xE15, offset: 0xD483E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVF', symObjAddr: 0x10B0, symBinAddr: 0x2DED0, symSize: 0x10 } - - { offsetInCU: 0xE5E, offset: 0xD4887, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15clearAllCookiesyyF', symObjAddr: 0x10C0, symBinAddr: 0x2DEE0, symSize: 0x10 } - - { offsetInCU: 0xEA7, offset: 0xD48D0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyF', symObjAddr: 0x10D0, symBinAddr: 0x2DEF0, symSize: 0x10 } - - { offsetInCU: 0xEBB, offset: 0xD48E4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCfd', symObjAddr: 0x1170, symBinAddr: 0x2DF90, symSize: 0x20 } - - { offsetInCU: 0xEF6, offset: 0xD491F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCfD', symObjAddr: 0x1190, symBinAddr: 0x2DFB0, symSize: 0x30 } - - { offsetInCU: 0xF41, offset: 0xD496A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyFTf4d_n', symObjAddr: 0x11C0, symBinAddr: 0x2DFE0, symSize: 0x370 } - - { offsetInCU: 0x10F4, offset: 0xD4B1D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15getCookiesAsMapySDyS2SG10Foundation3URLVFTf4nd_n', symObjAddr: 0x1530, symBinAddr: 0x2E350, symSize: 0x3B0 } - - { offsetInCU: 0x13B5, offset: 0xD4DDE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC03setB0yy10Foundation3URLV_S3SSgAHtFTf4nnnnnd_n', symObjAddr: 0x18E0, symBinAddr: 0x2E700, symSize: 0x2E0 } - - { offsetInCU: 0x16DC, offset: 0xD5105, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFTf4nnd_n', symObjAddr: 0x1D50, symBinAddr: 0x2EB70, symSize: 0x300 } - - { offsetInCU: 0x1788, offset: 0xD51B1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC12clearCookiesyy10Foundation3URLVFTf4nd_n', symObjAddr: 0x2050, symBinAddr: 0x2EE70, symSize: 0x3E0 } - - { offsetInCU: 0x194F, offset: 0xD5378, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC15clearAllCookiesyyFTf4d_n', symObjAddr: 0x2430, symBinAddr: 0x2F250, symSize: 0x3C0 } - - { offsetInCU: 0x1CCA, offset: 0xD56F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverCMa', symObjAddr: 0x29B0, symBinAddr: 0x2F7D0, symSize: 0x20 } - - { offsetInCU: 0x1CDE, offset: 0xD5707, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerCMa', symObjAddr: 0x2B20, symBinAddr: 0x2F830, symSize: 0x20 } - - { offsetInCU: 0x1CF2, offset: 0xD571B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2D00, symBinAddr: 0x2FA10, symSize: 0x20 } - - { offsetInCU: 0x1D06, offset: 0xD572F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2D20, symBinAddr: 0x2FA30, symSize: 0x10 } - - { offsetInCU: 0x1D1A, offset: 0xD5743, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x2D60, symBinAddr: 0x2FA70, symSize: 0x50 } - - { offsetInCU: 0x1D2E, offset: 0xD5757, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFyyScMYccfU0_TA', symObjAddr: 0x2DB0, symBinAddr: 0x2FAC0, symSize: 0x20 } - - { offsetInCU: 0x1D42, offset: 0xD576B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A13CookieManagerC20syncCookiesToWebViewyyFyyScMYccfU_TA', symObjAddr: 0x2DD0, symBinAddr: 0x2FAE0, symSize: 0x20 } - - { offsetInCU: 0x1D56, offset: 0xD577F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A16WKCookieObserverC16cookiesDidChange2inySo17WKHTTPCookieStoreC_tFyyScMYccfU_TA', symObjAddr: 0x2DF0, symBinAddr: 0x2FB00, symSize: 0x10 } - - { offsetInCU: 0x1D7B, offset: 0xD57A4, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x20, symBinAddr: 0x2CE40, symSize: 0x10 } - - { offsetInCU: 0x1D97, offset: 0xD57C0, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_So42UIScrollViewContentInsetAdjustmentBehaviorVt_Tg5', symObjAddr: 0x30, symBinAddr: 0x2CE50, symSize: 0x10 } - - { offsetInCU: 0x1EAF, offset: 0xD58D8, size: 0x8, addend: 0x0, symName: '_$sSTsE5first5where7ElementQzSgSbADKXE_tKFSaySo12NSHTTPCookieCG_Tg5070$s9Capacitor0A13CookieManagerC06deleteB0yy10Foundation3URLV_SStFSbSo12D6CXEfU_SSTf1cn_nTf4ng_n', symObjAddr: 0x1BC0, symBinAddr: 0x2E9E0, symSize: 0x190 } - - { offsetInCU: 0x27, offset: 0xD5CC1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ', symObjAddr: 0x0, symBinAddr: 0x2FC10, symSize: 0x1E0 } - - { offsetInCU: 0x4B, offset: 0xD5CE5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerC15getPortablePath4host3uriSSSgSS_10Foundation3URLVSgtFZ', symObjAddr: 0x0, symBinAddr: 0x2FC10, symSize: 0x1E0 } - - { offsetInCU: 0xF6, offset: 0xD5D90, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfC', symObjAddr: 0x2C0, symBinAddr: 0x2FDF0, symSize: 0x20 } - - { offsetInCU: 0x114, offset: 0xD5DAE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfc', symObjAddr: 0x2E0, symBinAddr: 0x2FE10, symSize: 0x30 } - - { offsetInCU: 0x14F, offset: 0xD5DE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCACycfcTo', symObjAddr: 0x330, symBinAddr: 0x2FE60, symSize: 0x30 } - - { offsetInCU: 0x18A, offset: 0xD5E24, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCfD', symObjAddr: 0x360, symBinAddr: 0x2FE90, symSize: 0x2B } - - { offsetInCU: 0x1B8, offset: 0xD5E52, size: 0x8, addend: 0x0, symName: '_$s9Capacitor14CAPFileManagerCMa', symObjAddr: 0x310, symBinAddr: 0x2FE40, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0xD5FC0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification_WZ', symObjAddr: 0x0, symBinAddr: 0x2FEC0, symSize: 0x90 } - - { offsetInCU: 0x4B, offset: 0xD5FE4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvpZ', symObjAddr: 0x488, symBinAddr: 0x76FE8, symSize: 0x0 } - - { offsetInCU: 0x6A, offset: 0xD6003, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification_WZ', symObjAddr: 0x0, symBinAddr: 0x2FEC0, symSize: 0x90 } - - { offsetInCU: 0xAF, offset: 0xD6048, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZ', symObjAddr: 0x90, symBinAddr: 0x2FF50, symSize: 0x60 } - - { offsetInCU: 0xF4, offset: 0xD608D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC27statusBarTappedNotification10Foundation0F0VvgZTo', symObjAddr: 0x110, symBinAddr: 0x2FFB0, symSize: 0x60 } - - { offsetInCU: 0x12B, offset: 0xD60C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC10getLastUrl10Foundation3URLVSgyFZ', symObjAddr: 0x170, symBinAddr: 0x30010, symSize: 0x70 } - - { offsetInCU: 0x178, offset: 0xD6111, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC13handleOpenUrlySb10Foundation3URLV_SDySo013UIApplicationD13URLOptionsKeyaypGtFZ', symObjAddr: 0x1E0, symBinAddr: 0x30080, symSize: 0x80 } - - { offsetInCU: 0x1E5, offset: 0xD617E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC22handleContinueActivityySbSo06NSUserE0C_ySaySo06UIUserE9Restoring_pGSgctFZ', symObjAddr: 0x260, symBinAddr: 0x30100, symSize: 0x80 } - - { offsetInCU: 0x24E, offset: 0xD61E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeC21handleAppBecameActiveyySo13UIApplicationCFZ', symObjAddr: 0x2E0, symBinAddr: 0x30180, symSize: 0x10 } - - { offsetInCU: 0x285, offset: 0xD621E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfC', symObjAddr: 0x2F0, symBinAddr: 0x30190, symSize: 0x20 } - - { offsetInCU: 0x2A3, offset: 0xD623C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfc', symObjAddr: 0x310, symBinAddr: 0x301B0, symSize: 0x30 } - - { offsetInCU: 0x2DE, offset: 0xD6277, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCACycfcTo', symObjAddr: 0x340, symBinAddr: 0x301E0, symSize: 0x30 } - - { offsetInCU: 0x319, offset: 0xD62B2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCfD', symObjAddr: 0x370, symBinAddr: 0x30210, symSize: 0x30 } - - { offsetInCU: 0x3A1, offset: 0xD633A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCfETo', symObjAddr: 0x3A0, symBinAddr: 0x30240, symSize: 0x10 } - - { offsetInCU: 0x3CC, offset: 0xD6365, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9CAPBridgeCMa', symObjAddr: 0x430, symBinAddr: 0x30250, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0xD654D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ', symObjAddr: 0x0, symBinAddr: 0x30270, symSize: 0x90 } - - { offsetInCU: 0x3F, offset: 0xD6565, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color1r1g1b1aAESi_S3itFZ', symObjAddr: 0x0, symBinAddr: 0x30270, symSize: 0x90 } - - { offsetInCU: 0x137, offset: 0xD665D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color4argbAEs6UInt32V_tFZ', symObjAddr: 0x90, symBinAddr: 0x30300, symSize: 0x80 } - - { offsetInCU: 0x1FF, offset: 0xD6725, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZ', symObjAddr: 0x110, symBinAddr: 0x30380, symSize: 0x2B0 } - - { offsetInCU: 0x4F, offset: 0xD6A42, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO9formatter031_F806BC7C3B9E74076D863322397580I0LLSo22NSISO8601DateFormatterCvpZ', symObjAddr: 0x3730, symBinAddr: 0x77048, symSize: 0x0 } - - { offsetInCU: 0x70, offset: 0xD6A63, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x30670, symSize: 0x10 } - - { offsetInCU: 0xC4, offset: 0xD6AB7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x50, symBinAddr: 0x30680, symSize: 0x30 } - - { offsetInCU: 0x1A8, offset: 0xD6B9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x80, symBinAddr: 0x306B0, symSize: 0x20 } - - { offsetInCU: 0x239, offset: 0xD6C2C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18jsonRepresentation15includingFieldsSSSgSDySSypGSg_tKF', symObjAddr: 0x110, symBinAddr: 0x30740, symSize: 0x2C0 } - - { offsetInCU: 0x45C, offset: 0xD6E4F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO9formatter031_F806BC7C3B9E74076D863322397580I0LL_WZ', symObjAddr: 0x3D0, symBinAddr: 0x30A00, symSize: 0x30 } - - { offsetInCU: 0x4AD, offset: 0xD6EA0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultC4dataSDySSypGSgvg', symObjAddr: 0x440, symBinAddr: 0x30A70, symSize: 0x20 } - - { offsetInCU: 0x531, offset: 0xD6F24, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfC', symObjAddr: 0x460, symBinAddr: 0x30A90, symSize: 0x40 } - - { offsetInCU: 0x576, offset: 0xD6F69, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfc', symObjAddr: 0x4A0, symBinAddr: 0x30AD0, symSize: 0x40 } - - { offsetInCU: 0x59D, offset: 0xD6F90, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCyACSDySSypGSgcfcTo', symObjAddr: 0x500, symBinAddr: 0x30B30, symSize: 0x70 } - - { offsetInCU: 0x5CF, offset: 0xD6FC2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCACycfc', symObjAddr: 0x590, symBinAddr: 0x30BC0, symSize: 0x30 } - - { offsetInCU: 0x632, offset: 0xD7025, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCACycfcTo', symObjAddr: 0x5C0, symBinAddr: 0x30BF0, symSize: 0x30 } - - { offsetInCU: 0x6A3, offset: 0xD7096, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCMa', symObjAddr: 0x4E0, symBinAddr: 0x30B10, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0xD70C0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19CAPPluginCallResultCfETo', symObjAddr: 0x610, symBinAddr: 0x30C40, symSize: 0x20 } - - { offsetInCU: 0x726, offset: 0xD7119, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7messageSSvgTo', symObjAddr: 0x630, symBinAddr: 0x30C60, symSize: 0x50 } - - { offsetInCU: 0x761, offset: 0xD7154, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7messageSSvg', symObjAddr: 0x680, symBinAddr: 0x30CB0, symSize: 0x30 } - - { offsetInCU: 0x79C, offset: 0xD718F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4codeSSSgvgTo', symObjAddr: 0x6B0, symBinAddr: 0x30CE0, symSize: 0x50 } - - { offsetInCU: 0x7CF, offset: 0xD71C2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4codeSSSgvg', symObjAddr: 0x700, symBinAddr: 0x30D30, symSize: 0x30 } - - { offsetInCU: 0x80A, offset: 0xD71FD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvgTo', symObjAddr: 0x730, symBinAddr: 0x30D60, symSize: 0x50 } - - { offsetInCU: 0x845, offset: 0xD7238, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC5errors0D0_pSgvg', symObjAddr: 0x780, symBinAddr: 0x30DB0, symSize: 0x30 } - - { offsetInCU: 0x862, offset: 0xD7255, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC4dataSDySSypGSgvg', symObjAddr: 0x870, symBinAddr: 0x30EA0, symSize: 0x20 } - - { offsetInCU: 0x89E, offset: 0xD7291, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfC', symObjAddr: 0x890, symBinAddr: 0x30EC0, symSize: 0x90 } - - { offsetInCU: 0x8D2, offset: 0xD72C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfc', symObjAddr: 0x920, symBinAddr: 0x30F50, symSize: 0x60 } - - { offsetInCU: 0x8E6, offset: 0xD72D9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfcTo', symObjAddr: 0x980, symBinAddr: 0x30FB0, symSize: 0xE0 } - - { offsetInCU: 0x918, offset: 0xD730B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCACycfc', symObjAddr: 0xAB0, symBinAddr: 0x310E0, symSize: 0x30 } - - { offsetInCU: 0x97B, offset: 0xD736E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCACycfcTo', symObjAddr: 0xAE0, symBinAddr: 0x31110, symSize: 0x30 } - - { offsetInCU: 0x9E2, offset: 0xD73D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorC7message4code5error4dataACSS_SSSgs0D0_pSgSDySSypGSgtcfcTf4ggggn_n', symObjAddr: 0x2FD0, symBinAddr: 0x33600, symSize: 0x180 } - - { offsetInCU: 0xB23, offset: 0xD7516, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCfETo', symObjAddr: 0xB60, symBinAddr: 0x31190, symSize: 0x60 } - - { offsetInCU: 0xB73, offset: 0xD7566, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_SSTg5', symObjAddr: 0xBC0, symBinAddr: 0x311F0, symSize: 0x50 } - - { offsetInCU: 0xBEA, offset: 0xD75DD, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0xC10, symBinAddr: 0x31240, symSize: 0x60 } - - { offsetInCU: 0xC70, offset: 0xD7663, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0xC70, symBinAddr: 0x312A0, symSize: 0x50 } - - { offsetInCU: 0xD0E, offset: 0xD7701, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So13CAPPluginCallCTg5', symObjAddr: 0xCC0, symBinAddr: 0x312F0, symSize: 0x50 } - - { offsetInCU: 0xDC2, offset: 0xD77B5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0xE40, symBinAddr: 0x31470, symSize: 0x3C0 } - - { offsetInCU: 0xED1, offset: 0xD78C4, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0x1200, symBinAddr: 0x31830, symSize: 0x3C0 } - - { offsetInCU: 0xFDD, offset: 0xD79D0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So16CAPBridgedPlugin_So9CAPPluginCXcTg5', symObjAddr: 0x15C0, symBinAddr: 0x31BF0, symSize: 0x3B0 } - - { offsetInCU: 0x111E, offset: 0xD7B11, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9Capacitor7JSValue_pTg5', symObjAddr: 0x1970, symBinAddr: 0x31FA0, symSize: 0x3D0 } - - { offsetInCU: 0x122A, offset: 0xD7C1D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So13CAPPluginCallCTg5', symObjAddr: 0x1D40, symBinAddr: 0x32370, symSize: 0x3B0 } - - { offsetInCU: 0x1355, offset: 0xD7D48, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x20F0, symBinAddr: 0x32720, symSize: 0x40 } - - { offsetInCU: 0x13FA, offset: 0xD7DED, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV5merge_8isUnique16uniquingKeysWithyqd__n_Sbq_q__q_tKXEtKSTRd__x_q_t7ElementRtd__lFSS_yps15LazyMapSequenceVySDySSypGSS_yptGTg599$s9Capacitor16PluginCallResultO18jsonRepresentation15includingFieldsSSSgSDySSypGSg_tKFypyp_yptXEfU_Tf1nncn_n', symObjAddr: 0x2130, symBinAddr: 0x32760, symSize: 0x2D0 } - - { offsetInCU: 0x1584, offset: 0xD7F77, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x2400, symBinAddr: 0x32A30, symSize: 0x180 } - - { offsetInCU: 0x1627, offset: 0xD801A, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x2580, symBinAddr: 0x32BB0, symSize: 0xC0 } - - { offsetInCU: 0x1657, offset: 0xD804A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV9mapValuesyAByxqd__Gqd__q_KXEKlFSS_ypypTg5111$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL10dictionarySDySSypGAG_tFypypXEfU_9Capacitor0ghI0OTf1cn_nTf4ng_n', symObjAddr: 0x2640, symBinAddr: 0x32C70, symSize: 0x5C0 } - - { offsetInCU: 0x1868, offset: 0xD825B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18CAPPluginCallErrorCMa', symObjAddr: 0x3150, symBinAddr: 0x33780, symSize: 0x20 } - - { offsetInCU: 0x187C, offset: 0xD826F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwCP', symObjAddr: 0x3170, symBinAddr: 0x337A0, symSize: 0x20 } - - { offsetInCU: 0x1890, offset: 0xD8283, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwxx', symObjAddr: 0x3190, symBinAddr: 0x337C0, symSize: 0x10 } - - { offsetInCU: 0x18A4, offset: 0xD8297, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwcp', symObjAddr: 0x31A0, symBinAddr: 0x337D0, symSize: 0x20 } - - { offsetInCU: 0x18B8, offset: 0xD82AB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwca', symObjAddr: 0x31C0, symBinAddr: 0x337F0, symSize: 0x30 } - - { offsetInCU: 0x18CC, offset: 0xD82BF, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x31F0, symBinAddr: 0x33820, symSize: 0x10 } - - { offsetInCU: 0x18E0, offset: 0xD82D3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwta', symObjAddr: 0x3200, symBinAddr: 0x33830, symSize: 0x30 } - - { offsetInCU: 0x18F4, offset: 0xD82E7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwet', symObjAddr: 0x3230, symBinAddr: 0x33860, symSize: 0x40 } - - { offsetInCU: 0x1908, offset: 0xD82FB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwst', symObjAddr: 0x3270, symBinAddr: 0x338A0, symSize: 0x40 } - - { offsetInCU: 0x191C, offset: 0xD830F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwug', symObjAddr: 0x32B0, symBinAddr: 0x338E0, symSize: 0x10 } - - { offsetInCU: 0x1930, offset: 0xD8323, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwup', symObjAddr: 0x32C0, symBinAddr: 0x338F0, symSize: 0x10 } - - { offsetInCU: 0x1944, offset: 0xD8337, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOwui', symObjAddr: 0x32D0, symBinAddr: 0x33900, symSize: 0x10 } - - { offsetInCU: 0x1958, offset: 0xD834B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultOMa', symObjAddr: 0x32E0, symBinAddr: 0x33910, symSize: 0x10 } - - { offsetInCU: 0x196C, offset: 0xD835F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOAEs0F0AAWl', symObjAddr: 0x3390, symBinAddr: 0x339C0, symSize: 0x30 } - - { offsetInCU: 0x1980, offset: 0xD8373, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOc', symObjAddr: 0x34E0, symBinAddr: 0x339F0, symSize: 0x40 } - - { offsetInCU: 0x1994, offset: 0xD8387, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwet', symObjAddr: 0x35C0, symBinAddr: 0x33A60, symSize: 0x50 } - - { offsetInCU: 0x19A8, offset: 0xD839B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwst', symObjAddr: 0x3610, symBinAddr: 0x33AB0, symSize: 0xA0 } - - { offsetInCU: 0x19BC, offset: 0xD83AF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwug', symObjAddr: 0x36B0, symBinAddr: 0x33B50, symSize: 0x10 } - - { offsetInCU: 0x19D0, offset: 0xD83C3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwup', symObjAddr: 0x36C0, symBinAddr: 0x33B60, symSize: 0x10 } - - { offsetInCU: 0x19E4, offset: 0xD83D7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOwui', symObjAddr: 0x36D0, symBinAddr: 0x33B70, symSize: 0x10 } - - { offsetInCU: 0x19F8, offset: 0xD83EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOMa', symObjAddr: 0x36E0, symBinAddr: 0x33B80, symSize: 0x10 } - - { offsetInCU: 0x1A0C, offset: 0xD83FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASQWb', symObjAddr: 0x36F0, symBinAddr: 0x33B90, symSize: 0x10 } - - { offsetInCU: 0x1A20, offset: 0xD8413, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOAESQAAWl', symObjAddr: 0x3700, symBinAddr: 0x33BA0, symSize: 0x2E } - - { offsetInCU: 0x1A62, offset: 0xD8455, size: 0x8, addend: 0x0, symName: '_$sSlsE3mapySayqd__Gqd__7ElementQzKXEKlFSayypG_ypTg5103$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL5arraySayypGAG_tFypypXEfU_9Capacitor0efG0OTf1cn_n', symObjAddr: 0x0, symBinAddr: 0x30630, symSize: 0x40 } - - { offsetInCU: 0x1AA3, offset: 0xD8496, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA0, symBinAddr: 0x306D0, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0xD8533, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP7_domainSSvgTW', symObjAddr: 0xD0, symBinAddr: 0x30700, symSize: 0x10 } - - { offsetInCU: 0x1B5C, offset: 0xD854F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP5_codeSivgTW', symObjAddr: 0xE0, symBinAddr: 0x30710, symSize: 0x10 } - - { offsetInCU: 0x1B78, offset: 0xD856B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0xF0, symBinAddr: 0x30720, symSize: 0x10 } - - { offsetInCU: 0x1B94, offset: 0xD8587, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16PluginCallResultO18SerializationErrorOs0F0AAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x100, symBinAddr: 0x30730, symSize: 0x10 } - - { offsetInCU: 0x1C99, offset: 0xD868C, size: 0x8, addend: 0x0, symName: '_$sSlsE3mapySayqd__Gqd__7ElementQzKXEKlFSayypG_ypTg5103$s9Capacitor16PluginCallResultO7prepare031_F806BC7C3B9E74076D863322397580I0LL5arraySayypGAG_tFypypXEfU_9Capacitor0efG0OTf1cn_nTf4ng_n', symObjAddr: 0x2C00, symBinAddr: 0x33230, symSize: 0x3D0 } - - { offsetInCU: 0x4B, offset: 0xD8A8C, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURLABvpZ', symObjAddr: 0x8A0, symBinAddr: 0x770E8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0xD8AA6, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLinkABvpZ', symObjAddr: 0x8A8, symBinAddr: 0x770F0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0xD8AC0, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivityABvpZ', symObjAddr: 0x8B0, symBinAddr: 0x770F8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0xD8ADA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotificationsABvpZ', symObjAddr: 0x8B8, symBinAddr: 0x77100, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0xD8AF4, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsABvpZ', symObjAddr: 0x8C0, symBinAddr: 0x77108, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0xD8B0E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationActionABvpZ', symObjAddr: 0x8C8, symBinAddr: 0x77110, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0xD8B28, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTappedABvpZ', symObjAddr: 0x8D0, symBinAddr: 0x77118, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0xD8B42, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE16capacitorOpenURLSo0A4NameavpZ', symObjAddr: 0x8D8, symBinAddr: 0x77120, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0xD8B5C, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE26capacitorOpenUniversalLinkSo0A4NameavpZ', symObjAddr: 0x8E0, symBinAddr: 0x77128, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0xD8B76, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE25capacitorContinueActivitySo0A4NameavpZ', symObjAddr: 0x8E8, symBinAddr: 0x77130, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0xD8B90, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE42capacitorDidRegisterForRemoteNotificationsSo0A4NameavpZ', symObjAddr: 0x8F0, symBinAddr: 0x77138, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0xD8BAA, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE48capacitorDidFailToRegisterForRemoteNotificationsSo0A4NameavpZ', symObjAddr: 0x8F8, symBinAddr: 0x77140, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0xD8BC4, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE40capacitorDecidePolicyForNavigationActionSo0A4NameavpZ', symObjAddr: 0x900, symBinAddr: 0x77148, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0xD8BDE, size: 0x8, addend: 0x0, symName: '_$sSo14NSNotificationC9CapacitorE24capacitorStatusBarTappedSo0A4NameavpZ', symObjAddr: 0x908, symBinAddr: 0x77150, symSize: 0x0 } - - { offsetInCU: 0x1AB, offset: 0xD8BEC, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE16capacitorOpenURL_WZ', symObjAddr: 0x0, symBinAddr: 0x33BD0, symSize: 0x30 } - - { offsetInCU: 0x1C5, offset: 0xD8C06, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE26capacitorOpenUniversalLink_WZ', symObjAddr: 0x50, symBinAddr: 0x33C20, symSize: 0x30 } - - { offsetInCU: 0x1DF, offset: 0xD8C20, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE25capacitorContinueActivity_WZ', symObjAddr: 0xA0, symBinAddr: 0x33C70, symSize: 0x30 } - - { offsetInCU: 0x1F9, offset: 0xD8C3A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE42capacitorDidRegisterForRemoteNotifications_WZ', symObjAddr: 0xF0, symBinAddr: 0x33CC0, symSize: 0x30 } - - { offsetInCU: 0x213, offset: 0xD8C54, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE48capacitorDidFailToRegisterForRemoteNotifications_WZ', symObjAddr: 0x140, symBinAddr: 0x33D10, symSize: 0x30 } - - { offsetInCU: 0x22D, offset: 0xD8C6E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE40capacitorDecidePolicyForNavigationAction_WZ', symObjAddr: 0x190, symBinAddr: 0x33D60, symSize: 0x30 } - - { offsetInCU: 0x247, offset: 0xD8C88, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea9CapacitorE24capacitorStatusBarTapped_WZ', symObjAddr: 0x1E0, symBinAddr: 0x33DB0, symSize: 0x30 } - - { offsetInCU: 0x2D3, offset: 0xD8D14, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO4nameSSyF', symObjAddr: 0x600, symBinAddr: 0x341D0, symSize: 0x140 } - - { offsetInCU: 0x378, offset: 0xD8DB9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO8rawValueACSgSi_tcfC', symObjAddr: 0x740, symBinAddr: 0x34310, symSize: 0x20 } - - { offsetInCU: 0x395, offset: 0xD8DD6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsO8rawValueSivg', symObjAddr: 0x760, symBinAddr: 0x34330, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0xD8E19, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSYAASY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x860, symBinAddr: 0x34430, symSize: 0x20 } - - { offsetInCU: 0x409, offset: 0xD8E4A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSYAASY8rawValue03RawD0QzvgTW', symObjAddr: 0x880, symBinAddr: 0x34450, symSize: 0x10 } - - { offsetInCU: 0x431, offset: 0xD8E72, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASQWb', symObjAddr: 0x780, symBinAddr: 0x34350, symSize: 0x10 } - - { offsetInCU: 0x445, offset: 0xD8E86, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOACSQAAWl', symObjAddr: 0x790, symBinAddr: 0x34360, symSize: 0x30 } - - { offsetInCU: 0x46F, offset: 0xD8EB0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOMa', symObjAddr: 0x890, symBinAddr: 0x34460, symSize: 0xA } - - { offsetInCU: 0x4E2, offset: 0xD8F23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x770, symBinAddr: 0x34340, symSize: 0x10 } - - { offsetInCU: 0x573, offset: 0xD8FB4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH9hashValueSivgTW', symObjAddr: 0x7C0, symBinAddr: 0x34390, symSize: 0x40 } - - { offsetInCU: 0x622, offset: 0xD9063, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x800, symBinAddr: 0x343D0, symSize: 0x20 } - - { offsetInCU: 0x675, offset: 0xD90B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPNotificationsOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x820, symBinAddr: 0x343F0, symSize: 0x40 } - - { offsetInCU: 0x43, offset: 0xD9239, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorV4call0dC0AcA6JSCallV_AA013CAPPluginCallC0CtcfC', symObjAddr: 0x0, symBinAddr: 0x34470, symSize: 0x2F0 } - - { offsetInCU: 0xB3, offset: 0xD92A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCfd', symObjAddr: 0x2F0, symBinAddr: 0x34760, symSize: 0x10 } - - { offsetInCU: 0xE0, offset: 0xD92D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCfD', symObjAddr: 0x300, symBinAddr: 0x34770, symSize: 0x20 } - - { offsetInCU: 0x10E, offset: 0xD9304, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSDateCMa', symObjAddr: 0x320, symBinAddr: 0x34790, symSize: 0x20 } - - { offsetInCU: 0x1B8, offset: 0xD93AE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultV11jsonPayloadSSyF', symObjAddr: 0x400, symBinAddr: 0x347D0, symSize: 0x3C0 } - - { offsetInCU: 0x518, offset: 0xD970E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP11jsonPayloadSSyFTW', symObjAddr: 0x850, symBinAddr: 0x34C20, symSize: 0x10 } - - { offsetInCU: 0x546, offset: 0xD973C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP10callbackIDSSvgTW', symObjAddr: 0x7C0, symBinAddr: 0x34B90, symSize: 0x30 } - - { offsetInCU: 0x589, offset: 0xD977F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP8pluginIDSSvgTW', symObjAddr: 0x7F0, symBinAddr: 0x34BC0, symSize: 0x30 } - - { offsetInCU: 0x5CC, offset: 0xD97C2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVAA0B8ProtocolA2aDP10methodNameSSvgTW', symObjAddr: 0x820, symBinAddr: 0x34BF0, symSize: 0x30 } - - { offsetInCU: 0x678, offset: 0xD986E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorV11jsonPayloadSSyF', symObjAddr: 0x860, symBinAddr: 0x34C30, symSize: 0x720 } - - { offsetInCU: 0xB7A, offset: 0xD9D70, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP11jsonPayloadSSyFTW', symObjAddr: 0x1010, symBinAddr: 0x353E0, symSize: 0x10 } - - { offsetInCU: 0xBA8, offset: 0xD9D9E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP10callbackIDSSvgTW', symObjAddr: 0xF80, symBinAddr: 0x35350, symSize: 0x30 } - - { offsetInCU: 0xBEB, offset: 0xD9DE1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP8pluginIDSSvgTW', symObjAddr: 0xFB0, symBinAddr: 0x35380, symSize: 0x30 } - - { offsetInCU: 0xC2E, offset: 0xD9E24, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVAA0B8ProtocolA2aDP10methodNameSSvgTW', symObjAddr: 0xFE0, symBinAddr: 0x353B0, symSize: 0x30 } - - { offsetInCU: 0xC60, offset: 0xD9E56, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwxx', symObjAddr: 0x10B0, symBinAddr: 0x353F0, symSize: 0x40 } - - { offsetInCU: 0xC74, offset: 0xD9E6A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwcp', symObjAddr: 0x10F0, symBinAddr: 0x35430, symSize: 0x90 } - - { offsetInCU: 0xC88, offset: 0xD9E7E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwca', symObjAddr: 0x1180, symBinAddr: 0x354C0, symSize: 0xB0 } - - { offsetInCU: 0xC9C, offset: 0xD9E92, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x1230, symBinAddr: 0x35570, symSize: 0x30 } - - { offsetInCU: 0xCB0, offset: 0xD9EA6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwta', symObjAddr: 0x1260, symBinAddr: 0x355A0, symSize: 0x80 } - - { offsetInCU: 0xCC4, offset: 0xD9EBA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwet', symObjAddr: 0x12E0, symBinAddr: 0x35620, symSize: 0x40 } - - { offsetInCU: 0xCD8, offset: 0xD9ECE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVwst', symObjAddr: 0x1320, symBinAddr: 0x35660, symSize: 0x50 } - - { offsetInCU: 0xCEC, offset: 0xD9EE2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSResultVMa', symObjAddr: 0x1370, symBinAddr: 0x356B0, symSize: 0x10 } - - { offsetInCU: 0xD00, offset: 0xD9EF6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwCP', symObjAddr: 0x1380, symBinAddr: 0x356C0, symSize: 0x30 } - - { offsetInCU: 0xD14, offset: 0xD9F0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwxx', symObjAddr: 0x13B0, symBinAddr: 0x356F0, symSize: 0x60 } - - { offsetInCU: 0xD28, offset: 0xD9F1E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwcp', symObjAddr: 0x1410, symBinAddr: 0x35750, symSize: 0xE0 } - - { offsetInCU: 0xD3C, offset: 0xD9F32, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwca', symObjAddr: 0x14F0, symBinAddr: 0x35830, symSize: 0x120 } - - { offsetInCU: 0xD50, offset: 0xD9F46, size: 0x8, addend: 0x0, symName: ___swift_memcpy112_8, symObjAddr: 0x1610, symBinAddr: 0x35950, symSize: 0x40 } - - { offsetInCU: 0xD64, offset: 0xD9F5A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwta', symObjAddr: 0x1650, symBinAddr: 0x35990, symSize: 0xD0 } - - { offsetInCU: 0xD78, offset: 0xD9F6E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwet', symObjAddr: 0x1720, symBinAddr: 0x35A60, symSize: 0x40 } - - { offsetInCU: 0xD8C, offset: 0xD9F82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVwst', symObjAddr: 0x1760, symBinAddr: 0x35AA0, symSize: 0x60 } - - { offsetInCU: 0xDA0, offset: 0xD9F96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13JSResultErrorVMa', symObjAddr: 0x17C0, symBinAddr: 0x35B00, symSize: 0x10 } - - { offsetInCU: 0xDB4, offset: 0xD9FAA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwxx', symObjAddr: 0x1870, symBinAddr: 0x35B30, symSize: 0x40 } - - { offsetInCU: 0xDC8, offset: 0xD9FBE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwcp', symObjAddr: 0x18B0, symBinAddr: 0x35B70, symSize: 0x70 } - - { offsetInCU: 0xDDC, offset: 0xD9FD2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwca', symObjAddr: 0x1920, symBinAddr: 0x35BE0, symSize: 0xA0 } - - { offsetInCU: 0xDF0, offset: 0xD9FE6, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x19C0, symBinAddr: 0x35C80, symSize: 0x30 } - - { offsetInCU: 0xE04, offset: 0xD9FFA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwta', symObjAddr: 0x19F0, symBinAddr: 0x35CB0, symSize: 0x70 } - - { offsetInCU: 0xE18, offset: 0xDA00E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwet', symObjAddr: 0x1A60, symBinAddr: 0x35D20, symSize: 0x40 } - - { offsetInCU: 0xE2C, offset: 0xDA022, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVwst', symObjAddr: 0x1AA0, symBinAddr: 0x35D60, symSize: 0x50 } - - { offsetInCU: 0xE40, offset: 0xDA036, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6JSCallVMa', symObjAddr: 0x1AF0, symBinAddr: 0x35DB0, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0xDA253, size: 0x8, addend: 0x0, symName: '_$sIeyB_Ieg_TR', symObjAddr: 0x0, symBinAddr: 0x35DE0, symSize: 0x10 } - - { offsetInCU: 0x63, offset: 0xDA273, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfC', symObjAddr: 0x10, symBinAddr: 0x35DF0, symSize: 0x20 } - - { offsetInCU: 0x81, offset: 0xDA291, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC30handleApplicationNotificationsSbvs', symObjAddr: 0x30, symBinAddr: 0x35E10, symSize: 0x90 } - - { offsetInCU: 0xE8, offset: 0xDA2F8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04pushB7HandlerAA0bE8Protocol_pSgvM', symObjAddr: 0x160, symBinAddr: 0x35F00, symSize: 0x60 } - - { offsetInCU: 0x117, offset: 0xDA327, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC05localB7HandlerAA0bE8Protocol_pSgvM', symObjAddr: 0x410, symBinAddr: 0x361B0, symSize: 0x60 } - - { offsetInCU: 0x182, offset: 0xDA392, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF', symObjAddr: 0x4F0, symBinAddr: 0x36290, symSize: 0x100 } - - { offsetInCU: 0x21B, offset: 0xDA42B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF', symObjAddr: 0x610, symBinAddr: 0x363B0, symSize: 0x120 } - - { offsetInCU: 0x2B4, offset: 0xDA4C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfc', symObjAddr: 0x7F0, symBinAddr: 0x36590, symSize: 0x50 } - - { offsetInCU: 0x2EF, offset: 0xDA4FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCACycfcTo', symObjAddr: 0x840, symBinAddr: 0x365E0, symSize: 0x60 } - - { offsetInCU: 0x32A, offset: 0xDA53A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCfD', symObjAddr: 0x8A0, symBinAddr: 0x36640, symSize: 0x30 } - - { offsetInCU: 0x357, offset: 0xDA567, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_11willPresent21withCompletionHandlerySo06UNUserbE0C_So14UNNotificationCySo0L19PresentationOptionsVctF06$sSo33lmN16VIeyBy_ABIegy_TRALIeyBy_Tf1nncn_nTf4dnng_n', symObjAddr: 0xB60, symBinAddr: 0x36900, symSize: 0x100 } - - { offsetInCU: 0x3E7, offset: 0xDA5F7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterC04userB6Center_10didReceive21withCompletionHandlerySo06UNUserbE0C_So22UNNotificationResponseCyyctF13$sIeyB_Ieg_TRIeyB_Tf1nncn_nTf4dnng_n', symObjAddr: 0xC60, symBinAddr: 0x36A00, symSize: 0x110 } - - { offsetInCU: 0x478, offset: 0xDA688, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCfETo', symObjAddr: 0x8D0, symBinAddr: 0x36670, symSize: 0x30 } - - { offsetInCU: 0x4A7, offset: 0xDA6B7, size: 0x8, addend: 0x0, symName: '_$sSo25UNPushNotificationTriggerCMa', symObjAddr: 0x900, symBinAddr: 0x366A0, symSize: 0x30 } - - { offsetInCU: 0x4BB, offset: 0xDA6CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18NotificationRouterCMa', symObjAddr: 0x930, symBinAddr: 0x366D0, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0xDA6F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor27NotificationHandlerProtocol_pSgXwWOh', symObjAddr: 0xD70, symBinAddr: 0x36B10, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0xDA8BC, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvpZ', symObjAddr: 0x1988, symBinAddr: 0x77248, symSize: 0x0 } - - { offsetInCU: 0x59, offset: 0xDA8CA, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE22jsObjectRepresentationSDySSAC7JSValue_pGvg', symObjAddr: 0x0, symBinAddr: 0x36B30, symSize: 0x90 } - - { offsetInCU: 0x112, offset: 0xDA983, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSValueContainerA2cDP15jsDateFormatterSo09NSISO8601gH0CvgZTW', symObjAddr: 0x5A0, symBinAddr: 0x370D0, symSize: 0x50 } - - { offsetInCU: 0x151, offset: 0xDA9C2, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZ', symObjAddr: 0x5F0, symBinAddr: 0x37120, symSize: 0x50 } - - { offsetInCU: 0x196, offset: 0xDAA07, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9Capacitor16JSValueContainerA2cDP22jsObjectRepresentationSDySSAC0D0_pGvgTW', symObjAddr: 0x640, symBinAddr: 0x37170, symSize: 0x90 } - - { offsetInCU: 0x1F4, offset: 0xDAA65, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvgTo', symObjAddr: 0x6D0, symBinAddr: 0x37200, symSize: 0x50 } - - { offsetInCU: 0x234, offset: 0xDAAA5, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE24dictionaryRepresentationSo12NSDictionaryCvg', symObjAddr: 0x720, symBinAddr: 0x37250, symSize: 0x30 } - - { offsetInCU: 0x273, offset: 0xDAAE4, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatter_WZ', symObjAddr: 0x750, symBinAddr: 0x37280, symSize: 0x30 } - - { offsetInCU: 0x2CE, offset: 0xDAB3F, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvgZTo', symObjAddr: 0x780, symBinAddr: 0x372B0, symSize: 0x50 } - - { offsetInCU: 0x305, offset: 0xDAB76, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZ', symObjAddr: 0x7D0, symBinAddr: 0x37300, symSize: 0x60 } - - { offsetInCU: 0x360, offset: 0xDABD1, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvsZTo', symObjAddr: 0x830, symBinAddr: 0x37360, symSize: 0x70 } - - { offsetInCU: 0x3A1, offset: 0xDAC12, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ', symObjAddr: 0x8A0, symBinAddr: 0x373D0, symSize: 0x60 } - - { offsetInCU: 0x3D8, offset: 0xDAC49, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE15jsDateFormatterSo09NSISO8601eF0CvMZ.resume.0', symObjAddr: 0x900, symBinAddr: 0x37430, symSize: 0x10 } - - { offsetInCU: 0x403, offset: 0xDAC74, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSF', symObjAddr: 0x910, symBinAddr: 0x37440, symSize: 0x190 } - - { offsetInCU: 0x490, offset: 0xDAD01, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE9hasOptionySbSSFTo', symObjAddr: 0xAA0, symBinAddr: 0x375D0, symSize: 0x60 } - - { offsetInCU: 0x556, offset: 0xDADC7, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7successyyF', symObjAddr: 0xB00, symBinAddr: 0x37630, symSize: 0xA0 } - - { offsetInCU: 0x61D, offset: 0xDAE8E, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7successyyFTo', symObjAddr: 0xBA0, symBinAddr: 0x376D0, symSize: 0xC0 } - - { offsetInCU: 0x6D4, offset: 0xDAF45, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7resolveyyF', symObjAddr: 0xC80, symBinAddr: 0x377B0, symSize: 0xA0 } - - { offsetInCU: 0x76F, offset: 0xDAFE0, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE7resolveyyFTo', symObjAddr: 0xD20, symBinAddr: 0x37850, symSize: 0xB0 } - - { offsetInCU: 0x82D, offset: 0xDB09E, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtF', symObjAddr: 0xF90, symBinAddr: 0x37AC0, symSize: 0xD0 } - - { offsetInCU: 0x8F9, offset: 0xDB16A, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE5erroryySS_s5Error_pSgSDySSypGtFTo', symObjAddr: 0x1060, symBinAddr: 0x37B90, symSize: 0x150 } - - { offsetInCU: 0x998, offset: 0xDB209, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtF', symObjAddr: 0x11B0, symBinAddr: 0x37CE0, symSize: 0x100 } - - { offsetInCU: 0xA7A, offset: 0xDB2EB, size: 0x8, addend: 0x0, symName: '_$sSo13CAPPluginCallC9CapacitorE6rejectyySS_SSSgs5Error_pSgSDySSypGSgtFTo', symObjAddr: 0x12B0, symBinAddr: 0x37DE0, symSize: 0x1A0 } - - { offsetInCU: 0xB24, offset: 0xDB395, size: 0x8, addend: 0x0, symName: '_$sSo6NSNullCMa', symObjAddr: 0x1860, symBinAddr: 0x38300, symSize: 0x30 } - - { offsetInCU: 0xB38, offset: 0xDB3A9, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x1930, symBinAddr: 0x38330, symSize: 0x30 } - - { offsetInCU: 0xBE3, offset: 0xDB454, size: 0x8, addend: 0x0, symName: '_$ss30_dictionaryDownCastConditionalySDyq0_q1_GSgSDyxq_GSHRzSHR0_r2_lFs11AnyHashableV_ypSS9Capacitor7JSValue_pTg5', symObjAddr: 0x90, symBinAddr: 0x36BC0, symSize: 0x510 } - - { offsetInCU: 0xBE, offset: 0xDB7F8, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGvg', symObjAddr: 0x0, symBinAddr: 0x38390, symSize: 0x60 } - - { offsetInCU: 0x121, offset: 0xDB85B, size: 0x8, addend: 0x0, symName: '_$sSo9WKWebViewC9Capacitor0C9ExtensionA2cDP9capacitor0C4TypeQzmvgZTW', symObjAddr: 0x60, symBinAddr: 0x383F0, symSize: 0x20 } - - { offsetInCU: 0x13D, offset: 0xDB877, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A9ExtensionPAAE9capacitorAA0aB11TypeWrapperVyxGmvgZ', symObjAddr: 0x80, symBinAddr: 0x38410, symSize: 0x10 } - - { offsetInCU: 0x196, offset: 0xDB8D0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9Capacitor0C9ExtensionA2dEP9capacitor0C4TypeQzvgTW', symObjAddr: 0x90, symBinAddr: 0x38420, symSize: 0x20 } - - { offsetInCU: 0x1F3, offset: 0xDB92D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9Capacitor0C9ExtensionA2dEP9capacitor0C4TypeQzmvgZTW', symObjAddr: 0xB0, symBinAddr: 0x38440, symSize: 0x20 } - - { offsetInCU: 0x233, offset: 0xDB96D, size: 0x8, addend: 0x0, symName: '_$sSo7UIColorC9Capacitor0B9ExtensionA2cDP9capacitor0B4TypeQzvgTW', symObjAddr: 0xD0, symBinAddr: 0x38460, symSize: 0x20 } - - { offsetInCU: 0x28C, offset: 0xDB9C6, size: 0x8, addend: 0x0, symName: '_$sSo7UIColorC9Capacitor0B9ExtensionA2cDP9capacitor0B4TypeQzmvgZTW', symObjAddr: 0xF0, symBinAddr: 0x38480, symSize: 0x20 } - - { offsetInCU: 0x2A8, offset: 0xDB9E2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMi', symObjAddr: 0x150, symBinAddr: 0x384C0, symSize: 0x10 } - - { offsetInCU: 0x2BC, offset: 0xDB9F6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMr', symObjAddr: 0x160, symBinAddr: 0x384D0, symSize: 0x60 } - - { offsetInCU: 0x2D0, offset: 0xDBA0A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwCP', symObjAddr: 0x1C0, symBinAddr: 0x38530, symSize: 0x60 } - - { offsetInCU: 0x2E4, offset: 0xDBA1E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwxx', symObjAddr: 0x220, symBinAddr: 0x38590, symSize: 0x20 } - - { offsetInCU: 0x2F8, offset: 0xDBA32, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwcp', symObjAddr: 0x240, symBinAddr: 0x385B0, symSize: 0x20 } - - { offsetInCU: 0x30C, offset: 0xDBA46, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwca', symObjAddr: 0x260, symBinAddr: 0x385D0, symSize: 0x20 } - - { offsetInCU: 0x320, offset: 0xDBA5A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwtk', symObjAddr: 0x280, symBinAddr: 0x385F0, symSize: 0x20 } - - { offsetInCU: 0x334, offset: 0xDBA6E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwta', symObjAddr: 0x2A0, symBinAddr: 0x38610, symSize: 0x20 } - - { offsetInCU: 0x348, offset: 0xDBA82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwet', symObjAddr: 0x2C0, symBinAddr: 0x38630, symSize: 0x110 } - - { offsetInCU: 0x35C, offset: 0xDBA96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVwst', symObjAddr: 0x3D0, symBinAddr: 0x38740, symSize: 0x210 } - - { offsetInCU: 0x370, offset: 0xDBAAA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVMa', symObjAddr: 0x5E0, symBinAddr: 0x38950, symSize: 0x10 } - - { offsetInCU: 0x384, offset: 0xDBABE, size: 0x8, addend: 0x0, symName: '_$sSayxG9Capacitor0A9ExtensionA2bCP9capacitor0A4TypeQzvgTW', symObjAddr: 0x5F0, symBinAddr: 0x38960, symSize: 0x10 } - - { offsetInCU: 0x3A0, offset: 0xDBADA, size: 0x8, addend: 0x0, symName: '_$sSayxG9Capacitor0A9ExtensionA2bCP9capacitor0A4TypeQzmvgZTW', symObjAddr: 0x600, symBinAddr: 0x38970, symSize: 0x10 } - - { offsetInCU: 0x3BC, offset: 0xDBAF6, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x6B0, symBinAddr: 0x38980, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0xDBCA6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7defaultACvpZ', symObjAddr: 0x63F0, symBinAddr: 0x772F8, symSize: 0x0 } - - { offsetInCU: 0x8E, offset: 0xDBCE9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7defaultACvgZ', symObjAddr: 0x1D40, symBinAddr: 0x3A700, symSize: 0x40 } - - { offsetInCU: 0xC6, offset: 0xDBD21, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO6stringACSSSg_tcfC', symObjAddr: 0x1D80, symBinAddr: 0x3A740, symSize: 0xA0 } - - { offsetInCU: 0x165, offset: 0xDBDC0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO8rawValueACSgSS_tcfC', symObjAddr: 0x1E20, symBinAddr: 0x3A7E0, symSize: 0x70 } - - { offsetInCU: 0x190, offset: 0xDBDEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO8rawValueSSvg', symObjAddr: 0x1ED0, symBinAddr: 0x3A850, symSize: 0x30 } - - { offsetInCU: 0x1AB, offset: 0xDBE06, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x3A8C0, symSize: 0x20 } - - { offsetInCU: 0x1C7, offset: 0xDBE22, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x1F60, symBinAddr: 0x3A8E0, symSize: 0x20 } - - { offsetInCU: 0x209, offset: 0xDBE64, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getStringySSSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x0, symBinAddr: 0x389C0, symSize: 0x1A0 } - - { offsetInCU: 0x3C4, offset: 0xDC01F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getDoubleySdSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x1800, symBinAddr: 0x3A1C0, symSize: 0x1B0 } - - { offsetInCU: 0x44B, offset: 0xDC0A6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16JSValueContainerPAAE9getObjectySDySSAA0B0_pGSgSSFSo13CAPPluginCallC_Tg5', symObjAddr: 0x19B0, symBinAddr: 0x3A370, symSize: 0x1A0 } - - { offsetInCU: 0x52A, offset: 0xDC185, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeO7default_WZ', symObjAddr: 0x1D30, symBinAddr: 0x3A6F0, symSize: 0x10 } - - { offsetInCU: 0x597, offset: 0xDC1F2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvg', symObjAddr: 0x2020, symBinAddr: 0x3A9A0, symSize: 0x40 } - - { offsetInCU: 0x5B6, offset: 0xDC211, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvs', symObjAddr: 0x2060, symBinAddr: 0x3A9E0, symSize: 0x60 } - - { offsetInCU: 0x5DF, offset: 0xDC23A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM', symObjAddr: 0x2100, symBinAddr: 0x3AA40, symSize: 0x40 } - - { offsetInCU: 0x60E, offset: 0xDC269, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvM.resume.0', symObjAddr: 0x2140, symBinAddr: 0x3AA80, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0xDC2DC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvg', symObjAddr: 0x2210, symBinAddr: 0x3AB50, symSize: 0x50 } - - { offsetInCU: 0x69E, offset: 0xDC2F9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvs', symObjAddr: 0x2260, symBinAddr: 0x3ABA0, symSize: 0x50 } - - { offsetInCU: 0x6C5, offset: 0xDC320, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvM', symObjAddr: 0x22B0, symBinAddr: 0x3ABF0, symSize: 0x40 } - - { offsetInCU: 0x71E, offset: 0xDC379, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvg', symObjAddr: 0x2350, symBinAddr: 0x3AC90, symSize: 0x40 } - - { offsetInCU: 0x73B, offset: 0xDC396, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvs', symObjAddr: 0x2390, symBinAddr: 0x3ACD0, symSize: 0x50 } - - { offsetInCU: 0x762, offset: 0xDC3BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvM', symObjAddr: 0x23E0, symBinAddr: 0x3AD20, symSize: 0x40 } - - { offsetInCU: 0x791, offset: 0xDC3EC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvg', symObjAddr: 0x2420, symBinAddr: 0x3AD60, symSize: 0x40 } - - { offsetInCU: 0x7BE, offset: 0xDC419, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvs', symObjAddr: 0x2460, symBinAddr: 0x3ADA0, symSize: 0x50 } - - { offsetInCU: 0x7FB, offset: 0xDC456, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC7requestAA0a3UrlC0CSgvM', symObjAddr: 0x24B0, symBinAddr: 0x3ADF0, symSize: 0x40 } - - { offsetInCU: 0x848, offset: 0xDC4A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfC', symObjAddr: 0x24F0, symBinAddr: 0x3AE30, symSize: 0x80 } - - { offsetInCU: 0x87B, offset: 0xDC4D6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCAEycfc', symObjAddr: 0x2570, symBinAddr: 0x3AEB0, symSize: 0x70 } - - { offsetInCU: 0x898, offset: 0xDC4F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKF', symObjAddr: 0x25E0, symBinAddr: 0x3AF20, symSize: 0x30 } - - { offsetInCU: 0x8AC, offset: 0xDC507, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC9setMethodyAESSF', symObjAddr: 0x2610, symBinAddr: 0x3AF50, symSize: 0x70 } - - { offsetInCU: 0x8FB, offset: 0xDC556, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC12setUrlParamsyAESDySSypGF', symObjAddr: 0x2680, symBinAddr: 0x3AFC0, symSize: 0x8F0 } - - { offsetInCU: 0xDD3, offset: 0xDCA2E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC14openConnectionAEyF', symObjAddr: 0x3130, symBinAddr: 0x3BA70, symSize: 0x110 } - - { offsetInCU: 0xE83, offset: 0xDCADE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC5buildAA0a3UrlC0CyF', symObjAddr: 0x3240, symBinAddr: 0x3BB80, symSize: 0x20 } - - { offsetInCU: 0xEB5, offset: 0xDCB10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCfd', symObjAddr: 0x3260, symBinAddr: 0x3BBA0, symSize: 0x60 } - - { offsetInCU: 0xEF0, offset: 0xDCB4B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCfD', symObjAddr: 0x32C0, symBinAddr: 0x3BC00, symSize: 0x70 } - - { offsetInCU: 0xFA2, offset: 0xDCBFD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6setUrlyAESSKFTf4nn_g', symObjAddr: 0x4640, symBinAddr: 0x3CF80, symSize: 0x210 } - - { offsetInCU: 0x1070, offset: 0xDCCCB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZ', symObjAddr: 0x3330, symBinAddr: 0x3BC70, symSize: 0x10 } - - { offsetInCU: 0x1084, offset: 0xDCCDF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZ', symObjAddr: 0x3340, symBinAddr: 0x3BC80, symSize: 0x10 } - - { offsetInCU: 0x1098, offset: 0xDCCF3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZ', symObjAddr: 0x3350, symBinAddr: 0x3BC90, symSize: 0xCB0 } - - { offsetInCU: 0x14D2, offset: 0xDD12D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0x4000, symBinAddr: 0x3C940, symSize: 0x2A0 } - - { offsetInCU: 0x1609, offset: 0xDD264, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCfd', symObjAddr: 0x4390, symBinAddr: 0x3CCD0, symSize: 0x10 } - - { offsetInCU: 0x1636, offset: 0xDD291, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCfD', symObjAddr: 0x43A0, symBinAddr: 0x3CCE0, symSize: 0x20 } - - { offsetInCU: 0x1663, offset: 0xDD2BE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC22setCookiesFromResponseyySo17NSHTTPURLResponseC_So24CAPInstanceConfigurationCSgtFZTf4nnd_n', symObjAddr: 0x48A0, symBinAddr: 0x3D190, symSize: 0x470 } - - { offsetInCU: 0x19C6, offset: 0xDD621, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC13buildResponse__12responseTypeSDySSypG10Foundation4DataVSg_So17NSHTTPURLResponseCAA0fH0OtFZTf4nnnd_n', symObjAddr: 0x4D10, symBinAddr: 0x3D600, symSize: 0xD80 } - - { offsetInCU: 0x1EAA, offset: 0xDDB05, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC3url10Foundation3URLVSgvpAETk', symObjAddr: 0x1F80, symBinAddr: 0x3A900, symSize: 0xA0 } - - { offsetInCU: 0x1EE1, offset: 0xDDB3C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvpAETK', symObjAddr: 0x2150, symBinAddr: 0x3AA90, symSize: 0x50 } - - { offsetInCU: 0x1F0E, offset: 0xDDB69, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6methodSSSgvpAETk', symObjAddr: 0x21A0, symBinAddr: 0x3AAE0, symSize: 0x70 } - - { offsetInCU: 0x1F46, offset: 0xDDBA1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderC6paramsSDyS2SGSgvpAETk', symObjAddr: 0x22F0, symBinAddr: 0x3AC30, symSize: 0x60 } - - { offsetInCU: 0x22F9, offset: 0xDDF54, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x42A0, symBinAddr: 0x3CBE0, symSize: 0xF0 } - - { offsetInCU: 0x2311, offset: 0xDDF6C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tgq5', symObjAddr: 0x43C0, symBinAddr: 0x3CD00, symSize: 0x60 } - - { offsetInCU: 0x2329, offset: 0xDDF84, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tgq5', symObjAddr: 0x4420, symBinAddr: 0x3CD60, symSize: 0x140 } - - { offsetInCU: 0x2371, offset: 0xDDFCC, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgq5Tf4gd_n', symObjAddr: 0x4560, symBinAddr: 0x3CEA0, symSize: 0xE0 } - - { offsetInCU: 0x24BB, offset: 0xDE116, size: 0x8, addend: 0x0, symName: '_$s10Foundation8URLErrorVAcA21_BridgedStoredNSErrorAAWl', symObjAddr: 0x5A90, symBinAddr: 0x3E380, symSize: 0x40 } - - { offsetInCU: 0x24CF, offset: 0xDE12A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMa', symObjAddr: 0x5B00, symBinAddr: 0x3E3C0, symSize: 0x30 } - - { offsetInCU: 0x24E3, offset: 0xDE13E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC7requestyySo13CAPPluginCallC_SSSgSo24CAPInstanceConfigurationCSgtKFZy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x5BA0, symBinAddr: 0x3E430, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0xDE152, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x5BD0, symBinAddr: 0x3E460, symSize: 0x20 } - - { offsetInCU: 0x250B, offset: 0xDE166, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x5BF0, symBinAddr: 0x3E480, symSize: 0x10 } - - { offsetInCU: 0x251F, offset: 0xDE17A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASQWb', symObjAddr: 0x5C50, symBinAddr: 0x3E4C0, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0xDE18E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOACSQAAWl', symObjAddr: 0x5C60, symBinAddr: 0x3E4D0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0xDE1A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwet', symObjAddr: 0x5DF0, symBinAddr: 0x3E640, symSize: 0x80 } - - { offsetInCU: 0x255B, offset: 0xDE1B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwst', symObjAddr: 0x5E70, symBinAddr: 0x3E6C0, symSize: 0xD0 } - - { offsetInCU: 0x256F, offset: 0xDE1CA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwug', symObjAddr: 0x5F40, symBinAddr: 0x3E790, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0xDE1DE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwup', symObjAddr: 0x5F50, symBinAddr: 0x3E7A0, symSize: 0x10 } - - { offsetInCU: 0x2597, offset: 0xDE1F2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOwui', symObjAddr: 0x5F60, symBinAddr: 0x3E7B0, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0xDE206, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOMa', symObjAddr: 0x5F70, symBinAddr: 0x3E7C0, symSize: 0x10 } - - { offsetInCU: 0x25BF, offset: 0xDE21A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerCMa', symObjAddr: 0x5F80, symBinAddr: 0x3E7D0, symSize: 0x20 } - - { offsetInCU: 0x25D3, offset: 0xDE22E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMU', symObjAddr: 0x5FC0, symBinAddr: 0x3E810, symSize: 0x10 } - - { offsetInCU: 0x25E7, offset: 0xDE242, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18HttpRequestHandlerC0abC7BuilderCMr', symObjAddr: 0x5FD0, symBinAddr: 0x3E820, symSize: 0x80 } - - { offsetInCU: 0x25FB, offset: 0xDE256, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVSgMa', symObjAddr: 0x6220, symBinAddr: 0x3EA70, symSize: 0x50 } - - { offsetInCU: 0x2676, offset: 0xDE2D1, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_S2SypTg5', symObjAddr: 0x1A0, symBinAddr: 0x38B60, symSize: 0x400 } - - { offsetInCU: 0x27C4, offset: 0xDE41F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_SayypGSSypTg5', symObjAddr: 0x5A0, symBinAddr: 0x38F60, symSize: 0x400 } - - { offsetInCU: 0x2924, offset: 0xDE57F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9A0, symBinAddr: 0x39360, symSize: 0x4C0 } - - { offsetInCU: 0x2A58, offset: 0xDE6B3, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_9Capacitor7JSValue_ps11AnyHashableVypTg5', symObjAddr: 0xE60, symBinAddr: 0x39820, symSize: 0x500 } - - { offsetInCU: 0x2B77, offset: 0xDE7D2, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_9Capacitor7JSValue_pSSypTg5', symObjAddr: 0x1360, symBinAddr: 0x39D20, symSize: 0x430 } - - { offsetInCU: 0x2CA5, offset: 0xDE900, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1790, symBinAddr: 0x3A150, symSize: 0x70 } - - { offsetInCU: 0x2D32, offset: 0xDE98D, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x1B50, symBinAddr: 0x3A510, symSize: 0xE0 } - - { offsetInCU: 0x2E15, offset: 0xDEA70, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1C30, symBinAddr: 0x3A5F0, symSize: 0x60 } - - { offsetInCU: 0x2EB3, offset: 0xDEB0E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1C90, symBinAddr: 0x3A650, symSize: 0x40 } - - { offsetInCU: 0x2F10, offset: 0xDEB6B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF9Capacitor12ResponseTypeO_TB5', symObjAddr: 0x1CD0, symBinAddr: 0x3A690, symSize: 0x60 } - - { offsetInCU: 0x2F8C, offset: 0xDEBE7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1F00, symBinAddr: 0x3A880, symSize: 0x10 } - - { offsetInCU: 0x2FA8, offset: 0xDEC03, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1F10, symBinAddr: 0x3A890, symSize: 0x10 } - - { offsetInCU: 0x2FC4, offset: 0xDEC1F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F20, symBinAddr: 0x3A8A0, symSize: 0x10 } - - { offsetInCU: 0x2FD8, offset: 0xDEC33, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12ResponseTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x3A8B0, symSize: 0x10 } - - { offsetInCU: 0x30E9, offset: 0xDED44, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lF9Capacitor18PluginHeaderMethodV_SayAGGTg5', symObjAddr: 0x2F70, symBinAddr: 0x3B8B0, symSize: 0xD0 } - - { offsetInCU: 0x32C8, offset: 0xDEF23, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lF10Foundation12URLQueryItemV_SayAGGTg5', symObjAddr: 0x3040, symBinAddr: 0x3B980, symSize: 0xF0 } - - { offsetInCU: 0x27, offset: 0xDF559, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF', symObjAddr: 0x0, symBinAddr: 0x3EB80, symSize: 0x1C0 } - - { offsetInCU: 0x81, offset: 0xDF5B3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE19replacingNullValuesSayAaD_pSgGyF', symObjAddr: 0x0, symBinAddr: 0x3EB80, symSize: 0x1C0 } - - { offsetInCU: 0x240, offset: 0xDF772, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pGRszlE23replacingOptionalValuesAEyF', symObjAddr: 0x1C0, symBinAddr: 0x3ED40, symSize: 0x10 } - - { offsetInCU: 0x2A0, offset: 0xDF7D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASayAA7JSValue_pSgGRszlE23replacingOptionalValuesSayAaD_pGyF', symObjAddr: 0x1D0, symBinAddr: 0x3ED50, symSize: 0x1C0 } - - { offsetInCU: 0x4B9, offset: 0xDF9EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOb', symObjAddr: 0x460, symBinAddr: 0x3EF10, symSize: 0x40 } - - { offsetInCU: 0x4CD, offset: 0xDF9FF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOc', symObjAddr: 0x4A0, symBinAddr: 0x3EF50, symSize: 0x40 } - - { offsetInCU: 0x4E1, offset: 0xDFA13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7JSValue_pSgWOh', symObjAddr: 0x4E0, symBinAddr: 0x3EF90, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0xDFBF6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24catchallOptionsParameterSSvpZ', symObjAddr: 0x152C0, symBinAddr: 0x79C50, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xDFC10, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC17callbackParameterSSvpZ', symObjAddr: 0x152D0, symBinAddr: 0x79C60, symSize: 0x0 } - - { offsetInCU: 0xDB, offset: 0xDFC82, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC14exportBridgeJS21userContentControllerySo06WKUsergH0C_tKFZ', symObjAddr: 0x0, symBinAddr: 0x3EFD0, symSize: 0x3A0 } - - { offsetInCU: 0x298, offset: 0xDFE3F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC22exportCordovaPluginsJS21userContentControllerySo06WKUserhI0C_tKFZ', symObjAddr: 0x3A0, symBinAddr: 0x3F370, symSize: 0x1C0 } - - { offsetInCU: 0x2F4, offset: 0xDFE9B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC20injectFilesForFolder6folder21userContentControllery10Foundation3URLV_So06WKUseriJ0CtFZ', symObjAddr: 0xB20, symBinAddr: 0x3FAF0, symSize: 0x570 } - - { offsetInCU: 0x5F9, offset: 0xE01A0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportCfD', symObjAddr: 0x1090, symBinAddr: 0x40060, symSize: 0x20 } - - { offsetInCU: 0x626, offset: 0xE01CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC06exportA8GlobalJS21userContentController7isDebug14loggingEnabled8localUrlySo06WKUsergH0C_S2bSStKFZTf4nnnnd_n', symObjAddr: 0x1140, symBinAddr: 0x400A0, symSize: 0x1D0 } - - { offsetInCU: 0x85D, offset: 0xE0404, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC10injectFile7fileURL21userContentControllery10Foundation0F0V_So06WKUserhI0CtKFZTf4nnd_n', symObjAddr: 0x1310, symBinAddr: 0x40270, symSize: 0x1A0 } - - { offsetInCU: 0x9B3, offset: 0xE055A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC14generateMethod33_35B4C07ABE18CB14DB9A3F920E64F657LL15pluginClassName6methodS2S_So09CAPPluginD0CtFZTf4nnd_n', symObjAddr: 0x14B0, symBinAddr: 0x40410, symSize: 0x980 } - - { offsetInCU: 0x15BA, offset: 0xE1161, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24createPluginHeaderMethod33_35B4C07ABE18CB14DB9A3F920E64F657LL6methodAA0deF0VSo09CAPPluginF0C_tFZTf4nd_n', symObjAddr: 0x1E30, symBinAddr: 0x40D90, symSize: 0xE0 } - - { offsetInCU: 0x1678, offset: 0xE121F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC18createPluginHeader33_35B4C07ABE18CB14DB9A3F920E64F657LL3forAA0dE0VSgSo010CAPBridgedD0_So9CAPPluginCXc_tFZTf4nd_n', symObjAddr: 0x1F10, symBinAddr: 0x40E70, symSize: 0x330 } - - { offsetInCU: 0x193F, offset: 0xE14E6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC8exportJS3for2inySo16CAPBridgedPlugin_So9CAPPluginCXc_So23WKUserContentControllerCtFZTf4nnd_n', symObjAddr: 0x2240, symBinAddr: 0x411A0, symSize: 0x680 } - - { offsetInCU: 0x1FAF, offset: 0xE1B56, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC15exportCordovaJS21userContentControllerySo06WKUsergH0C_tKFZTf4nd_n', symObjAddr: 0x28C0, symBinAddr: 0x41820, symSize: 0x5F0 } - - { offsetInCU: 0x2245, offset: 0xE1DEC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueSSvg', symObjAddr: 0x560, symBinAddr: 0x3F530, symSize: 0x30 } - - { offsetInCU: 0x226C, offset: 0xE1E13, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x5B0, symBinAddr: 0x3F580, symSize: 0x10 } - - { offsetInCU: 0x2297, offset: 0xE1E3E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x5C0, symBinAddr: 0x3F590, symSize: 0x20 } - - { offsetInCU: 0x22C8, offset: 0xE1E6F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x5E0, symBinAddr: 0x3F5B0, symSize: 0x10 } - - { offsetInCU: 0x22E4, offset: 0xE1E8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3530, symBinAddr: 0x423A0, symSize: 0xA0 } - - { offsetInCU: 0x232A, offset: 0xE1ED1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV6encode2toys7Encoder_p_tKF', symObjAddr: 0x630, symBinAddr: 0x3F600, symSize: 0x110 } - - { offsetInCU: 0x237F, offset: 0xE1F26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x8C0, symBinAddr: 0x3F890, symSize: 0x30 } - - { offsetInCU: 0x23B6, offset: 0xE1F5D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x8F0, symBinAddr: 0x3F8C0, symSize: 0x20 } - - { offsetInCU: 0x23D9, offset: 0xE1F80, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x35D0, symBinAddr: 0x42440, symSize: 0x180 } - - { offsetInCU: 0x2429, offset: 0xE1FD0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueSSvg', symObjAddr: 0x740, symBinAddr: 0x3F710, symSize: 0x40 } - - { offsetInCU: 0x2474, offset: 0xE201B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x910, symBinAddr: 0x3F8E0, symSize: 0x10 } - - { offsetInCU: 0x24D4, offset: 0xE207B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x970, symBinAddr: 0x3F940, symSize: 0x20 } - - { offsetInCU: 0x254E, offset: 0xE20F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x9E0, symBinAddr: 0x3F9B0, symSize: 0x10 } - - { offsetInCU: 0x2579, offset: 0xE2120, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9F0, symBinAddr: 0x3F9C0, symSize: 0x20 } - - { offsetInCU: 0x25AA, offset: 0xE2151, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xA10, symBinAddr: 0x3F9E0, symSize: 0x10 } - - { offsetInCU: 0x25C6, offset: 0xE216D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xA20, symBinAddr: 0x3F9F0, symSize: 0x10 } - - { offsetInCU: 0x25E2, offset: 0xE2189, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x37B0, symBinAddr: 0x425F0, symSize: 0xA0 } - - { offsetInCU: 0x2628, offset: 0xE21CF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV6encode2toys7Encoder_p_tKF', symObjAddr: 0x780, symBinAddr: 0x3F750, symSize: 0x140 } - - { offsetInCU: 0x267D, offset: 0xE2224, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xA70, symBinAddr: 0x3FA40, symSize: 0x30 } - - { offsetInCU: 0x26B4, offset: 0xE225B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xAA0, symBinAddr: 0x3FA70, symSize: 0x20 } - - { offsetInCU: 0x26D7, offset: 0xE227E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3850, symBinAddr: 0x42690, symSize: 0x1B0 } - - { offsetInCU: 0x271F, offset: 0xE22C6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC24catchallOptionsParameter_WZ', symObjAddr: 0xAC0, symBinAddr: 0x3FA90, symSize: 0x30 } - - { offsetInCU: 0x2739, offset: 0xE22E0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportC17callbackParameter_WZ', symObjAddr: 0xAF0, symBinAddr: 0x3FAC0, symSize: 0x30 } - - { offsetInCU: 0x27AB, offset: 0xE2352, size: 0x8, addend: 0x0, symName: '_$s9Capacitor8JSExportCMa', symObjAddr: 0x10B0, symBinAddr: 0x40080, symSize: 0x20 } - - { offsetInCU: 0x29BA, offset: 0xE2561, size: 0x8, addend: 0x0, symName: '_$sSo15CAPPluginMethodCMa', symObjAddr: 0x2EE0, symBinAddr: 0x41E10, symSize: 0x30 } - - { offsetInCU: 0x29CE, offset: 0xE2575, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSgxSgSEsSERzlWl', symObjAddr: 0x2F10, symBinAddr: 0x41E40, symSize: 0x60 } - - { offsetInCU: 0x29E2, offset: 0xE2589, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVACSEAAWl', symObjAddr: 0x2F70, symBinAddr: 0x41EA0, symSize: 0x30 } - - { offsetInCU: 0x29F6, offset: 0xE259D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVSgWOe', symObjAddr: 0x2FA0, symBinAddr: 0x41ED0, symSize: 0x30 } - - { offsetInCU: 0x2A0A, offset: 0xE25B1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwCP', symObjAddr: 0x3060, symBinAddr: 0x41F00, symSize: 0x30 } - - { offsetInCU: 0x2A1E, offset: 0xE25C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwxx', symObjAddr: 0x3090, symBinAddr: 0x41F30, symSize: 0x30 } - - { offsetInCU: 0x2A32, offset: 0xE25D9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwcp', symObjAddr: 0x30C0, symBinAddr: 0x41F60, symSize: 0x40 } - - { offsetInCU: 0x2A46, offset: 0xE25ED, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwca', symObjAddr: 0x3100, symBinAddr: 0x41FA0, symSize: 0x60 } - - { offsetInCU: 0x2A5A, offset: 0xE2601, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x3160, symBinAddr: 0x42000, symSize: 0x20 } - - { offsetInCU: 0x2A6E, offset: 0xE2615, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwta', symObjAddr: 0x3180, symBinAddr: 0x42020, symSize: 0x50 } - - { offsetInCU: 0x2A82, offset: 0xE2629, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwet', symObjAddr: 0x31D0, symBinAddr: 0x42070, symSize: 0x40 } - - { offsetInCU: 0x2A96, offset: 0xE263D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVwst', symObjAddr: 0x3210, symBinAddr: 0x420B0, symSize: 0x50 } - - { offsetInCU: 0x2AAA, offset: 0xE2651, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVMa', symObjAddr: 0x3260, symBinAddr: 0x42100, symSize: 0x10 } - - { offsetInCU: 0x2ABE, offset: 0xE2665, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwCP', symObjAddr: 0x3270, symBinAddr: 0x42110, symSize: 0x40 } - - { offsetInCU: 0x2AD2, offset: 0xE2679, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwxx', symObjAddr: 0x32B0, symBinAddr: 0x42150, symSize: 0x30 } - - { offsetInCU: 0x2AE6, offset: 0xE268D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwcp', symObjAddr: 0x32E0, symBinAddr: 0x42180, symSize: 0x40 } - - { offsetInCU: 0x2AFA, offset: 0xE26A1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwca', symObjAddr: 0x3320, symBinAddr: 0x421C0, symSize: 0x60 } - - { offsetInCU: 0x2B0E, offset: 0xE26B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3380, symBinAddr: 0x42220, symSize: 0x20 } - - { offsetInCU: 0x2B22, offset: 0xE26C9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwta', symObjAddr: 0x33A0, symBinAddr: 0x42240, symSize: 0x40 } - - { offsetInCU: 0x2B36, offset: 0xE26DD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwet', symObjAddr: 0x33E0, symBinAddr: 0x42280, symSize: 0x40 } - - { offsetInCU: 0x2B4A, offset: 0xE26F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVwst', symObjAddr: 0x3420, symBinAddr: 0x422C0, symSize: 0x40 } - - { offsetInCU: 0x2B5E, offset: 0xE2705, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderVMa', symObjAddr: 0x3460, symBinAddr: 0x42300, symSize: 0x10 } - - { offsetInCU: 0x2B72, offset: 0xE2719, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs0D3KeyAAWl', symObjAddr: 0x34A0, symBinAddr: 0x42310, symSize: 0x30 } - - { offsetInCU: 0x2B86, offset: 0xE272D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVACSEAAWl', symObjAddr: 0x3500, symBinAddr: 0x42370, symSize: 0x30 } - - { offsetInCU: 0x2B9A, offset: 0xE2741, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs0E3KeyAAWl', symObjAddr: 0x3750, symBinAddr: 0x425C0, symSize: 0x30 } - - { offsetInCU: 0x2BAE, offset: 0xE2755, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodVACSeAAWl', symObjAddr: 0x3A70, symBinAddr: 0x428B0, symSize: 0x30 } - - { offsetInCU: 0x2BC2, offset: 0xE2769, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwup', symObjAddr: 0x3AE0, symBinAddr: 0x42900, symSize: 0x10 } - - { offsetInCU: 0x2BD6, offset: 0xE277D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOMa', symObjAddr: 0x3AF0, symBinAddr: 0x42910, symSize: 0x10 } - - { offsetInCU: 0x2BEA, offset: 0xE2791, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwug', symObjAddr: 0x3C70, symBinAddr: 0x42A90, symSize: 0x10 } - - { offsetInCU: 0x2BFE, offset: 0xE27A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwup', symObjAddr: 0x3C80, symBinAddr: 0x42AA0, symSize: 0x10 } - - { offsetInCU: 0x2C12, offset: 0xE27B9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOwui', symObjAddr: 0x3C90, symBinAddr: 0x42AB0, symSize: 0x10 } - - { offsetInCU: 0x2C26, offset: 0xE27CD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOMa', symObjAddr: 0x3CA0, symBinAddr: 0x42AC0, symSize: 0x10 } - - { offsetInCU: 0x2C3A, offset: 0xE27E1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASQWb', symObjAddr: 0x3CB0, symBinAddr: 0x42AD0, symSize: 0x10 } - - { offsetInCU: 0x2C4E, offset: 0xE27F5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFSQAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x42AE0, symSize: 0x30 } - - { offsetInCU: 0x2C62, offset: 0xE2809, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOSHAASQWb', symObjAddr: 0x3CF0, symBinAddr: 0x42B10, symSize: 0x10 } - - { offsetInCU: 0x2C76, offset: 0xE281D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFSQAAWl', symObjAddr: 0x3D00, symBinAddr: 0x42B20, symSize: 0x30 } - - { offsetInCU: 0x2C8A, offset: 0xE2831, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3D30, symBinAddr: 0x42B50, symSize: 0x10 } - - { offsetInCU: 0x2C9E, offset: 0xE2845, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3D40, symBinAddr: 0x42B60, symSize: 0x30 } - - { offsetInCU: 0x2CB2, offset: 0xE2859, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3D70, symBinAddr: 0x42B90, symSize: 0x10 } - - { offsetInCU: 0x2CC6, offset: 0xE286D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3D80, symBinAddr: 0x42BA0, symSize: 0x30 } - - { offsetInCU: 0x2CDA, offset: 0xE2881, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3DB0, symBinAddr: 0x42BD0, symSize: 0x10 } - - { offsetInCU: 0x2CEE, offset: 0xE2895, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3DC0, symBinAddr: 0x42BE0, symSize: 0x30 } - - { offsetInCU: 0x2D02, offset: 0xE28A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3DF0, symBinAddr: 0x42C10, symSize: 0x10 } - - { offsetInCU: 0x2D16, offset: 0xE28BD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3E00, symBinAddr: 0x42C20, symSize: 0x30 } - - { offsetInCU: 0x2D61, offset: 0xE2908, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x5F0, symBinAddr: 0x3F5C0, symSize: 0x20 } - - { offsetInCU: 0x2D7D, offset: 0xE2924, size: 0x8, addend: 0x0, symName: '_$s9Capacitor18PluginHeaderMethodV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x610, symBinAddr: 0x3F5E0, symSize: 0x20 } - - { offsetInCU: 0x2D9F, offset: 0xE2946, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xA30, symBinAddr: 0x3FA00, symSize: 0x20 } - - { offsetInCU: 0x2DBB, offset: 0xE2962, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginHeaderV10CodingKeys33_35B4C07ABE18CB14DB9A3F920E64F657LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xA50, symBinAddr: 0x3FA20, symSize: 0x20 } - - { offsetInCU: 0xF3, offset: 0xE2E04, size: 0x8, addend: 0x0, symName: '_$s9Capacitor9hexString33_750E6D65F9E101F235B3FD4952DBE776LLySSs16IndexingIteratorVySays5UInt8VGGF', symObjAddr: 0x0, symBinAddr: 0x42CA0, symSize: 0x1C0 } - - { offsetInCU: 0x413, offset: 0xE3124, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9CapacitorE6sha256SSvg', symObjAddr: 0x1C0, symBinAddr: 0x42E60, symSize: 0x150 } - - { offsetInCU: 0x4FA, offset: 0xE320B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV9CapacitorE6sha256SSvgySWXEfU_', symObjAddr: 0x310, symBinAddr: 0x42FB0, symSize: 0xD0 } - - { offsetInCU: 0x76E, offset: 0xE347F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC03getbC0SSyFZ', symObjAddr: 0x3E0, symBinAddr: 0x43080, symSize: 0xE0 } - - { offsetInCU: 0x7CB, offset: 0xE34DC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC010regeneratebC0yyFZ', symObjAddr: 0x4C0, symBinAddr: 0x43160, symSize: 0x10 } - - { offsetInCU: 0x7DF, offset: 0xE34F0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCfd', symObjAddr: 0x4D0, symBinAddr: 0x43170, symSize: 0x10 } - - { offsetInCU: 0x80C, offset: 0xE351D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCfD', symObjAddr: 0x4E0, symBinAddr: 0x43180, symSize: 0x20 } - - { offsetInCU: 0x887, offset: 0xE3598, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC010regeneratebC0yyFZTf4d_n', symObjAddr: 0x710, symBinAddr: 0x43350, symSize: 0x1A0 } - - { offsetInCU: 0x937, offset: 0xE3648, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDC06assertbC033_750E6D65F9E101F235B3FD4952DBE776LLyyFZTf4d_n', symObjAddr: 0x8B0, symBinAddr: 0x434F0, symSize: 0x110 } - - { offsetInCU: 0x9C7, offset: 0xE36D8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0V15withUnsafeBytesyxxSWKXEKlFyt_Tg5015$s10Foundation4B31V9CapacitorE6sha256SSvgySWXEfU_ACSays5UInt8VGTf1ncn_n', symObjAddr: 0x500, symBinAddr: 0x431A0, symSize: 0xF0 } - - { offsetInCU: 0xA07, offset: 0xE3718, size: 0x8, addend: 0x0, symName: '_$s10Foundation13__DataStorageC15withUnsafeBytes2in5applyxSnySiG_xSWKXEtKlFyt_Tg5015$s10Foundation4B31V9CapacitorE6sha256SSvgySWXEfU_AA0B0VSays5UInt8VGTf1nncn_n', symObjAddr: 0x5F0, symBinAddr: 0x43290, symSize: 0xC0 } - - { offsetInCU: 0xA3D, offset: 0xE374E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7AppUUIDCMa', symObjAddr: 0x9C0, symBinAddr: 0x43600, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0xE3A2F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfC', symObjAddr: 0x0, symBinAddr: 0x43640, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0xE3A4D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC6routerAcA6Router_p_tcfc', symObjAddr: 0x30, symBinAddr: 0x43670, symSize: 0x3C20 } - - { offsetInCU: 0x143, offset: 0xE3B23, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03setD4PathyySSF', symObjAddr: 0x3C90, symBinAddr: 0x47290, symSize: 0x90 } - - { offsetInCU: 0x1C4, offset: 0xE3BA4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC12setServerUrlyy10Foundation3URLVSgF', symObjAddr: 0x3D20, symBinAddr: 0x47320, symSize: 0x90 } - - { offsetInCU: 0x22C, offset: 0xE3C0C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptF', symObjAddr: 0x3DB0, symBinAddr: 0x473B0, symSize: 0x10 } - - { offsetInCU: 0x24F, offset: 0xE3C2F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptFTo', symObjAddr: 0x3ED0, symBinAddr: 0x474D0, symSize: 0x70 } - - { offsetInCU: 0x281, offset: 0xE3C61, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptF', symObjAddr: 0x3F40, symBinAddr: 0x47540, symSize: 0xB0 } - - { offsetInCU: 0x399, offset: 0xE3D79, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_4stopySo05WKWebC0C_So15WKURLSchemeTask_ptFTo', symObjAddr: 0x3FF0, symBinAddr: 0x475F0, symSize: 0x110 } - - { offsetInCU: 0x49B, offset: 0xE3E7B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC20mimeTypeForExtension04pathI0S2S_tF', symObjAddr: 0x4100, symBinAddr: 0x47700, symSize: 0x160 } - - { offsetInCU: 0x54B, offset: 0xE3F2B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfC', symObjAddr: 0x4260, symBinAddr: 0x47860, symSize: 0x20 } - - { offsetInCU: 0x569, offset: 0xE3F49, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfc', symObjAddr: 0x4280, symBinAddr: 0x47880, symSize: 0x30 } - - { offsetInCU: 0x5CC, offset: 0xE3FAC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCACycfcTo', symObjAddr: 0x42B0, symBinAddr: 0x478B0, symSize: 0x30 } - - { offsetInCU: 0x633, offset: 0xE4013, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCfD', symObjAddr: 0x42E0, symBinAddr: 0x478E0, symSize: 0x30 } - - { offsetInCU: 0x660, offset: 0xE4040, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC16isMediaExtension04pathH0SbSS_tFTf4nd_n', symObjAddr: 0x5300, symBinAddr: 0x487F0, symSize: 0x160 } - - { offsetInCU: 0x797, offset: 0xE4177, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerC03webC0_5startySo05WKWebC0C_So15WKURLSchemeTask_ptFTf4dnn_n', symObjAddr: 0x5460, symBinAddr: 0x48950, symSize: 0x1C10 } - - { offsetInCU: 0x1317, offset: 0xE4CF7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCfETo', symObjAddr: 0x4310, symBinAddr: 0x47910, symSize: 0x40 } - - { offsetInCU: 0x1388, offset: 0xE4D68, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_SSTg5', symObjAddr: 0x4350, symBinAddr: 0x47950, symSize: 0xD0 } - - { offsetInCU: 0x144C, offset: 0xE4E2C, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_SiTg5', symObjAddr: 0x4420, symBinAddr: 0x47A20, symSize: 0x110 } - - { offsetInCU: 0x14E9, offset: 0xE4EC9, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFSi_Tg5', symObjAddr: 0x4530, symBinAddr: 0x47B30, symSize: 0x2A0 } - - { offsetInCU: 0x1560, offset: 0xE4F40, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0x47D0, symBinAddr: 0x47DD0, symSize: 0x80 } - - { offsetInCU: 0x1578, offset: 0xE4F58, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0x4850, symBinAddr: 0x47E50, symSize: 0x60 } - - { offsetInCU: 0x15CD, offset: 0xE4FAD, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0x48B0, symBinAddr: 0x47EB0, symSize: 0x170 } - - { offsetInCU: 0x163B, offset: 0xE501B, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0x4A20, symBinAddr: 0x48020, symSize: 0x100 } - - { offsetInCU: 0x1660, offset: 0xE5040, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0x4B20, symBinAddr: 0x48120, symSize: 0x2D0 } - - { offsetInCU: 0x1699, offset: 0xE5079, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0x4DF0, symBinAddr: 0x483F0, symSize: 0xA0 } - - { offsetInCU: 0x16B1, offset: 0xE5091, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6Router_pWOc', symObjAddr: 0x4E90, symBinAddr: 0x48490, symSize: 0x30 } - - { offsetInCU: 0x16C5, offset: 0xE50A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMa', symObjAddr: 0x4EC0, symBinAddr: 0x484C0, symSize: 0x30 } - - { offsetInCU: 0x16D9, offset: 0xE50B9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x5000, symBinAddr: 0x484F0, symSize: 0x70 } - - { offsetInCU: 0x1793, offset: 0xE5173, size: 0x8, addend: 0x0, symName: '_$sSh21_nonEmptyArrayLiteralShyxGSayxG_tcfCSo16NSURLResourceKeya_Tg5Tf4gd_n', symObjAddr: 0x5070, symBinAddr: 0x48560, symSize: 0x290 } - - { offsetInCU: 0x1B14, offset: 0xE54F4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMU', symObjAddr: 0x7070, symBinAddr: 0x4A560, symSize: 0x10 } - - { offsetInCU: 0x1B28, offset: 0xE5508, size: 0x8, addend: 0x0, symName: '_$s9Capacitor19WebViewAssetHandlerCMr', symObjAddr: 0x7080, symBinAddr: 0x4A570, symSize: 0x80 } - - { offsetInCU: 0x1D97, offset: 0xE5777, size: 0x8, addend: 0x0, symName: '_$sSo12NSFileHandleC14forReadingFromAB10Foundation3URLV_tKcfCTO', symObjAddr: 0x3DC0, symBinAddr: 0x473C0, symSize: 0x110 } - - { offsetInCU: 0x98, offset: 0xE5B15, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC4httpyySo13CAPPluginCallC_SSSgtF', symObjAddr: 0x0, symBinAddr: 0x4A6D0, symSize: 0x3A0 } - - { offsetInCU: 0x1D1, offset: 0xE5C4E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC4httpyySo13CAPPluginCallC_SSSgtFTo', symObjAddr: 0x3A0, symBinAddr: 0x4AA70, symSize: 0x90 } - - { offsetInCU: 0x217, offset: 0xE5C94, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC7requestyySo13CAPPluginCallCFTo', symObjAddr: 0x430, symBinAddr: 0x4AB00, symSize: 0x50 } - - { offsetInCU: 0x25A, offset: 0xE5CD7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x590, symBinAddr: 0x4AC60, symSize: 0xB0 } - - { offsetInCU: 0x278, offset: 0xE5CF5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x640, symBinAddr: 0x4AD10, symSize: 0xB0 } - - { offsetInCU: 0x2F1, offset: 0xE5D6E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x710, symBinAddr: 0x4ADE0, symSize: 0xD0 } - - { offsetInCU: 0x34A, offset: 0xE5DC7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfC', symObjAddr: 0x7E0, symBinAddr: 0x4AEB0, symSize: 0x20 } - - { offsetInCU: 0x368, offset: 0xE5DE5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfc', symObjAddr: 0x800, symBinAddr: 0x4AED0, symSize: 0x30 } - - { offsetInCU: 0x3A3, offset: 0xE5E20, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCACycfcTo', symObjAddr: 0x830, symBinAddr: 0x4AF00, symSize: 0x30 } - - { offsetInCU: 0x3DE, offset: 0xE5E5B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCfD', symObjAddr: 0x860, symBinAddr: 0x4AF30, symSize: 0x30 } - - { offsetInCU: 0x40C, offset: 0xE5E89, size: 0x8, addend: 0x0, symName: '_$s9Capacitor13CAPHttpPluginCMa', symObjAddr: 0x6F0, symBinAddr: 0x4ADC0, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0xE6041, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF', symObjAddr: 0x0, symBinAddr: 0x4AFB0, symSize: 0x100 } - - { offsetInCU: 0x6D, offset: 0xE6083, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtF', symObjAddr: 0x0, symBinAddr: 0x4AFB0, symSize: 0x100 } - - { offsetInCU: 0xF2, offset: 0xE6108, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getStringySSSgSS_AEtFTo', symObjAddr: 0x1A0, symBinAddr: 0x4B0B0, symSize: 0xB0 } - - { offsetInCU: 0x10E, offset: 0xE6124, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtF', symObjAddr: 0x250, symBinAddr: 0x4B160, symSize: 0xF0 } - - { offsetInCU: 0x193, offset: 0xE61A9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC10getBooleanySbSS_SbtFTo', symObjAddr: 0x340, symBinAddr: 0x4B250, symSize: 0x70 } - - { offsetInCU: 0x1AF, offset: 0xE61C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC6getIntySiSS_SitF', symObjAddr: 0x3B0, symBinAddr: 0x4B2C0, symSize: 0xF0 } - - { offsetInCU: 0x234, offset: 0xE624A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC6getIntySiSS_SitFTo', symObjAddr: 0x4A0, symBinAddr: 0x4B3B0, symSize: 0x70 } - - { offsetInCU: 0x250, offset: 0xE6266, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC8getArrayySayAA7JSValue_pGSgSS_AGtF', symObjAddr: 0x510, symBinAddr: 0x4B420, symSize: 0x100 } - - { offsetInCU: 0x2D5, offset: 0xE62EB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC9getObjectySDySSAA7JSValue_pGSgSSF', symObjAddr: 0x610, symBinAddr: 0x4B520, symSize: 0xF0 } - - { offsetInCU: 0x34A, offset: 0xE6360, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyF', symObjAddr: 0x700, symBinAddr: 0x4B610, symSize: 0x20 } - - { offsetInCU: 0x3B8, offset: 0xE63CE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC7isEmptySbyFTo', symObjAddr: 0x720, symBinAddr: 0x4B630, symSize: 0x20 } - - { offsetInCU: 0x426, offset: 0xE643C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigC03getC4JSONSDySSAA7JSValue_pGyF', symObjAddr: 0x740, symBinAddr: 0x4B650, symSize: 0x20 } - - { offsetInCU: 0x471, offset: 0xE6487, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfC', symObjAddr: 0x760, symBinAddr: 0x4B670, symSize: 0x20 } - - { offsetInCU: 0x48F, offset: 0xE64A5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfc', symObjAddr: 0x780, symBinAddr: 0x4B690, symSize: 0x30 } - - { offsetInCU: 0x4F2, offset: 0xE6508, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCACycfcTo', symObjAddr: 0x7B0, symBinAddr: 0x4B6C0, symSize: 0x30 } - - { offsetInCU: 0x559, offset: 0xE656F, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCfD', symObjAddr: 0x7E0, symBinAddr: 0x4B6F0, symSize: 0x30 } - - { offsetInCU: 0x5D4, offset: 0xE65EA, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCMa', symObjAddr: 0x810, symBinAddr: 0x4B720, symSize: 0x20 } - - { offsetInCU: 0x5E8, offset: 0xE65FE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor12PluginConfigCfETo', symObjAddr: 0x830, symBinAddr: 0x4B740, symSize: 0x20 } - - { offsetInCU: 0x106, offset: 0xE68A6, size: 0x8, addend: 0x0, symName: '_$sSD9CapacitorSSRszAA7JSValue_pRs_rlE7keyPathAaB_pSgAA03KeyD0V_tcig', symObjAddr: 0x0, symBinAddr: 0x4B880, symSize: 0x2D0 } - - { offsetInCU: 0x389, offset: 0xE6B29, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAAsADP06stringG0x0fG4TypeQz_tcfCTW', symObjAddr: 0x370, symBinAddr: 0x4BBF0, symSize: 0x20 } - - { offsetInCU: 0x408, offset: 0xE6BA8, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x390, symBinAddr: 0x4BC10, symSize: 0x170 } - - { offsetInCU: 0x53A, offset: 0xE6CDA, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x500, symBinAddr: 0x4BD80, symSize: 0xA0 } - - { offsetInCU: 0x63D, offset: 0xE6DDD, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAAs0de23ExtendedGraphemeClusterG0PWb', symObjAddr: 0x6E0, symBinAddr: 0x4BE20, symSize: 0x10 } - - { offsetInCU: 0x651, offset: 0xE6DF1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x6F0, symBinAddr: 0x4BE30, symSize: 0x30 } - - { offsetInCU: 0x665, offset: 0xE6E05, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs26ExpressibleByStringLiteralAA0fG4TypesADP_s01_de7BuiltinfG0PWT', symObjAddr: 0x720, symBinAddr: 0x4BE60, symSize: 0x10 } - - { offsetInCU: 0x679, offset: 0xE6E19, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0de13UnicodeScalarI0PWb', symObjAddr: 0x730, symBinAddr: 0x4BE70, symSize: 0x10 } - - { offsetInCU: 0x68D, offset: 0xE6E2D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x740, symBinAddr: 0x4BE80, symSize: 0x30 } - - { offsetInCU: 0x6A1, offset: 0xE6E41, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0fghI4TypesADP_s01_de7BuiltinfghI0PWT', symObjAddr: 0x770, symBinAddr: 0x4BEB0, symSize: 0x10 } - - { offsetInCU: 0x6B5, offset: 0xE6E55, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0fgH4TypesADP_s01_de7BuiltinfgH0PWT', symObjAddr: 0x780, symBinAddr: 0x4BEC0, symSize: 0x10 } - - { offsetInCU: 0x6C9, offset: 0xE6E69, size: 0x8, addend: 0x0, symName: '_$s9Capacitor7KeyPathVMa', symObjAddr: 0x790, symBinAddr: 0x4BED0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0xE7080, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCF', symObjAddr: 0x0, symBinAddr: 0x4BF00, symSize: 0x10 } - - { offsetInCU: 0x6E, offset: 0xE70A3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCFTo', symObjAddr: 0x10, symBinAddr: 0x4BF10, symSize: 0x50 } - - { offsetInCU: 0xA0, offset: 0xE70D5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x60, symBinAddr: 0x4BF60, symSize: 0xB0 } - - { offsetInCU: 0xBE, offset: 0xE70F3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x110, symBinAddr: 0x4C010, symSize: 0xB0 } - - { offsetInCU: 0x137, offset: 0xE716C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC6bridge8pluginId0E4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x1C0, symBinAddr: 0x4C0C0, symSize: 0xD0 } - - { offsetInCU: 0x190, offset: 0xE71C5, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfC', symObjAddr: 0x290, symBinAddr: 0x4C190, symSize: 0x20 } - - { offsetInCU: 0x1AE, offset: 0xE71E3, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfc', symObjAddr: 0x2B0, symBinAddr: 0x4C1B0, symSize: 0x30 } - - { offsetInCU: 0x1E9, offset: 0xE721E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCACycfcTo', symObjAddr: 0x2E0, symBinAddr: 0x4C1E0, symSize: 0x30 } - - { offsetInCU: 0x224, offset: 0xE7259, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCfD', symObjAddr: 0x310, symBinAddr: 0x4C210, symSize: 0x30 } - - { offsetInCU: 0x251, offset: 0xE7286, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginC3logyySo13CAPPluginCallCFTf4nd_n', symObjAddr: 0x340, symBinAddr: 0x4C240, symSize: 0x1A0 } - - { offsetInCU: 0x50F, offset: 0xE7544, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPConsolePluginCMa', symObjAddr: 0x4E0, symBinAddr: 0x4C3E0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0xE76D2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvpZ', symObjAddr: 0x588, symBinAddr: 0x77830, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0xE76EC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZ', symObjAddr: 0x0, symBinAddr: 0x4C440, symSize: 0x10 } - - { offsetInCU: 0x81, offset: 0xE7708, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvgZ', symObjAddr: 0x10, symBinAddr: 0x4C450, symSize: 0x30 } - - { offsetInCU: 0xAC, offset: 0xE7733, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvsZ', symObjAddr: 0x40, symBinAddr: 0x4C480, symSize: 0x40 } - - { offsetInCU: 0xE7, offset: 0xE776E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvMZ', symObjAddr: 0x80, symBinAddr: 0x4C4C0, symSize: 0x30 } - - { offsetInCU: 0x112, offset: 0xE7799, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC13enableLoggingSbvMZ.resume.0', symObjAddr: 0xB0, symBinAddr: 0x4C4F0, symSize: 0x10 } - - { offsetInCU: 0x13D, offset: 0xE77C4, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCfd', symObjAddr: 0xC0, symBinAddr: 0x4C500, symSize: 0x10 } - - { offsetInCU: 0x16A, offset: 0xE77F1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCfD', symObjAddr: 0xD0, symBinAddr: 0x4C510, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0xE781E, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogC5print_9separator10terminatoryypd_S2StFZTf4nnnd_n', symObjAddr: 0xF0, symBinAddr: 0x4C530, symSize: 0x340 } - - { offsetInCU: 0x496, offset: 0xE7B1D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor6CAPLogCMa', symObjAddr: 0x430, symBinAddr: 0x4C870, symSize: 0x20 } - - { offsetInCU: 0x4AA, offset: 0xE7B31, size: 0x8, addend: 0x0, symName: '_$sSi6offset_yp7elementtSgWOb', symObjAddr: 0x4C0, symBinAddr: 0x4C8B0, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0xE7D07, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09CAPPluginE0CSgSS_tF', symObjAddr: 0x0, symBinAddr: 0x4C910, symSize: 0x90 } - - { offsetInCU: 0x3F, offset: 0xE7D1F, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09CAPPluginE0CSgSS_tF', symObjAddr: 0x0, symBinAddr: 0x4C910, symSize: 0x90 } - - { offsetInCU: 0x1EA, offset: 0xE7ECA, size: 0x8, addend: 0x0, symName: '_$sSTsE5first5where7ElementQzSgSbADKXE_tKFSaySo15CAPPluginMethodCG_Tg5054$sSo16CAPBridgedPluginP9CapacitorE9getMethod5namedSo09D19E0CSgSS_tFSbAGXEfU_SSTf1cn_nTf4ng_n', symObjAddr: 0xC0, symBinAddr: 0x4C9A0, symSize: 0x1B0 } - - { offsetInCU: 0x43, offset: 0xE819A, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvgTo', symObjAddr: 0x230, symBinAddr: 0x4CD80, symSize: 0xB0 } - - { offsetInCU: 0x5F, offset: 0xE81B6, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE12errorPathURL10Foundation0F0VSgvg', symObjAddr: 0x2E0, symBinAddr: 0x4CE30, symSize: 0x120 } - - { offsetInCU: 0x108, offset: 0xE825F, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStF', symObjAddr: 0x400, symBinAddr: 0x4CF50, symSize: 0x190 } - - { offsetInCU: 0x1F5, offset: 0xE834C, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE20getPluginConfigValueyypSgSS_SStFTo', symObjAddr: 0x660, symBinAddr: 0x4D0E0, symSize: 0xF0 } - - { offsetInCU: 0x262, offset: 0xE83B9, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSF', symObjAddr: 0x750, symBinAddr: 0x4D1D0, symSize: 0x1C0 } - - { offsetInCU: 0x33B, offset: 0xE8492, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE15getPluginConfigyAC0eF0CSSFTo', symObjAddr: 0x910, symBinAddr: 0x4D390, symSize: 0x60 } - - { offsetInCU: 0x3C9, offset: 0xE8520, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tF', symObjAddr: 0x970, symBinAddr: 0x4D3F0, symSize: 0x130 } - - { offsetInCU: 0x4F9, offset: 0xE8650, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE21shouldAllowNavigation2toSbSS_tFTo', symObjAddr: 0xAA0, symBinAddr: 0x4D520, symSize: 0x60 } - - { offsetInCU: 0x515, offset: 0xE866C, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSF', symObjAddr: 0xB00, symBinAddr: 0x4D580, symSize: 0x150 } - - { offsetInCU: 0x574, offset: 0xE86CB, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8getValueyypSgSSFTo', symObjAddr: 0xC50, symBinAddr: 0x4D6D0, symSize: 0xD0 } - - { offsetInCU: 0x590, offset: 0xE86E7, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSF', symObjAddr: 0xD20, symBinAddr: 0x4D7A0, symSize: 0x150 } - - { offsetInCU: 0x5EF, offset: 0xE8746, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE9getStringySSSgSSFTo', symObjAddr: 0xE70, symBinAddr: 0x4D8F0, symSize: 0x90 } - - { offsetInCU: 0x7C3, offset: 0xE891A, size: 0x8, addend: 0x0, symName: '_$sSlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKFSS_Tg5', symObjAddr: 0x1070, symBinAddr: 0x4DAF0, symSize: 0x530 } - - { offsetInCU: 0xB6E, offset: 0xE8CC5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSs_Tg5', symObjAddr: 0x15A0, symBinAddr: 0x4E020, symSize: 0x20 } - - { offsetInCU: 0xBA6, offset: 0xE8CFD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi6offset_Ss7elementt_Tg5', symObjAddr: 0x15C0, symBinAddr: 0x4E040, symSize: 0x20 } - - { offsetInCU: 0xBD3, offset: 0xE8D2A, size: 0x8, addend: 0x0, symName: '_$sSlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF17appendSubsequenceL_3endSb5IndexQz_tSlRzlFSS_Tg5', symObjAddr: 0x15E0, symBinAddr: 0x4E060, symSize: 0x120 } - - { offsetInCU: 0xDFB, offset: 0xE8F52, size: 0x8, addend: 0x0, symName: '_$ss30_copySequenceToContiguousArrayys0dE0Vy7ElementQzGxSTRzlFs010EnumeratedB0VySaySsGG_Tg5', symObjAddr: 0x1700, symBinAddr: 0x4E180, symSize: 0x220 } - - { offsetInCU: 0x10E9, offset: 0xE9240, size: 0x8, addend: 0x0, symName: '_$sSo24CAPInstanceConfigurationC9CapacitorE8doesHost33_B57F4D0DE97AE9C2AEF6A73FAB0F46C7LL_5matchSbSS_SStFTf4nnd_n', symObjAddr: 0x1A60, symBinAddr: 0x4E4E0, symSize: 0x4A0 } - - { offsetInCU: 0x15B2, offset: 0xE9709, size: 0x8, addend: 0x0, symName: '_$sSTsE8reversedSay7ElementQzGyFs18EnumeratedSequenceVySaySsGG_Tg5', symObjAddr: 0xF00, symBinAddr: 0x4D980, symSize: 0x170 } - - { offsetInCU: 0x1799, offset: 0xE98F0, size: 0x8, addend: 0x0, symName: '_$sSasSQRzlE2eeoiySbSayxG_ABtFZSs_Tg5Tf4nnd_n', symObjAddr: 0x1920, symBinAddr: 0x4E3A0, symSize: 0x140 } - - { offsetInCU: 0x4F, offset: 0xE9C49, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO6schemeSSvpZ', symObjAddr: 0x3120, symBinAddr: 0x778D8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0xE9C63, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO8hostnameSSvpZ', symObjAddr: 0x3130, symBinAddr: 0x778E8, symSize: 0x0 } - - { offsetInCU: 0x82, offset: 0xE9C7C, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO6scheme_WZ', symObjAddr: 0x70, symBinAddr: 0x4EAF0, symSize: 0x30 } - - { offsetInCU: 0x9C, offset: 0xE9C96, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsO8hostname_WZ', symObjAddr: 0xD0, symBinAddr: 0x4EB50, symSize: 0x30 } - - { offsetInCU: 0x188, offset: 0xE9D82, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE19_parseConfiguration2at07cordovaE0y10Foundation3URLVSg_AJtF', symObjAddr: 0x170, symBinAddr: 0x4EBF0, symSize: 0x2050 } - - { offsetInCU: 0xD07, offset: 0xEA901, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE19_parseConfiguration2at07cordovaE0y10Foundation3URLVSg_AJtFTo', symObjAddr: 0x21C0, symBinAddr: 0x50C40, symSize: 0x120 } - - { offsetInCU: 0xD23, offset: 0xEA91D, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvgTo', symObjAddr: 0x22E0, symBinAddr: 0x50D60, symSize: 0x40 } - - { offsetInCU: 0xD3F, offset: 0xEA939, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE21cordovaDeployDisabledSbvg', symObjAddr: 0x2320, symBinAddr: 0x50DA0, symSize: 0x190 } - - { offsetInCU: 0xD81, offset: 0xEA97B, size: 0x8, addend: 0x0, symName: '_$sSo8NSStringCMa', symObjAddr: 0x24F0, symBinAddr: 0x50F30, symSize: 0x30 } - - { offsetInCU: 0xDB7, offset: 0xEA9B1, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyF', symObjAddr: 0x2520, symBinAddr: 0x50F60, symSize: 0x6E0 } - - { offsetInCU: 0xEB6, offset: 0xEAAB0, size: 0x8, addend: 0x0, symName: '_$sSo21CAPInstanceDescriptorC9CapacitorE9normalizeyyFTo', symObjAddr: 0x2C00, symBinAddr: 0x51640, symSize: 0x30 } - - { offsetInCU: 0xED2, offset: 0xEAACC, size: 0x8, addend: 0x0, symName: '_$s9Capacitor26InstanceDescriptorDefaultsOMa', symObjAddr: 0x2CC0, symBinAddr: 0x516D0, symSize: 0x10 } - - { offsetInCU: 0xEE6, offset: 0xEAAE0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor0A20ExtensionTypeWrapperVAASo7UIColorCRbzlE5color7fromHexAESgSS_tFZAE_Tg5Tf4nd_n', symObjAddr: 0x2D10, symBinAddr: 0x516E0, symSize: 0x2A0 } - - { offsetInCU: 0xFFB, offset: 0xEABF5, size: 0x8, addend: 0x0, symName: '_$sSo26CAPInstanceLoggingBehaviorV9CapacitorE8behavior33_8A70532DEC43102D9B8E29134CB87F82LL4fromABSgSS_tFZTf4nd_n', symObjAddr: 0x2FB0, symBinAddr: 0x51980, symSize: 0x100 } - - { offsetInCU: 0x10B7, offset: 0xEACB1, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_So42UIScrollViewContentInsetAdjustmentBehaviorVTg5', symObjAddr: 0x0, symBinAddr: 0x4EA80, symSize: 0x70 } - - { offsetInCU: 0x4F, offset: 0xEB077, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6sharedACvpZ', symObjAddr: 0xE20, symBinAddr: 0x77908, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0xEB0A2, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfC', symObjAddr: 0x30, symBinAddr: 0x51AB0, symSize: 0x20 } - - { offsetInCU: 0x8E, offset: 0xEB0B6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6sharedACvgZ', symObjAddr: 0x50, symBinAddr: 0x51AD0, symSize: 0x40 } - - { offsetInCU: 0xEF, offset: 0xEB117, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvg', symObjAddr: 0x120, symBinAddr: 0x51BA0, symSize: 0x40 } - - { offsetInCU: 0x10E, offset: 0xEB136, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF', symObjAddr: 0x1E0, symBinAddr: 0x51BE0, symSize: 0x10 } - - { offsetInCU: 0x131, offset: 0xEB159, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtFTo', symObjAddr: 0x1F0, symBinAddr: 0x51BF0, symSize: 0xF0 } - - { offsetInCU: 0x163, offset: 0xEB18B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctF', symObjAddr: 0x2E0, symBinAddr: 0x51CE0, symSize: 0x10 } - - { offsetInCU: 0x186, offset: 0xEB1AE, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctFTo', symObjAddr: 0x2F0, symBinAddr: 0x51CF0, symSize: 0x90 } - - { offsetInCU: 0x1B8, offset: 0xEB1E0, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfc', symObjAddr: 0x380, symBinAddr: 0x51D80, symSize: 0x60 } - - { offsetInCU: 0x1F3, offset: 0xEB21B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCACycfcTo', symObjAddr: 0x3E0, symBinAddr: 0x51DE0, symSize: 0x60 } - - { offsetInCU: 0x22E, offset: 0xEB256, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCfD', symObjAddr: 0x440, symBinAddr: 0x51E40, symSize: 0x30 } - - { offsetInCU: 0x25B, offset: 0xEB283, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtFTf4dnnn_n', symObjAddr: 0x490, symBinAddr: 0x51E90, symSize: 0x2C0 } - - { offsetInCU: 0x39E, offset: 0xEB3C6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC11application_8continue18restorationHandlerSbSo13UIApplicationC_So14NSUserActivityCySaySo06UIUserK9Restoring_pGSgctFTf4dndn_n', symObjAddr: 0x750, symBinAddr: 0x52150, symSize: 0x3F0 } - - { offsetInCU: 0x521, offset: 0xEB549, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC6shared_WZ', symObjAddr: 0x0, symBinAddr: 0x51A80, symSize: 0x30 } - - { offsetInCU: 0x562, offset: 0xEB58A, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyC7lastURL10Foundation0F0VSgvpACTk', symObjAddr: 0x90, symBinAddr: 0x51B10, symSize: 0x90 } - - { offsetInCU: 0x599, offset: 0xEB5C1, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCfETo', symObjAddr: 0x470, symBinAddr: 0x51E70, symSize: 0x20 } - - { offsetInCU: 0x68F, offset: 0xEB6B7, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMa', symObjAddr: 0xB40, symBinAddr: 0x52540, symSize: 0x30 } - - { offsetInCU: 0x6A3, offset: 0xEB6CB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMU', symObjAddr: 0xBC0, symBinAddr: 0x525C0, symSize: 0x10 } - - { offsetInCU: 0x6B7, offset: 0xEB6DF, size: 0x8, addend: 0x0, symName: '_$s9Capacitor24ApplicationDelegateProxyCMr', symObjAddr: 0xBD0, symBinAddr: 0x525D0, symSize: 0x60 } - - { offsetInCU: 0x6CB, offset: 0xEB6F3, size: 0x8, addend: 0x0, symName: '_$sSo30UIApplicationOpenURLOptionsKeyaABSHSCWl', symObjAddr: 0xD00, symBinAddr: 0x526B0, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0xEB93A, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorSo9CAPPluginCRbzrlE4load2onyAC17CAPBridgeProtocol_p_tF', symObjAddr: 0x0, symBinAddr: 0x526F0, symSize: 0x1A0 } - - { offsetInCU: 0x3F, offset: 0xEB952, size: 0x8, addend: 0x0, symName: '_$sSo16CAPBridgedPluginP9CapacitorSo9CAPPluginCRbzrlE4load2onyAC17CAPBridgeProtocol_p_tF', symObjAddr: 0x0, symBinAddr: 0x526F0, symSize: 0x1A0 } - - { offsetInCU: 0x8C, offset: 0xEB99F, size: 0x8, addend: 0x0, symName: '_$sSo19NSMutableDictionaryCMa', symObjAddr: 0x1A0, symBinAddr: 0x52890, symSize: 0x2F } - - { offsetInCU: 0x4B, offset: 0xEBAEB, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17setServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x0, symBinAddr: 0x528C0, symSize: 0x140 } - - { offsetInCU: 0xB8, offset: 0xEBB58, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17setServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x140, symBinAddr: 0x52A00, symSize: 0x50 } - - { offsetInCU: 0xD4, offset: 0xEBB74, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17getServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x190, symBinAddr: 0x52A50, symSize: 0x1D0 } - - { offsetInCU: 0x1FD, offset: 0xEBC9D, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC17getServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x360, symBinAddr: 0x52C20, symSize: 0x50 } - - { offsetInCU: 0x219, offset: 0xEBCB9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC21persistServerBasePathyySo13CAPPluginCallCF', symObjAddr: 0x3B0, symBinAddr: 0x52C70, symSize: 0x160 } - - { offsetInCU: 0x286, offset: 0xEBD26, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC21persistServerBasePathyySo13CAPPluginCallCFTo', symObjAddr: 0x510, symBinAddr: 0x52DD0, symSize: 0x50 } - - { offsetInCU: 0x2A2, offset: 0xEBD42, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2StcfC', symObjAddr: 0x560, symBinAddr: 0x52E20, symSize: 0xB0 } - - { offsetInCU: 0x2C0, offset: 0xEBD60, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2Stcfc', symObjAddr: 0x610, symBinAddr: 0x52ED0, symSize: 0xB0 } - - { offsetInCU: 0x339, offset: 0xEBDD9, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginC6bridge8pluginId0F4NameAcA17CAPBridgeProtocol_p_S2StcfcTo', symObjAddr: 0x6E0, symBinAddr: 0x52FA0, symSize: 0xD0 } - - { offsetInCU: 0x392, offset: 0xEBE32, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfC', symObjAddr: 0x7B0, symBinAddr: 0x53070, symSize: 0x20 } - - { offsetInCU: 0x3B0, offset: 0xEBE50, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfc', symObjAddr: 0x7D0, symBinAddr: 0x53090, symSize: 0x30 } - - { offsetInCU: 0x3EB, offset: 0xEBE8B, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCACycfcTo', symObjAddr: 0x800, symBinAddr: 0x530C0, symSize: 0x30 } - - { offsetInCU: 0x426, offset: 0xEBEC6, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCfD', symObjAddr: 0x830, symBinAddr: 0x530F0, symSize: 0x30 } - - { offsetInCU: 0x4A1, offset: 0xEBF41, size: 0x8, addend: 0x0, symName: '_$s9Capacitor16CAPWebViewPluginCMa', symObjAddr: 0x6C0, symBinAddr: 0x52F80, symSize: 0x20 } -... diff --git a/ios/Frameworks/Cordova.xcframework/Info.plist b/ios/Frameworks/Cordova.xcframework/Info.plist deleted file mode 100644 index 98404db74..000000000 --- a/ios/Frameworks/Cordova.xcframework/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - Cordova.framework/Cordova - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64 - LibraryPath - Cordova.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - BinaryPath - Cordova.framework/Cordova - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64_x86_64-simulator - LibraryPath - Cordova.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - simulator - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Cordova b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Cordova deleted file mode 100755 index 1c83445eb..000000000 Binary files a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Cordova and /dev/null differ diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/AppDelegate.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/AppDelegate.h deleted file mode 100644 index 17678ea99..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/AppDelegate.h +++ /dev/null @@ -1,8 +0,0 @@ -#import -#import "CDVViewController.h" - -@interface AppDelegate : NSObject - -@property (nonatomic, strong) CDVViewController* viewController; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDV.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDV.h deleted file mode 100644 index c4d1d526f..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDV.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import "CDVAvailability.h" -#import "CDVPlugin.h" -#import "CDVPluginResult.h" -#import "CDVCommandDelegate.h" -#import "CDVInvokedUrlCommand.h" -#import "CDVViewController.h" -#import "CDVURLProtocol.h" -#import "CDVScreenOrientationDelegate.h" - diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVAvailability.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVAvailability.h deleted file mode 100644 index cc4c8fcd0..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVAvailability.h +++ /dev/null @@ -1,109 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#define __CORDOVA_IOS__ - -#define __CORDOVA_0_9_6 906 -#define __CORDOVA_1_0_0 10000 -#define __CORDOVA_1_1_0 10100 -#define __CORDOVA_1_2_0 10200 -#define __CORDOVA_1_3_0 10300 -#define __CORDOVA_1_4_0 10400 -#define __CORDOVA_1_4_1 10401 -#define __CORDOVA_1_5_0 10500 -#define __CORDOVA_1_6_0 10600 -#define __CORDOVA_1_6_1 10601 -#define __CORDOVA_1_7_0 10700 -#define __CORDOVA_1_8_0 10800 -#define __CORDOVA_1_8_1 10801 -#define __CORDOVA_1_9_0 10900 -#define __CORDOVA_2_0_0 20000 -#define __CORDOVA_2_1_0 20100 -#define __CORDOVA_2_2_0 20200 -#define __CORDOVA_2_3_0 20300 -#define __CORDOVA_2_4_0 20400 -#define __CORDOVA_2_5_0 20500 -#define __CORDOVA_2_6_0 20600 -#define __CORDOVA_2_7_0 20700 -#define __CORDOVA_2_8_0 20800 -#define __CORDOVA_2_9_0 20900 -#define __CORDOVA_3_0_0 30000 -#define __CORDOVA_3_1_0 30100 -#define __CORDOVA_3_2_0 30200 -#define __CORDOVA_3_3_0 30300 -#define __CORDOVA_3_4_0 30400 -#define __CORDOVA_3_4_1 30401 -#define __CORDOVA_3_5_0 30500 -#define __CORDOVA_3_6_0 30600 -#define __CORDOVA_3_7_0 30700 -#define __CORDOVA_3_8_0 30800 -#define __CORDOVA_3_9_0 30900 -#define __CORDOVA_3_9_1 30901 -#define __CORDOVA_3_9_2 30902 -#define __CORDOVA_4_0_0 40000 -#define __CORDOVA_4_0_1 40001 -#define __CORDOVA_4_1_0 40100 -#define __CORDOVA_4_1_1 40101 -#define __CORDOVA_4_2_0 40200 -#define __CORDOVA_4_2_1 40201 -#define __CORDOVA_4_3_0 40300 -#define __CORDOVA_4_3_1 40301 -#define __CORDOVA_4_4_0 40400 -#define __CORDOVA_4_5_0 40500 -#define __CORDOVA_4_5_1 40501 -#define __CORDOVA_4_5_2 40502 -#define __CORDOVA_4_5_4 40504 -/* coho:next-version,insert-before */ -#define __CORDOVA_NA 99999 /* not available */ - -/* - #if CORDOVA_VERSION_MIN_REQUIRED >= __CORDOVA_4_0_0 - // do something when its at least 4.0.0 - #else - // do something else (non 4.0.0) - #endif - */ -#ifndef CORDOVA_VERSION_MIN_REQUIRED - /* coho:next-version-min-required,replace-after */ - #define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_4_5_4 -#endif - -/* - Returns YES if it is at least version specified as NSString(X) - Usage: - if (IsAtLeastiOSVersion(@"5.1")) { - // do something for iOS 5.1 or greater - } - */ -#define IsAtLeastiOSVersion(X) ([[[UIDevice currentDevice] systemVersion] compare:X options:NSNumericSearch] != NSOrderedAscending) - -/* Return the string version of the decimal version */ -#define CDV_VERSION [NSString stringWithFormat:@"%d.%d.%d", \ - (CORDOVA_VERSION_MIN_REQUIRED / 10000), \ - (CORDOVA_VERSION_MIN_REQUIRED % 10000) / 100, \ - (CORDOVA_VERSION_MIN_REQUIRED % 10000) % 100] - -// Enable this to log all exec() calls. -#define CDV_ENABLE_EXEC_LOGGING 0 -#if CDV_ENABLE_EXEC_LOGGING - #define CDV_EXEC_LOG NSLog -#else - #define CDV_EXEC_LOG(...) do { \ -} while (NO) -#endif diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVCommandDelegate.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVCommandDelegate.h deleted file mode 100644 index 45869bdea..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVCommandDelegate.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import "CDVInvokedUrlCommand.h" - -@class CDVPlugin; -@class CDVPluginResult; - -typedef NSURL* (^ UrlTransformerBlock)(NSURL*); - -@protocol CDVCommandDelegate - -@property (nonatomic, readonly) NSDictionary* settings; -@property (nonatomic, copy) UrlTransformerBlock urlTransformer; - -- (NSString*)pathForResource:(NSString*)resourcepath; -- (id)getCommandInstance:(NSString*)pluginName; - -// Sends a plugin result to the JS. This is thread-safe. -- (void)sendPluginResult:(CDVPluginResult*)result callbackId:(NSString*)callbackId; -// Evaluates the given JS. This is thread-safe. -- (void)evalJs:(NSString*)js; -// Can be used to evaluate JS right away instead of scheduling it on the run-loop. -// This is required for dispatch resign and pause events, but should not be used -// without reason. Without the run-loop delay, alerts used in JS callbacks may result -// in dead-lock. This method must be called from the UI thread. -- (void)evalJs:(NSString*)js scheduledOnRunLoop:(BOOL)scheduledOnRunLoop; -// Run the javascript -- (void)evalJsHelper2:(NSString*)js; -// Runs the given block on a background thread using a shared thread-pool. -- (void)runInBackground:(void (^)(void))block; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVCommandDelegateImpl.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVCommandDelegateImpl.h deleted file mode 100644 index f42654e34..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVCommandDelegateImpl.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import "CDVCommandDelegate.h" -#import -#import "CDVPluginManager.h" - -@class CDVViewController; -@class CDVCommandQueue; - -@interface CDVCommandDelegateImpl : NSObject { - @private - __weak WKWebView* _webView; - __weak CDVPluginManager* _manager; - NSRegularExpression* _callbackIdPattern; - @protected - __weak CDVCommandQueue* _commandQueue; - BOOL _delayResponses; -} -- (id)initWithWebView:(WKWebView*)webView pluginManager:(CDVPluginManager *)manager; -- (void)flushCommandQueueWithDelayedJs; -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVConfigParser.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVConfigParser.h deleted file mode 100644 index 68fdbe6b0..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVConfigParser.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ -#import - -@interface CDVConfigParser : NSObject -{ - NSString* featureName; -} - -@property (nonatomic, readonly, strong) NSMutableDictionary* pluginsDict; -@property (nonatomic, readonly, strong) NSMutableDictionary* settings; -@property (nonatomic, readonly, strong) NSMutableArray* startupPluginNames; -@property (nonatomic, readonly, strong) NSString* startPage; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVInvokedUrlCommand.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVInvokedUrlCommand.h deleted file mode 100644 index 993e0a285..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVInvokedUrlCommand.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -@interface CDVInvokedUrlCommand : NSObject { - NSString* _callbackId; - NSString* _className; - NSString* _methodName; - NSArray* _arguments; -} - -@property (nonatomic, readonly) NSArray* arguments; -@property (nonatomic, readonly) NSString* callbackId; -@property (nonatomic, readonly) NSString* className; -@property (nonatomic, readonly) NSString* methodName; - -+ (CDVInvokedUrlCommand*)commandFromJson:(NSArray*)jsonEntry; - -- (id)initWithArguments:(NSArray*)arguments - callbackId:(NSString*)callbackId - className:(NSString*)className - methodName:(NSString*)methodName; - -- (id)initFromJson:(NSArray*)jsonEntry; - -// Returns the argument at the given index. -// If index >= the number of arguments, returns nil. -// If the argument at the given index is NSNull, returns nil. -- (id)argumentAtIndex:(NSUInteger)index; -// Same as above, but returns defaultValue instead of nil. -- (id)argumentAtIndex:(NSUInteger)index withDefault:(id)defaultValue; -// Same as above, but returns defaultValue instead of nil, and if the argument is not of the expected class, returns defaultValue -- (id)argumentAtIndex:(NSUInteger)index withDefault:(id)defaultValue andClass:(Class)aClass; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPlugin+Resources.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPlugin+Resources.h deleted file mode 100644 index cc43b16b7..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPlugin+Resources.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import "CDVPlugin.h" - -@interface CDVPlugin (CDVPluginResources) - -/* - This will return the localized string for a key in a .bundle that is named the same as your class - For example, if your plugin class was called Foo, and you have a Spanish localized strings file, it will - try to load the desired key from Foo.bundle/es.lproj/Localizable.strings - */ -- (NSString*)pluginLocalizedString:(NSString*)key; - -/* - This will return the image for a name in a .bundle that is named the same as your class - For example, if your plugin class was called Foo, and you have an image called "bar", - it will try to load the image from Foo.bundle/bar.png (and appropriately named retina versions) - */ -- (UIImage*)pluginImageResource:(NSString*)name; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPlugin.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPlugin.h deleted file mode 100644 index 29ba4cdf0..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPlugin.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import -#import "CDVPluginResult.h" -#import "CDVCommandDelegate.h" -#import "CDVAvailability.h" -#import - -@interface UIView (org_apache_cordova_UIView_Extension) - -@property (nonatomic, weak) UIScrollView* scrollView; - -@end - -extern NSString* const CDVPageDidLoadNotification; -extern NSString* const CDVPluginHandleOpenURLNotification; -extern NSString* const CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification; -extern NSString* const CDVPluginResetNotification; -extern NSString* const CDVViewWillAppearNotification; -extern NSString* const CDVViewDidAppearNotification; -extern NSString* const CDVViewWillDisappearNotification; -extern NSString* const CDVViewDidDisappearNotification; -extern NSString* const CDVViewWillLayoutSubviewsNotification; -extern NSString* const CDVViewDidLayoutSubviewsNotification; -extern NSString* const CDVViewWillTransitionToSizeNotification; - -/* - * The local and remote push notification functionality has been removed from the core in cordova-ios 4.x, - * but these constants have unfortunately have not been removed, but will be removed in 5.x. - * - * To have the same functionality as 3.x, use a third-party plugin or the experimental - * https://github.com/apache/cordova-plugins/tree/master/notification-rebroadcast - */ - - -@interface CDVPlugin : NSObject {} - -- (instancetype)initWithWebViewEngine:(WKWebView *)theWebViewEngine; -@property (nonatomic, weak) UIView* webView; -@property (nonatomic, weak) WKWebView * webViewEngine; -@property (nonatomic, strong) NSString * className; - -@property (nonatomic, weak) UIViewController* viewController; -@property (nonatomic, weak) id commandDelegate; - -- (void)pluginInitialize; - -- (void)handleOpenURL:(NSNotification*)notification; -- (void)onAppTerminate; -- (void)onMemoryWarning; -- (void)onReset; -- (void)dispose; - -/* - // see initWithWebView implementation - - (void) onPause {} - - (void) onResume {} - - (void) onOrientationWillChange {} - - (void) onOrientationDidChange {} - */ - -- (id)appDelegate; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPluginManager.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPluginManager.h deleted file mode 100644 index 134959c38..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPluginManager.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// CDVPluginManager.h -// CapacitorCordova -// -// Created by Julio Cesar Sanchez Hernandez on 26/2/18. -// - -#import -#import "CDVPlugin.h" -#import "CDVConfigParser.h" -#import "CDVCommandDelegate.h" - -@interface CDVPluginManager : NSObject - -@property (nonatomic, strong) NSMutableDictionary * pluginsMap; -@property (nonatomic, strong) NSMutableDictionary * pluginObjects; -@property (nonatomic, strong) NSMutableDictionary * settings; -@property (nonatomic, strong) UIViewController * viewController; -@property (nonatomic, strong) WKWebView * webView; -@property (nonatomic, strong) id commandDelegate; - -- (id)initWithParser:(CDVConfigParser*)parser viewController:(UIViewController*)viewController webView:(WKWebView *)webview; -- (CDVPlugin *)getCommandInstance:(NSString*)pluginName; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPluginResult.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPluginResult.h deleted file mode 100644 index 2947af89a..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVPluginResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -typedef NS_ENUM(NSUInteger, CDVCommandStatus) { - CDVCommandStatus_NO_RESULT NS_SWIFT_NAME(noResult) = 0, - CDVCommandStatus_OK NS_SWIFT_NAME(ok), - CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION NS_SWIFT_NAME(classNotFoundException), - CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION NS_SWIFT_NAME(illegalAccessException), - CDVCommandStatus_INSTANTIATION_EXCEPTION NS_SWIFT_NAME(instantiationException), - CDVCommandStatus_MALFORMED_URL_EXCEPTION NS_SWIFT_NAME(malformedUrlException), - CDVCommandStatus_IO_EXCEPTION NS_SWIFT_NAME(ioException), - CDVCommandStatus_INVALID_ACTION NS_SWIFT_NAME(invalidAction), - CDVCommandStatus_JSON_EXCEPTION NS_SWIFT_NAME(jsonException), - CDVCommandStatus_ERROR NS_SWIFT_NAME(error) -}; - -// This exists to preserve compatibility with early Swift plugins, who are -// using CDVCommandStatus as ObjC-style constants rather than as Swift enum -// values. -// This declares extern'ed constants (implemented in CDVPluginResult.m) -#define SWIFT_ENUM_COMPAT_HACK(enumVal) extern const CDVCommandStatus SWIFT_##enumVal NS_SWIFT_NAME(enumVal) -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_NO_RESULT); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_OK); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_INSTANTIATION_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_MALFORMED_URL_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_IO_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_INVALID_ACTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_JSON_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_ERROR); -#undef SWIFT_ENUM_COMPAT_HACK - -@interface CDVPluginResult : NSObject {} - -@property (nonatomic, strong, readonly) NSNumber* status; -@property (nonatomic, strong, readonly) id message; -@property (nonatomic, strong) NSNumber* keepCallback; -// This property can be used to scope the lifetime of another object. For example, -// Use it to store the associated NSData when `message` is created using initWithBytesNoCopy. -@property (nonatomic, strong) id associatedObject; - -- (CDVPluginResult*)init; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsString:(NSString*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsArray:(NSArray*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsInt:(int)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsNSInteger:(NSInteger)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsNSUInteger:(NSUInteger)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsDouble:(double)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsBool:(BOOL)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsDictionary:(NSDictionary*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsArrayBuffer:(NSData*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsMultipart:(NSArray*)theMessages; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageToErrorObject:(int)errorCode; - -+ (void)setVerbose:(BOOL)verbose; -+ (BOOL)isVerbose; - -- (void)setKeepCallbackAsBool:(BOOL)bKeepCallback; - -- (NSString*)argumentsAsJSON; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVScreenOrientationDelegate.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVScreenOrientationDelegate.h deleted file mode 100644 index 519dd490c..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVScreenOrientationDelegate.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -@protocol CDVScreenOrientationDelegate - -#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000 -- (NSUInteger)supportedInterfaceOrientations; -#else -- (UIInterfaceOrientationMask)supportedInterfaceOrientations; -#endif - -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation; -- (BOOL)shouldAutorotate; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVURLProtocol.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVURLProtocol.h deleted file mode 100644 index 0561e04d9..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVURLProtocol.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import "CDVAvailability.h" - -@class CDVViewController; - -@interface CDVURLProtocol : NSURLProtocol {} - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVViewController.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVViewController.h deleted file mode 100644 index 81ed0069a..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CDVViewController.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -@interface CDVViewController : UIViewController - -@property (nonatomic, readonly, strong) NSMutableDictionary* pluginObjects; -@property (nonatomic, readonly, strong) NSMutableDictionary* settings; -@property (nonatomic, readonly, weak) UIView* webView; - -- (id) getCommandInstance:(NSString*)className; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CapacitorCordova.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CapacitorCordova.h deleted file mode 100644 index bee4ca2ea..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/CapacitorCordova.h +++ /dev/null @@ -1,23 +0,0 @@ -#import - -//! Project version number for CapacitorCordova. -FOUNDATION_EXPORT double CapacitorCordovaVersionNumber; - -//! Project version string for CapacitorCordova. -FOUNDATION_EXPORT const unsigned char CapacitorCordovaVersionString[]; - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/NSDictionary+CordovaPreferences.h b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/NSDictionary+CordovaPreferences.h deleted file mode 100644 index 9be2be2dc..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Headers/NSDictionary+CordovaPreferences.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import - -@interface NSDictionary (CordovaPreferences) - -- (id)cordovaSettingForKey:(NSString*)key; -- (BOOL)cordovaBoolSettingForKey:(NSString*)key defaultValue:(BOOL)defaultValue; -- (CGFloat)cordovaFloatSettingForKey:(NSString*)key defaultValue:(CGFloat)defaultValue; - -@end - -@interface NSMutableDictionary (CordovaPreferences) - -- (void)setCordovaSetting:(id)value forKey:(NSString*)key; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Info.plist b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Info.plist deleted file mode 100644 index 70995d45b..000000000 Binary files a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Info.plist and /dev/null differ diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Modules/module.modulemap b/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Modules/module.modulemap deleted file mode 100644 index 32af43c12..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/Cordova.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Cordova { - umbrella header "CapacitorCordova.h" - - export * - module * { export * } -} diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Info.plist b/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 4145d053e..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.getcapacitor.ios.CapacitorCordova - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Resources/DWARF/Cordova b/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Resources/DWARF/Cordova deleted file mode 100644 index df1d4e1c3..000000000 Binary files a/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Resources/DWARF/Cordova and /dev/null differ diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/aarch64/Cordova.yml b/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/aarch64/Cordova.yml deleted file mode 100644 index 3c989203d..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/aarch64/Cordova.yml +++ /dev/null @@ -1,179 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/mark/Library/Developer/Xcode/DerivedData/Capacitor-cvqxffszbvmpzcdcdtewgtstoqol/Build/Intermediates.noindex/ArchiveIntermediates/Capacitor/InstallationBuildProductsLocation/Library/Frameworks/Cordova.framework/Cordova' -relocations: - - { offsetInCU: 0x34, offset: 0x5688E, size: 0x8, addend: 0x0, symName: _CordovaVersionString, symObjAddr: 0x0, symBinAddr: 0x7AE0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x568C3, size: 0x8, addend: 0x0, symName: _CordovaVersionNumber, symObjAddr: 0x38, symBinAddr: 0x7B18, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0x56900, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager initWithParser:viewController:webView:]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x1B8 } - - { offsetInCU: 0x12F, offset: 0x56A08, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager initWithParser:viewController:webView:]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x1B8 } - - { offsetInCU: 0x196, offset: 0x56A6F, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager getCommandInstance:]', symObjAddr: 0x1B8, symBinAddr: 0x41B8, symSize: 0x224 } - - { offsetInCU: 0x269, offset: 0x56B42, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager registerPlugin:withClassName:]', symObjAddr: 0x3DC, symBinAddr: 0x43DC, symSize: 0xF4 } - - { offsetInCU: 0x2BC, offset: 0x56B95, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager onAppDidEnterBackground:]', symObjAddr: 0x4D0, symBinAddr: 0x44D0, symSize: 0x38 } - - { offsetInCU: 0x2FB, offset: 0x56BD4, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager onAppWillEnterForeground:]', symObjAddr: 0x508, symBinAddr: 0x4508, symSize: 0x38 } - - { offsetInCU: 0x33A, offset: 0x56C13, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager pluginsMap]', symObjAddr: 0x540, symBinAddr: 0x4540, symSize: 0x8 } - - { offsetInCU: 0x371, offset: 0x56C4A, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setPluginsMap:]', symObjAddr: 0x548, symBinAddr: 0x4548, symSize: 0xC } - - { offsetInCU: 0x3B2, offset: 0x56C8B, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager pluginObjects]', symObjAddr: 0x554, symBinAddr: 0x4554, symSize: 0x8 } - - { offsetInCU: 0x3E9, offset: 0x56CC2, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setPluginObjects:]', symObjAddr: 0x55C, symBinAddr: 0x455C, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x56D03, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager settings]', symObjAddr: 0x568, symBinAddr: 0x4568, symSize: 0x8 } - - { offsetInCU: 0x461, offset: 0x56D3A, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setSettings:]', symObjAddr: 0x570, symBinAddr: 0x4570, symSize: 0xC } - - { offsetInCU: 0x4A2, offset: 0x56D7B, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager viewController]', symObjAddr: 0x57C, symBinAddr: 0x457C, symSize: 0x8 } - - { offsetInCU: 0x4D9, offset: 0x56DB2, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setViewController:]', symObjAddr: 0x584, symBinAddr: 0x4584, symSize: 0xC } - - { offsetInCU: 0x51A, offset: 0x56DF3, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager webView]', symObjAddr: 0x590, symBinAddr: 0x4590, symSize: 0x8 } - - { offsetInCU: 0x551, offset: 0x56E2A, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setWebView:]', symObjAddr: 0x598, symBinAddr: 0x4598, symSize: 0xC } - - { offsetInCU: 0x592, offset: 0x56E6B, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager commandDelegate]', symObjAddr: 0x5A4, symBinAddr: 0x45A4, symSize: 0x8 } - - { offsetInCU: 0x5C9, offset: 0x56EA2, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setCommandDelegate:]', symObjAddr: 0x5AC, symBinAddr: 0x45AC, symSize: 0xC } - - { offsetInCU: 0x60A, offset: 0x56EE3, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager .cxx_destruct]', symObjAddr: 0x5B8, symBinAddr: 0x45B8, symSize: 0x60 } - - { offsetInCU: 0x27, offset: 0x57015, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl initWithWebView:pluginManager:]', symObjAddr: 0x0, symBinAddr: 0x4618, symSize: 0x108 } - - { offsetInCU: 0x1E6, offset: 0x571D4, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl initWithWebView:pluginManager:]', symObjAddr: 0x0, symBinAddr: 0x4618, symSize: 0x108 } - - { offsetInCU: 0x25C, offset: 0x5724A, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl pathForResource:]', symObjAddr: 0x108, symBinAddr: 0x4720, symSize: 0x190 } - - { offsetInCU: 0x2FF, offset: 0x572ED, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl flushCommandQueueWithDelayedJs]', symObjAddr: 0x298, symBinAddr: 0x48B0, symSize: 0x8 } - - { offsetInCU: 0x330, offset: 0x5731E, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJsHelper2:]', symObjAddr: 0x2A0, symBinAddr: 0x48B8, symSize: 0x84 } - - { offsetInCU: 0x3FD, offset: 0x573EB, size: 0x8, addend: 0x0, symName: '___40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke', symObjAddr: 0x324, symBinAddr: 0x493C, symSize: 0x40 } - - { offsetInCU: 0x44C, offset: 0x5743A, size: 0x8, addend: 0x0, symName: '___40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke_2', symObjAddr: 0x364, symBinAddr: 0x497C, symSize: 0x5C } - - { offsetInCU: 0x4AA, offset: 0x57498, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x3C0, symBinAddr: 0x49D8, symSize: 0x28 } - - { offsetInCU: 0x4D3, offset: 0x574C1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x3E8, symBinAddr: 0x4A00, symSize: 0x28 } - - { offsetInCU: 0x4F2, offset: 0x574E0, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl isValidCallbackId:]', symObjAddr: 0x410, symBinAddr: 0x4A28, symSize: 0x94 } - - { offsetInCU: 0x539, offset: 0x57527, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl sendPluginResult:callbackId:]', symObjAddr: 0x4A4, symBinAddr: 0x4ABC, symSize: 0x138 } - - { offsetInCU: 0x5D8, offset: 0x575C6, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJs:]', symObjAddr: 0x5DC, symBinAddr: 0x4BF4, symSize: 0x8 } - - { offsetInCU: 0x617, offset: 0x57605, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJs:scheduledOnRunLoop:]', symObjAddr: 0x5E4, symBinAddr: 0x4BFC, symSize: 0x58 } - - { offsetInCU: 0x666, offset: 0x57654, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl getCommandInstance:]', symObjAddr: 0x63C, symBinAddr: 0x4C54, symSize: 0x64 } - - { offsetInCU: 0x6AD, offset: 0x5769B, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl runInBackground:]', symObjAddr: 0x6A0, symBinAddr: 0x4CB8, symSize: 0x40 } - - { offsetInCU: 0x73C, offset: 0x5772A, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl settings]', symObjAddr: 0x6E0, symBinAddr: 0x4CF8, symSize: 0x40 } - - { offsetInCU: 0x773, offset: 0x57761, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl urlTransformer]', symObjAddr: 0x720, symBinAddr: 0x4D38, symSize: 0x8 } - - { offsetInCU: 0x7AA, offset: 0x57798, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl setUrlTransformer:]', symObjAddr: 0x728, symBinAddr: 0x4D40, symSize: 0x8 } - - { offsetInCU: 0x7E9, offset: 0x577D7, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl .cxx_destruct]', symObjAddr: 0x730, symBinAddr: 0x4D48, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x579E8, size: 0x8, addend: 0x0, symName: _messageFromArrayBuffer, symObjAddr: 0x0, symBinAddr: 0x4D90, symSize: 0xB4 } - - { offsetInCU: 0x41, offset: 0x57A02, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_NO_RESULT, symObjAddr: 0xB60, symBinAddr: 0x7B28, symSize: 0x0 } - - { offsetInCU: 0xB7, offset: 0x57A78, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_OK, symObjAddr: 0xB68, symBinAddr: 0x7B30, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x57A8E, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION, symObjAddr: 0xB70, symBinAddr: 0x7B38, symSize: 0x0 } - - { offsetInCU: 0xE3, offset: 0x57AA4, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION, symObjAddr: 0xB78, symBinAddr: 0x7B40, symSize: 0x0 } - - { offsetInCU: 0xF9, offset: 0x57ABA, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_INSTANTIATION_EXCEPTION, symObjAddr: 0xB80, symBinAddr: 0x7B48, symSize: 0x0 } - - { offsetInCU: 0x10F, offset: 0x57AD0, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_MALFORMED_URL_EXCEPTION, symObjAddr: 0xB88, symBinAddr: 0x7B50, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x57AE6, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_IO_EXCEPTION, symObjAddr: 0xB90, symBinAddr: 0x7B58, symSize: 0x0 } - - { offsetInCU: 0x13B, offset: 0x57AFC, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_INVALID_ACTION, symObjAddr: 0xB98, symBinAddr: 0x7B60, symSize: 0x0 } - - { offsetInCU: 0x151, offset: 0x57B12, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_JSON_EXCEPTION, symObjAddr: 0xBA0, symBinAddr: 0x7B68, symSize: 0x0 } - - { offsetInCU: 0x167, offset: 0x57B28, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_ERROR, symObjAddr: 0xBA8, symBinAddr: 0x7B70, symSize: 0x0 } - - { offsetInCU: 0x17D, offset: 0x57B3E, size: 0x8, addend: 0x0, symName: _org_apache_cordova_CommandStatusMsgs, symObjAddr: 0x5620, symBinAddr: 0x12A00, symSize: 0x0 } - - { offsetInCU: 0x198, offset: 0x57B59, size: 0x8, addend: 0x0, symName: _gIsVerbose, symObjAddr: 0x5628, symBinAddr: 0x12A08, symSize: 0x0 } - - { offsetInCU: 0x257, offset: 0x57C18, size: 0x8, addend: 0x0, symName: _messageFromArrayBuffer, symObjAddr: 0x0, symBinAddr: 0x4D90, symSize: 0xB4 } - - { offsetInCU: 0x282, offset: 0x57C43, size: 0x8, addend: 0x0, symName: _massageMessage, symObjAddr: 0xB4, symBinAddr: 0x4E44, symSize: 0x68 } - - { offsetInCU: 0x2C3, offset: 0x57C84, size: 0x8, addend: 0x0, symName: _messageFromMultipart, symObjAddr: 0x11C, symBinAddr: 0x4EAC, symSize: 0x128 } - - { offsetInCU: 0x32B, offset: 0x57CEC, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult initialize]', symObjAddr: 0x244, symBinAddr: 0x4FD4, symSize: 0x9C } - - { offsetInCU: 0x35A, offset: 0x57D1B, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult init]', symObjAddr: 0x2E0, symBinAddr: 0x5070, symSize: 0xC } - - { offsetInCU: 0x38F, offset: 0x57D50, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult initWithStatus:message:]', symObjAddr: 0x2EC, symBinAddr: 0x507C, symSize: 0xD0 } - - { offsetInCU: 0x3E6, offset: 0x57DA7, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:]', symObjAddr: 0x3BC, symBinAddr: 0x514C, symSize: 0x2C } - - { offsetInCU: 0x42D, offset: 0x57DEE, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsString:]', symObjAddr: 0x3E8, symBinAddr: 0x5178, symSize: 0x58 } - - { offsetInCU: 0x484, offset: 0x57E45, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsArray:]', symObjAddr: 0x440, symBinAddr: 0x51D0, symSize: 0x58 } - - { offsetInCU: 0x4DB, offset: 0x57E9C, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsInt:]', symObjAddr: 0x498, symBinAddr: 0x5228, symSize: 0x6C } - - { offsetInCU: 0x532, offset: 0x57EF3, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsNSInteger:]', symObjAddr: 0x504, symBinAddr: 0x5294, symSize: 0x6C } - - { offsetInCU: 0x589, offset: 0x57F4A, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsNSUInteger:]', symObjAddr: 0x570, symBinAddr: 0x5300, symSize: 0x6C } - - { offsetInCU: 0x5E0, offset: 0x57FA1, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsDouble:]', symObjAddr: 0x5DC, symBinAddr: 0x536C, symSize: 0x74 } - - { offsetInCU: 0x637, offset: 0x57FF8, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsBool:]', symObjAddr: 0x650, symBinAddr: 0x53E0, symSize: 0x6C } - - { offsetInCU: 0x68E, offset: 0x5804F, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsDictionary:]', symObjAddr: 0x6BC, symBinAddr: 0x544C, symSize: 0x58 } - - { offsetInCU: 0x6E5, offset: 0x580A6, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsArrayBuffer:]', symObjAddr: 0x714, symBinAddr: 0x54A4, symSize: 0x7C } - - { offsetInCU: 0x752, offset: 0x58113, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsMultipart:]', symObjAddr: 0x790, symBinAddr: 0x5520, symSize: 0x7C } - - { offsetInCU: 0x7BF, offset: 0x58180, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageToErrorObject:]', symObjAddr: 0x80C, symBinAddr: 0x559C, symSize: 0xD8 } - - { offsetInCU: 0x826, offset: 0x581E7, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setKeepCallbackAsBool:]', symObjAddr: 0x8E4, symBinAddr: 0x5674, symSize: 0x44 } - - { offsetInCU: 0x869, offset: 0x5822A, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult argumentsAsJSON]', symObjAddr: 0x928, symBinAddr: 0x56B8, symSize: 0xDC } - - { offsetInCU: 0x8CC, offset: 0x5828D, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult setVerbose:]', symObjAddr: 0xA04, symBinAddr: 0x5794, symSize: 0xC } - - { offsetInCU: 0x907, offset: 0x582C8, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult isVerbose]', symObjAddr: 0xA10, symBinAddr: 0x57A0, symSize: 0xC } - - { offsetInCU: 0x93A, offset: 0x582FB, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult JSONStringFromArray:]', symObjAddr: 0xA1C, symBinAddr: 0x57AC, symSize: 0xC0 } - - { offsetInCU: 0x99D, offset: 0x5835E, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult status]', symObjAddr: 0xADC, symBinAddr: 0x586C, symSize: 0x8 } - - { offsetInCU: 0x9D4, offset: 0x58395, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult message]', symObjAddr: 0xAE4, symBinAddr: 0x5874, symSize: 0x8 } - - { offsetInCU: 0xA0B, offset: 0x583CC, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult keepCallback]', symObjAddr: 0xAEC, symBinAddr: 0x587C, symSize: 0x8 } - - { offsetInCU: 0xA42, offset: 0x58403, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setKeepCallback:]', symObjAddr: 0xAF4, symBinAddr: 0x5884, symSize: 0xC } - - { offsetInCU: 0xA83, offset: 0x58444, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult associatedObject]', symObjAddr: 0xB00, symBinAddr: 0x5890, symSize: 0x8 } - - { offsetInCU: 0xABA, offset: 0x5847B, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setAssociatedObject:]', symObjAddr: 0xB08, symBinAddr: 0x5898, symSize: 0xC } - - { offsetInCU: 0xAFB, offset: 0x584BC, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult .cxx_destruct]', symObjAddr: 0xB14, symBinAddr: 0x58A4, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x5856F, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaSettingForKey:]', symObjAddr: 0x0, symBinAddr: 0x58EC, symSize: 0x54 } - - { offsetInCU: 0x43, offset: 0x5858B, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaSettingForKey:]', symObjAddr: 0x0, symBinAddr: 0x58EC, symSize: 0x54 } - - { offsetInCU: 0x8A, offset: 0x585D2, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaBoolSettingForKey:defaultValue:]', symObjAddr: 0x54, symBinAddr: 0x5940, symSize: 0x48 } - - { offsetInCU: 0x101, offset: 0x58649, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaFloatSettingForKey:defaultValue:]', symObjAddr: 0x9C, symBinAddr: 0x5988, symSize: 0x50 } - - { offsetInCU: 0x178, offset: 0x586C0, size: 0x8, addend: 0x0, symName: '-[NSMutableDictionary(CordovaPreferences) setCordovaSetting:forKey:]', symObjAddr: 0xEC, symBinAddr: 0x59D8, symSize: 0x64 } - - { offsetInCU: 0x27, offset: 0x5879D, size: 0x8, addend: 0x0, symName: '-[UIView(org_apache_cordova_UIView_Extension) scrollView]', symObjAddr: 0x0, symBinAddr: 0x5A3C, symSize: 0x58 } - - { offsetInCU: 0x41, offset: 0x587B7, size: 0x8, addend: 0x0, symName: _CDVPageDidLoadNotification, symObjAddr: 0xF30, symBinAddr: 0xC0B8, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x587D7, size: 0x8, addend: 0x0, symName: _CDVPluginHandleOpenURLNotification, symObjAddr: 0xF38, symBinAddr: 0xC0C0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x587ED, size: 0x8, addend: 0x0, symName: _CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification, symObjAddr: 0xF40, symBinAddr: 0xC0C8, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x58803, size: 0x8, addend: 0x0, symName: _CDVPluginResetNotification, symObjAddr: 0xF48, symBinAddr: 0xC0D0, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x58819, size: 0x8, addend: 0x0, symName: _CDVLocalNotification, symObjAddr: 0xF50, symBinAddr: 0xC0D8, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x5882F, size: 0x8, addend: 0x0, symName: _CDVRemoteNotification, symObjAddr: 0xF58, symBinAddr: 0xC0E0, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x58845, size: 0x8, addend: 0x0, symName: _CDVRemoteNotificationError, symObjAddr: 0xF60, symBinAddr: 0xC0E8, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x5885B, size: 0x8, addend: 0x0, symName: _CDVViewWillAppearNotification, symObjAddr: 0xF68, symBinAddr: 0xC0F0, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x58871, size: 0x8, addend: 0x0, symName: _CDVViewDidAppearNotification, symObjAddr: 0xF70, symBinAddr: 0xC0F8, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x58887, size: 0x8, addend: 0x0, symName: _CDVViewWillDisappearNotification, symObjAddr: 0xF78, symBinAddr: 0xC100, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x5889D, size: 0x8, addend: 0x0, symName: _CDVViewDidDisappearNotification, symObjAddr: 0xF80, symBinAddr: 0xC108, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x588B3, size: 0x8, addend: 0x0, symName: _CDVViewWillLayoutSubviewsNotification, symObjAddr: 0xF88, symBinAddr: 0xC110, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x588C9, size: 0x8, addend: 0x0, symName: _CDVViewDidLayoutSubviewsNotification, symObjAddr: 0xF90, symBinAddr: 0xC118, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x588DF, size: 0x8, addend: 0x0, symName: _CDVViewWillTransitionToSizeNotification, symObjAddr: 0xF98, symBinAddr: 0xC120, symSize: 0x0 } - - { offsetInCU: 0x290, offset: 0x58A06, size: 0x8, addend: 0x0, symName: '-[UIView(org_apache_cordova_UIView_Extension) scrollView]', symObjAddr: 0x0, symBinAddr: 0x5A3C, symSize: 0x58 } - - { offsetInCU: 0x2F8, offset: 0x58A6E, size: 0x8, addend: 0x0, symName: '-[CDVPlugin initWithWebViewEngine:]', symObjAddr: 0x58, symBinAddr: 0x5A94, symSize: 0x6C } - - { offsetInCU: 0x33F, offset: 0x58AB5, size: 0x8, addend: 0x0, symName: '-[CDVPlugin pluginInitialize]', symObjAddr: 0xC4, symBinAddr: 0x5B00, symSize: 0xD4 } - - { offsetInCU: 0x372, offset: 0x58AE8, size: 0x8, addend: 0x0, symName: '-[CDVPlugin dispose]', symObjAddr: 0x198, symBinAddr: 0x5BD4, symSize: 0x30 } - - { offsetInCU: 0x3A5, offset: 0x58B1B, size: 0x8, addend: 0x0, symName: '-[CDVPlugin handleOpenURL:]', symObjAddr: 0x1C8, symBinAddr: 0x5C04, symSize: 0x48 } - - { offsetInCU: 0x3F4, offset: 0x58B6A, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onAppTerminate]', symObjAddr: 0x210, symBinAddr: 0x5C4C, symSize: 0x4 } - - { offsetInCU: 0x423, offset: 0x58B99, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onMemoryWarning]', symObjAddr: 0x214, symBinAddr: 0x5C50, symSize: 0x4 } - - { offsetInCU: 0x452, offset: 0x58BC8, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onReset]', symObjAddr: 0x218, symBinAddr: 0x5C54, symSize: 0x4 } - - { offsetInCU: 0x481, offset: 0x58BF7, size: 0x8, addend: 0x0, symName: '-[CDVPlugin dealloc]', symObjAddr: 0x21C, symBinAddr: 0x5C58, symSize: 0x68 } - - { offsetInCU: 0x4B4, offset: 0x58C2A, size: 0x8, addend: 0x0, symName: '-[CDVPlugin appDelegate]', symObjAddr: 0x284, symBinAddr: 0x5CC0, symSize: 0x4C } - - { offsetInCU: 0x4E7, offset: 0x58C5D, size: 0x8, addend: 0x0, symName: '-[CDVPlugin webViewEngine]', symObjAddr: 0x2D0, symBinAddr: 0x5D0C, symSize: 0x18 } - - { offsetInCU: 0x51E, offset: 0x58C94, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setWebViewEngine:]', symObjAddr: 0x2E8, symBinAddr: 0x5D24, symSize: 0xC } - - { offsetInCU: 0x55F, offset: 0x58CD5, size: 0x8, addend: 0x0, symName: '-[CDVPlugin viewController]', symObjAddr: 0x2F4, symBinAddr: 0x5D30, symSize: 0x18 } - - { offsetInCU: 0x596, offset: 0x58D0C, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setViewController:]', symObjAddr: 0x30C, symBinAddr: 0x5D48, symSize: 0xC } - - { offsetInCU: 0x5D7, offset: 0x58D4D, size: 0x8, addend: 0x0, symName: '-[CDVPlugin commandDelegate]', symObjAddr: 0x318, symBinAddr: 0x5D54, symSize: 0x18 } - - { offsetInCU: 0x60E, offset: 0x58D84, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setCommandDelegate:]', symObjAddr: 0x330, symBinAddr: 0x5D6C, symSize: 0xC } - - { offsetInCU: 0x64F, offset: 0x58DC5, size: 0x8, addend: 0x0, symName: '-[CDVPlugin hasPendingOperation]', symObjAddr: 0x33C, symBinAddr: 0x5D78, symSize: 0xC } - - { offsetInCU: 0x686, offset: 0x58DFC, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setHasPendingOperation:]', symObjAddr: 0x348, symBinAddr: 0x5D84, symSize: 0x8 } - - { offsetInCU: 0x6C3, offset: 0x58E39, size: 0x8, addend: 0x0, symName: '-[CDVPlugin webView]', symObjAddr: 0x350, symBinAddr: 0x5D8C, symSize: 0x18 } - - { offsetInCU: 0x6FA, offset: 0x58E70, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setWebView:]', symObjAddr: 0x368, symBinAddr: 0x5DA4, symSize: 0xC } - - { offsetInCU: 0x73B, offset: 0x58EB1, size: 0x8, addend: 0x0, symName: '-[CDVPlugin className]', symObjAddr: 0x374, symBinAddr: 0x5DB0, symSize: 0x8 } - - { offsetInCU: 0x772, offset: 0x58EE8, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setClassName:]', symObjAddr: 0x37C, symBinAddr: 0x5DB8, symSize: 0xC } - - { offsetInCU: 0x7B3, offset: 0x58F29, size: 0x8, addend: 0x0, symName: '-[CDVPlugin .cxx_destruct]', symObjAddr: 0x388, symBinAddr: 0x5DC4, symSize: 0x44 } - - { offsetInCU: 0x27, offset: 0x58FA1, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginLocalizedString:]', symObjAddr: 0x0, symBinAddr: 0x5E08, symSize: 0xF0 } - - { offsetInCU: 0x4A, offset: 0x58FC4, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginLocalizedString:]', symObjAddr: 0x0, symBinAddr: 0x5E08, symSize: 0xF0 } - - { offsetInCU: 0xDA, offset: 0x59054, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginImageResource:]', symObjAddr: 0xF0, symBinAddr: 0x5EF8, symSize: 0xB0 } - - { offsetInCU: 0x27, offset: 0x59186, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser init]', symObjAddr: 0x0, symBinAddr: 0x5FA8, symSize: 0xDC } - - { offsetInCU: 0xD1, offset: 0x59230, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser init]', symObjAddr: 0x0, symBinAddr: 0x5FA8, symSize: 0xDC } - - { offsetInCU: 0x108, offset: 0x59267, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:didStartElement:namespaceURI:qualifiedName:attributes:]', symObjAddr: 0xDC, symBinAddr: 0x6084, symSize: 0x2AC } - - { offsetInCU: 0x1C6, offset: 0x59325, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:didEndElement:namespaceURI:qualifiedName:]', symObjAddr: 0x388, symBinAddr: 0x6330, symSize: 0x44 } - - { offsetInCU: 0x22D, offset: 0x5938C, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:parseErrorOccurred:]', symObjAddr: 0x3CC, symBinAddr: 0x6374, symSize: 0x4 } - - { offsetInCU: 0x274, offset: 0x593D3, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser pluginsDict]', symObjAddr: 0x3D0, symBinAddr: 0x6378, symSize: 0x8 } - - { offsetInCU: 0x2AB, offset: 0x5940A, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setPluginsDict:]', symObjAddr: 0x3D8, symBinAddr: 0x6380, symSize: 0xC } - - { offsetInCU: 0x2EC, offset: 0x5944B, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser settings]', symObjAddr: 0x3E4, symBinAddr: 0x638C, symSize: 0x8 } - - { offsetInCU: 0x323, offset: 0x59482, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setSettings:]', symObjAddr: 0x3EC, symBinAddr: 0x6394, symSize: 0xC } - - { offsetInCU: 0x364, offset: 0x594C3, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser startPage]', symObjAddr: 0x3F8, symBinAddr: 0x63A0, symSize: 0x8 } - - { offsetInCU: 0x39B, offset: 0x594FA, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setStartPage:]', symObjAddr: 0x400, symBinAddr: 0x63A8, symSize: 0xC } - - { offsetInCU: 0x3DC, offset: 0x5953B, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser startupPluginNames]', symObjAddr: 0x40C, symBinAddr: 0x63B4, symSize: 0x8 } - - { offsetInCU: 0x413, offset: 0x59572, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setStartupPluginNames:]', symObjAddr: 0x414, symBinAddr: 0x63BC, symSize: 0xC } - - { offsetInCU: 0x454, offset: 0x595B3, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser .cxx_destruct]', symObjAddr: 0x420, symBinAddr: 0x63C8, symSize: 0x54 } - - { offsetInCU: 0x27, offset: 0x59669, size: 0x8, addend: 0x0, symName: '-[CDVViewController pluginObjects]', symObjAddr: 0x0, symBinAddr: 0x641C, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x596E7, size: 0x8, addend: 0x0, symName: '-[CDVViewController pluginObjects]', symObjAddr: 0x0, symBinAddr: 0x641C, symSize: 0x10 } - - { offsetInCU: 0xDC, offset: 0x5971E, size: 0x8, addend: 0x0, symName: '-[CDVViewController setPluginObjects:]', symObjAddr: 0x10, symBinAddr: 0x642C, symSize: 0x14 } - - { offsetInCU: 0x11D, offset: 0x5975F, size: 0x8, addend: 0x0, symName: '-[CDVViewController settings]', symObjAddr: 0x24, symBinAddr: 0x6440, symSize: 0x10 } - - { offsetInCU: 0x154, offset: 0x59796, size: 0x8, addend: 0x0, symName: '-[CDVViewController webView]', symObjAddr: 0x34, symBinAddr: 0x6450, symSize: 0x20 } - - { offsetInCU: 0x18B, offset: 0x597CD, size: 0x8, addend: 0x0, symName: '-[CDVViewController .cxx_destruct]', symObjAddr: 0x54, symBinAddr: 0x6470, symSize: 0x50 } - - { offsetInCU: 0x27, offset: 0x59844, size: 0x8, addend: 0x0, symName: '+[CDVInvokedUrlCommand commandFromJson:]', symObjAddr: 0x0, symBinAddr: 0x64C0, symSize: 0x4C } - - { offsetInCU: 0xBF, offset: 0x598DC, size: 0x8, addend: 0x0, symName: '+[CDVInvokedUrlCommand commandFromJson:]', symObjAddr: 0x0, symBinAddr: 0x64C0, symSize: 0x4C } - - { offsetInCU: 0x102, offset: 0x5991F, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand initFromJson:]', symObjAddr: 0x4C, symBinAddr: 0x650C, symSize: 0x11C } - - { offsetInCU: 0x199, offset: 0x599B6, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand initWithArguments:callbackId:className:methodName:]', symObjAddr: 0x168, symBinAddr: 0x6628, symSize: 0x104 } - - { offsetInCU: 0x210, offset: 0x59A2D, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand massageArguments]', symObjAddr: 0x26C, symBinAddr: 0x672C, symSize: 0x1C0 } - - { offsetInCU: 0x2D1, offset: 0x59AEE, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:]', symObjAddr: 0x42C, symBinAddr: 0x68EC, symSize: 0x8 } - - { offsetInCU: 0x314, offset: 0x59B31, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:withDefault:]', symObjAddr: 0x434, symBinAddr: 0x68F4, symSize: 0x8 } - - { offsetInCU: 0x365, offset: 0x59B82, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:withDefault:andClass:]', symObjAddr: 0x43C, symBinAddr: 0x68FC, symSize: 0xE4 } - - { offsetInCU: 0x3DC, offset: 0x59BF9, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand arguments]', symObjAddr: 0x520, symBinAddr: 0x69E0, symSize: 0x8 } - - { offsetInCU: 0x413, offset: 0x59C30, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand callbackId]', symObjAddr: 0x528, symBinAddr: 0x69E8, symSize: 0x8 } - - { offsetInCU: 0x44A, offset: 0x59C67, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand className]', symObjAddr: 0x530, symBinAddr: 0x69F0, symSize: 0x8 } - - { offsetInCU: 0x481, offset: 0x59C9E, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand methodName]', symObjAddr: 0x538, symBinAddr: 0x69F8, symSize: 0x8 } - - { offsetInCU: 0x4B8, offset: 0x59CD5, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand .cxx_destruct]', symObjAddr: 0x540, symBinAddr: 0x6A00, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x59D94, size: 0x8, addend: 0x0, symName: '-[AppDelegate viewController]', symObjAddr: 0x0, symBinAddr: 0x6A48, symSize: 0x8 } - - { offsetInCU: 0xB4, offset: 0x59E21, size: 0x8, addend: 0x0, symName: '-[AppDelegate viewController]', symObjAddr: 0x0, symBinAddr: 0x6A48, symSize: 0x8 } - - { offsetInCU: 0xEB, offset: 0x59E58, size: 0x8, addend: 0x0, symName: '-[AppDelegate setViewController:]', symObjAddr: 0x8, symBinAddr: 0x6A50, symSize: 0xC } - - { offsetInCU: 0x12C, offset: 0x59E99, size: 0x8, addend: 0x0, symName: '-[AppDelegate .cxx_destruct]', symObjAddr: 0x14, symBinAddr: 0x6A5C, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x59F10, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canInitWithRequest:]', symObjAddr: 0x0, symBinAddr: 0x6A68, symSize: 0x8 } - - { offsetInCU: 0x41, offset: 0x59F2A, size: 0x8, addend: 0x0, symName: _kCDVAssetsLibraryPrefixes, symObjAddr: 0x2A8, symBinAddr: 0xC128, symSize: 0x0 } - - { offsetInCU: 0x7B, offset: 0x59F64, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canInitWithRequest:]', symObjAddr: 0x0, symBinAddr: 0x6A68, symSize: 0x8 } - - { offsetInCU: 0xBA, offset: 0x59FA3, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canonicalRequestForRequest:]', symObjAddr: 0x8, symBinAddr: 0x6A70, symSize: 0x18 } - - { offsetInCU: 0xFD, offset: 0x59FE6, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol startLoading]', symObjAddr: 0x20, symBinAddr: 0x6A88, symSize: 0x4 } - - { offsetInCU: 0x12C, offset: 0x5A015, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol stopLoading]', symObjAddr: 0x24, symBinAddr: 0x6A8C, symSize: 0x4 } - - { offsetInCU: 0x15B, offset: 0x5A044, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol requestIsCacheEquivalent:toRequest:]', symObjAddr: 0x28, symBinAddr: 0x6A90, symSize: 0x8 } - - { offsetInCU: 0x1A6, offset: 0x5A08F, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol sendResponseWithResponseCode:data:mimeType:]', symObjAddr: 0x30, symBinAddr: 0x6A98, symSize: 0x1C4 } -... diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Cordova b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Cordova deleted file mode 100755 index e1343f223..000000000 Binary files a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Cordova and /dev/null differ diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/AppDelegate.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/AppDelegate.h deleted file mode 100644 index 17678ea99..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/AppDelegate.h +++ /dev/null @@ -1,8 +0,0 @@ -#import -#import "CDVViewController.h" - -@interface AppDelegate : NSObject - -@property (nonatomic, strong) CDVViewController* viewController; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDV.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDV.h deleted file mode 100644 index c4d1d526f..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDV.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import "CDVAvailability.h" -#import "CDVPlugin.h" -#import "CDVPluginResult.h" -#import "CDVCommandDelegate.h" -#import "CDVInvokedUrlCommand.h" -#import "CDVViewController.h" -#import "CDVURLProtocol.h" -#import "CDVScreenOrientationDelegate.h" - diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVAvailability.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVAvailability.h deleted file mode 100644 index cc4c8fcd0..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVAvailability.h +++ /dev/null @@ -1,109 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#define __CORDOVA_IOS__ - -#define __CORDOVA_0_9_6 906 -#define __CORDOVA_1_0_0 10000 -#define __CORDOVA_1_1_0 10100 -#define __CORDOVA_1_2_0 10200 -#define __CORDOVA_1_3_0 10300 -#define __CORDOVA_1_4_0 10400 -#define __CORDOVA_1_4_1 10401 -#define __CORDOVA_1_5_0 10500 -#define __CORDOVA_1_6_0 10600 -#define __CORDOVA_1_6_1 10601 -#define __CORDOVA_1_7_0 10700 -#define __CORDOVA_1_8_0 10800 -#define __CORDOVA_1_8_1 10801 -#define __CORDOVA_1_9_0 10900 -#define __CORDOVA_2_0_0 20000 -#define __CORDOVA_2_1_0 20100 -#define __CORDOVA_2_2_0 20200 -#define __CORDOVA_2_3_0 20300 -#define __CORDOVA_2_4_0 20400 -#define __CORDOVA_2_5_0 20500 -#define __CORDOVA_2_6_0 20600 -#define __CORDOVA_2_7_0 20700 -#define __CORDOVA_2_8_0 20800 -#define __CORDOVA_2_9_0 20900 -#define __CORDOVA_3_0_0 30000 -#define __CORDOVA_3_1_0 30100 -#define __CORDOVA_3_2_0 30200 -#define __CORDOVA_3_3_0 30300 -#define __CORDOVA_3_4_0 30400 -#define __CORDOVA_3_4_1 30401 -#define __CORDOVA_3_5_0 30500 -#define __CORDOVA_3_6_0 30600 -#define __CORDOVA_3_7_0 30700 -#define __CORDOVA_3_8_0 30800 -#define __CORDOVA_3_9_0 30900 -#define __CORDOVA_3_9_1 30901 -#define __CORDOVA_3_9_2 30902 -#define __CORDOVA_4_0_0 40000 -#define __CORDOVA_4_0_1 40001 -#define __CORDOVA_4_1_0 40100 -#define __CORDOVA_4_1_1 40101 -#define __CORDOVA_4_2_0 40200 -#define __CORDOVA_4_2_1 40201 -#define __CORDOVA_4_3_0 40300 -#define __CORDOVA_4_3_1 40301 -#define __CORDOVA_4_4_0 40400 -#define __CORDOVA_4_5_0 40500 -#define __CORDOVA_4_5_1 40501 -#define __CORDOVA_4_5_2 40502 -#define __CORDOVA_4_5_4 40504 -/* coho:next-version,insert-before */ -#define __CORDOVA_NA 99999 /* not available */ - -/* - #if CORDOVA_VERSION_MIN_REQUIRED >= __CORDOVA_4_0_0 - // do something when its at least 4.0.0 - #else - // do something else (non 4.0.0) - #endif - */ -#ifndef CORDOVA_VERSION_MIN_REQUIRED - /* coho:next-version-min-required,replace-after */ - #define CORDOVA_VERSION_MIN_REQUIRED __CORDOVA_4_5_4 -#endif - -/* - Returns YES if it is at least version specified as NSString(X) - Usage: - if (IsAtLeastiOSVersion(@"5.1")) { - // do something for iOS 5.1 or greater - } - */ -#define IsAtLeastiOSVersion(X) ([[[UIDevice currentDevice] systemVersion] compare:X options:NSNumericSearch] != NSOrderedAscending) - -/* Return the string version of the decimal version */ -#define CDV_VERSION [NSString stringWithFormat:@"%d.%d.%d", \ - (CORDOVA_VERSION_MIN_REQUIRED / 10000), \ - (CORDOVA_VERSION_MIN_REQUIRED % 10000) / 100, \ - (CORDOVA_VERSION_MIN_REQUIRED % 10000) % 100] - -// Enable this to log all exec() calls. -#define CDV_ENABLE_EXEC_LOGGING 0 -#if CDV_ENABLE_EXEC_LOGGING - #define CDV_EXEC_LOG NSLog -#else - #define CDV_EXEC_LOG(...) do { \ -} while (NO) -#endif diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVCommandDelegate.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVCommandDelegate.h deleted file mode 100644 index 45869bdea..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVCommandDelegate.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import "CDVInvokedUrlCommand.h" - -@class CDVPlugin; -@class CDVPluginResult; - -typedef NSURL* (^ UrlTransformerBlock)(NSURL*); - -@protocol CDVCommandDelegate - -@property (nonatomic, readonly) NSDictionary* settings; -@property (nonatomic, copy) UrlTransformerBlock urlTransformer; - -- (NSString*)pathForResource:(NSString*)resourcepath; -- (id)getCommandInstance:(NSString*)pluginName; - -// Sends a plugin result to the JS. This is thread-safe. -- (void)sendPluginResult:(CDVPluginResult*)result callbackId:(NSString*)callbackId; -// Evaluates the given JS. This is thread-safe. -- (void)evalJs:(NSString*)js; -// Can be used to evaluate JS right away instead of scheduling it on the run-loop. -// This is required for dispatch resign and pause events, but should not be used -// without reason. Without the run-loop delay, alerts used in JS callbacks may result -// in dead-lock. This method must be called from the UI thread. -- (void)evalJs:(NSString*)js scheduledOnRunLoop:(BOOL)scheduledOnRunLoop; -// Run the javascript -- (void)evalJsHelper2:(NSString*)js; -// Runs the given block on a background thread using a shared thread-pool. -- (void)runInBackground:(void (^)(void))block; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVCommandDelegateImpl.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVCommandDelegateImpl.h deleted file mode 100644 index f42654e34..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVCommandDelegateImpl.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import "CDVCommandDelegate.h" -#import -#import "CDVPluginManager.h" - -@class CDVViewController; -@class CDVCommandQueue; - -@interface CDVCommandDelegateImpl : NSObject { - @private - __weak WKWebView* _webView; - __weak CDVPluginManager* _manager; - NSRegularExpression* _callbackIdPattern; - @protected - __weak CDVCommandQueue* _commandQueue; - BOOL _delayResponses; -} -- (id)initWithWebView:(WKWebView*)webView pluginManager:(CDVPluginManager *)manager; -- (void)flushCommandQueueWithDelayedJs; -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVConfigParser.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVConfigParser.h deleted file mode 100644 index 68fdbe6b0..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVConfigParser.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ -#import - -@interface CDVConfigParser : NSObject -{ - NSString* featureName; -} - -@property (nonatomic, readonly, strong) NSMutableDictionary* pluginsDict; -@property (nonatomic, readonly, strong) NSMutableDictionary* settings; -@property (nonatomic, readonly, strong) NSMutableArray* startupPluginNames; -@property (nonatomic, readonly, strong) NSString* startPage; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVInvokedUrlCommand.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVInvokedUrlCommand.h deleted file mode 100644 index 993e0a285..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVInvokedUrlCommand.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -@interface CDVInvokedUrlCommand : NSObject { - NSString* _callbackId; - NSString* _className; - NSString* _methodName; - NSArray* _arguments; -} - -@property (nonatomic, readonly) NSArray* arguments; -@property (nonatomic, readonly) NSString* callbackId; -@property (nonatomic, readonly) NSString* className; -@property (nonatomic, readonly) NSString* methodName; - -+ (CDVInvokedUrlCommand*)commandFromJson:(NSArray*)jsonEntry; - -- (id)initWithArguments:(NSArray*)arguments - callbackId:(NSString*)callbackId - className:(NSString*)className - methodName:(NSString*)methodName; - -- (id)initFromJson:(NSArray*)jsonEntry; - -// Returns the argument at the given index. -// If index >= the number of arguments, returns nil. -// If the argument at the given index is NSNull, returns nil. -- (id)argumentAtIndex:(NSUInteger)index; -// Same as above, but returns defaultValue instead of nil. -- (id)argumentAtIndex:(NSUInteger)index withDefault:(id)defaultValue; -// Same as above, but returns defaultValue instead of nil, and if the argument is not of the expected class, returns defaultValue -- (id)argumentAtIndex:(NSUInteger)index withDefault:(id)defaultValue andClass:(Class)aClass; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPlugin+Resources.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPlugin+Resources.h deleted file mode 100644 index cc43b16b7..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPlugin+Resources.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import "CDVPlugin.h" - -@interface CDVPlugin (CDVPluginResources) - -/* - This will return the localized string for a key in a .bundle that is named the same as your class - For example, if your plugin class was called Foo, and you have a Spanish localized strings file, it will - try to load the desired key from Foo.bundle/es.lproj/Localizable.strings - */ -- (NSString*)pluginLocalizedString:(NSString*)key; - -/* - This will return the image for a name in a .bundle that is named the same as your class - For example, if your plugin class was called Foo, and you have an image called "bar", - it will try to load the image from Foo.bundle/bar.png (and appropriately named retina versions) - */ -- (UIImage*)pluginImageResource:(NSString*)name; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPlugin.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPlugin.h deleted file mode 100644 index 29ba4cdf0..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPlugin.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import -#import "CDVPluginResult.h" -#import "CDVCommandDelegate.h" -#import "CDVAvailability.h" -#import - -@interface UIView (org_apache_cordova_UIView_Extension) - -@property (nonatomic, weak) UIScrollView* scrollView; - -@end - -extern NSString* const CDVPageDidLoadNotification; -extern NSString* const CDVPluginHandleOpenURLNotification; -extern NSString* const CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification; -extern NSString* const CDVPluginResetNotification; -extern NSString* const CDVViewWillAppearNotification; -extern NSString* const CDVViewDidAppearNotification; -extern NSString* const CDVViewWillDisappearNotification; -extern NSString* const CDVViewDidDisappearNotification; -extern NSString* const CDVViewWillLayoutSubviewsNotification; -extern NSString* const CDVViewDidLayoutSubviewsNotification; -extern NSString* const CDVViewWillTransitionToSizeNotification; - -/* - * The local and remote push notification functionality has been removed from the core in cordova-ios 4.x, - * but these constants have unfortunately have not been removed, but will be removed in 5.x. - * - * To have the same functionality as 3.x, use a third-party plugin or the experimental - * https://github.com/apache/cordova-plugins/tree/master/notification-rebroadcast - */ - - -@interface CDVPlugin : NSObject {} - -- (instancetype)initWithWebViewEngine:(WKWebView *)theWebViewEngine; -@property (nonatomic, weak) UIView* webView; -@property (nonatomic, weak) WKWebView * webViewEngine; -@property (nonatomic, strong) NSString * className; - -@property (nonatomic, weak) UIViewController* viewController; -@property (nonatomic, weak) id commandDelegate; - -- (void)pluginInitialize; - -- (void)handleOpenURL:(NSNotification*)notification; -- (void)onAppTerminate; -- (void)onMemoryWarning; -- (void)onReset; -- (void)dispose; - -/* - // see initWithWebView implementation - - (void) onPause {} - - (void) onResume {} - - (void) onOrientationWillChange {} - - (void) onOrientationDidChange {} - */ - -- (id)appDelegate; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPluginManager.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPluginManager.h deleted file mode 100644 index 134959c38..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPluginManager.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// CDVPluginManager.h -// CapacitorCordova -// -// Created by Julio Cesar Sanchez Hernandez on 26/2/18. -// - -#import -#import "CDVPlugin.h" -#import "CDVConfigParser.h" -#import "CDVCommandDelegate.h" - -@interface CDVPluginManager : NSObject - -@property (nonatomic, strong) NSMutableDictionary * pluginsMap; -@property (nonatomic, strong) NSMutableDictionary * pluginObjects; -@property (nonatomic, strong) NSMutableDictionary * settings; -@property (nonatomic, strong) UIViewController * viewController; -@property (nonatomic, strong) WKWebView * webView; -@property (nonatomic, strong) id commandDelegate; - -- (id)initWithParser:(CDVConfigParser*)parser viewController:(UIViewController*)viewController webView:(WKWebView *)webview; -- (CDVPlugin *)getCommandInstance:(NSString*)pluginName; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPluginResult.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPluginResult.h deleted file mode 100644 index 2947af89a..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVPluginResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -typedef NS_ENUM(NSUInteger, CDVCommandStatus) { - CDVCommandStatus_NO_RESULT NS_SWIFT_NAME(noResult) = 0, - CDVCommandStatus_OK NS_SWIFT_NAME(ok), - CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION NS_SWIFT_NAME(classNotFoundException), - CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION NS_SWIFT_NAME(illegalAccessException), - CDVCommandStatus_INSTANTIATION_EXCEPTION NS_SWIFT_NAME(instantiationException), - CDVCommandStatus_MALFORMED_URL_EXCEPTION NS_SWIFT_NAME(malformedUrlException), - CDVCommandStatus_IO_EXCEPTION NS_SWIFT_NAME(ioException), - CDVCommandStatus_INVALID_ACTION NS_SWIFT_NAME(invalidAction), - CDVCommandStatus_JSON_EXCEPTION NS_SWIFT_NAME(jsonException), - CDVCommandStatus_ERROR NS_SWIFT_NAME(error) -}; - -// This exists to preserve compatibility with early Swift plugins, who are -// using CDVCommandStatus as ObjC-style constants rather than as Swift enum -// values. -// This declares extern'ed constants (implemented in CDVPluginResult.m) -#define SWIFT_ENUM_COMPAT_HACK(enumVal) extern const CDVCommandStatus SWIFT_##enumVal NS_SWIFT_NAME(enumVal) -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_NO_RESULT); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_OK); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_INSTANTIATION_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_MALFORMED_URL_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_IO_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_INVALID_ACTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_JSON_EXCEPTION); -SWIFT_ENUM_COMPAT_HACK(CDVCommandStatus_ERROR); -#undef SWIFT_ENUM_COMPAT_HACK - -@interface CDVPluginResult : NSObject {} - -@property (nonatomic, strong, readonly) NSNumber* status; -@property (nonatomic, strong, readonly) id message; -@property (nonatomic, strong) NSNumber* keepCallback; -// This property can be used to scope the lifetime of another object. For example, -// Use it to store the associated NSData when `message` is created using initWithBytesNoCopy. -@property (nonatomic, strong) id associatedObject; - -- (CDVPluginResult*)init; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsString:(NSString*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsArray:(NSArray*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsInt:(int)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsNSInteger:(NSInteger)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsNSUInteger:(NSUInteger)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsDouble:(double)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsBool:(BOOL)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsDictionary:(NSDictionary*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsArrayBuffer:(NSData*)theMessage; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageAsMultipart:(NSArray*)theMessages; -+ (CDVPluginResult*)resultWithStatus:(CDVCommandStatus)statusOrdinal messageToErrorObject:(int)errorCode; - -+ (void)setVerbose:(BOOL)verbose; -+ (BOOL)isVerbose; - -- (void)setKeepCallbackAsBool:(BOOL)bKeepCallback; - -- (NSString*)argumentsAsJSON; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVScreenOrientationDelegate.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVScreenOrientationDelegate.h deleted file mode 100644 index 519dd490c..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVScreenOrientationDelegate.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -@protocol CDVScreenOrientationDelegate - -#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000 -- (NSUInteger)supportedInterfaceOrientations; -#else -- (UIInterfaceOrientationMask)supportedInterfaceOrientations; -#endif - -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation; -- (BOOL)shouldAutorotate; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVURLProtocol.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVURLProtocol.h deleted file mode 100644 index 0561e04d9..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVURLProtocol.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import "CDVAvailability.h" - -@class CDVViewController; - -@interface CDVURLProtocol : NSURLProtocol {} - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVViewController.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVViewController.h deleted file mode 100644 index 81ed0069a..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CDVViewController.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import - -@interface CDVViewController : UIViewController - -@property (nonatomic, readonly, strong) NSMutableDictionary* pluginObjects; -@property (nonatomic, readonly, strong) NSMutableDictionary* settings; -@property (nonatomic, readonly, weak) UIView* webView; - -- (id) getCommandInstance:(NSString*)className; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CapacitorCordova.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CapacitorCordova.h deleted file mode 100644 index bee4ca2ea..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/CapacitorCordova.h +++ /dev/null @@ -1,23 +0,0 @@ -#import - -//! Project version number for CapacitorCordova. -FOUNDATION_EXPORT double CapacitorCordovaVersionNumber; - -//! Project version string for CapacitorCordova. -FOUNDATION_EXPORT const unsigned char CapacitorCordovaVersionString[]; - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/NSDictionary+CordovaPreferences.h b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/NSDictionary+CordovaPreferences.h deleted file mode 100644 index 9be2be2dc..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Headers/NSDictionary+CordovaPreferences.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. - */ - -#import -#import - -@interface NSDictionary (CordovaPreferences) - -- (id)cordovaSettingForKey:(NSString*)key; -- (BOOL)cordovaBoolSettingForKey:(NSString*)key defaultValue:(BOOL)defaultValue; -- (CGFloat)cordovaFloatSettingForKey:(NSString*)key defaultValue:(CGFloat)defaultValue; - -@end - -@interface NSMutableDictionary (CordovaPreferences) - -- (void)setCordovaSetting:(id)value forKey:(NSString*)key; - -@end diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Info.plist b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Info.plist deleted file mode 100644 index 29d37875f..000000000 Binary files a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Info.plist and /dev/null differ diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Modules/module.modulemap b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Modules/module.modulemap deleted file mode 100644 index 32af43c12..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Cordova { - umbrella header "CapacitorCordova.h" - - export * - module * { export * } -} diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/_CodeSignature/CodeResources b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/_CodeSignature/CodeResources deleted file mode 100644 index 56e54c239..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/Cordova.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,289 +0,0 @@ - - - - - files - - Headers/AppDelegate.h - - GIs59oVpMuPHTqPY0q42hGoMK/o= - - Headers/CDV.h - - Ab2k1KUb+ZtUdCx+tDTQcyvakD4= - - Headers/CDVAvailability.h - - mQR0CzDuMl0BwC4ZrPBIFdeqQO4= - - Headers/CDVCommandDelegate.h - - /WIUoPrTs+8S0BW1yITCizoeHAY= - - Headers/CDVCommandDelegateImpl.h - - /l3nfQ85nnwXcTyfJbqb/qKnyS8= - - Headers/CDVConfigParser.h - - 78Dd+a2oLPsg6Fa3tLyOJ5mehwg= - - Headers/CDVInvokedUrlCommand.h - - U6bWJ1pPhbFZhvhPH+PTCmM0Kdk= - - Headers/CDVPlugin+Resources.h - - zfx2ByDS+he6cvrkvw7+eL+VVYc= - - Headers/CDVPlugin.h - - TAyufsC9XeFg8LjuswKLMH0jJ2M= - - Headers/CDVPluginManager.h - - QjgJKcdfKEZ8OWb25dwtjUkRdIc= - - Headers/CDVPluginResult.h - - 8b9G9RGUP5NQyXeUv+kvQs1iCcE= - - Headers/CDVScreenOrientationDelegate.h - - VqSQsGYUjJ19V4tJ6DI/3yd4mmk= - - Headers/CDVURLProtocol.h - - StNnxGCnAA3Z5MRo4NsoWp+VePA= - - Headers/CDVViewController.h - - 1vtgqYp48v2LD92Nwn8/ar9l18w= - - Headers/CapacitorCordova.h - - FsxtVe47hOmsxnSgcPylAKxkVfI= - - Headers/NSDictionary+CordovaPreferences.h - - PX4ZgEnB+kkuD6/lU0cpPKuj0cc= - - Info.plist - - U940yab/XBK1e2I/L8+65gxtUTg= - - Modules/module.modulemap - - ETb+azmPa4M+7mrQ+G+uam+nskY= - - - files2 - - Headers/AppDelegate.h - - hash2 - - aPMCa2H+CcVFIPEAiyqCLD3fXBpWqMHJVFH0UQx0r7k= - - - Headers/CDV.h - - hash2 - - vJM3gfrQ0iEmIzbIQqbQg6RjThyM/2ikBVKNh4SF2M8= - - - Headers/CDVAvailability.h - - hash2 - - W7aQBsEvMHUHgtBftscput2Q409PJKZeczWFwACJPcE= - - - Headers/CDVCommandDelegate.h - - hash2 - - /fYe40qDqx6ANhjzbUjVp7tol/j/6BvuzviUfFs6TFQ= - - - Headers/CDVCommandDelegateImpl.h - - hash2 - - zajZeK5RbEocVDfA9+KR37T0t1hFzqmiSnHPyzgVVmY= - - - Headers/CDVConfigParser.h - - hash2 - - bEYRbma0jr4rGX+r6m8nIDWjOhYFg1o8WCIAqgepso4= - - - Headers/CDVInvokedUrlCommand.h - - hash2 - - IHDiSovWVyVPlFPr/DgpMxDQYPhvQ7IwQBfPLA5Oxvc= - - - Headers/CDVPlugin+Resources.h - - hash2 - - Z+rUlYc3C4cZn7Rwt5R0OBUJiwsi2LVNke1WM40QtMc= - - - Headers/CDVPlugin.h - - hash2 - - BT8CKZUMaZTyewDSjhXmGwmSB3cm9XL743fMloigxlE= - - - Headers/CDVPluginManager.h - - hash2 - - PT4y726DbFDrS4xTsGD3qnA6kP+ApTFamA9v6BCjaLo= - - - Headers/CDVPluginResult.h - - hash2 - - rUYJnOiLhdddYjIhhL98i/dWWpMZZDkSp07tQG0TRjI= - - - Headers/CDVScreenOrientationDelegate.h - - hash2 - - 1O2UEhoACR8uLFrgZcMFnWIukJiq+RdYd3gknY8RXHM= - - - Headers/CDVURLProtocol.h - - hash2 - - zRe3wqfV6t0aFgcXXd+fAA9B7Yt2YPiUZBh+sx9My0E= - - - Headers/CDVViewController.h - - hash2 - - iK1DgnnwExjIKVqtRbWm8Cws2SerdwaFssPIXwNkPT4= - - - Headers/CapacitorCordova.h - - hash2 - - TCSbdAhsRBM9MS0bcwxGZNV7lrFHFPzKpHA7WEvAHsc= - - - Headers/NSDictionary+CordovaPreferences.h - - hash2 - - qKyKuxpB8iD7KlG9YBHQYg3SZaCVpuV2TQYiXuhyMlY= - - - Modules/module.modulemap - - hash2 - - sWCzgVEyDbY/HZO31E1IC21bUHrpLBfJ/Lir+k7kXFk= - - - - 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/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Info.plist b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 4145d053e..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.getcapacitor.ios.CapacitorCordova - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - - diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/DWARF/Cordova b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/DWARF/Cordova deleted file mode 100644 index 077b43504..000000000 Binary files a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/DWARF/Cordova and /dev/null differ diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/aarch64/Cordova.yml b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/aarch64/Cordova.yml deleted file mode 100644 index da66b110e..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/aarch64/Cordova.yml +++ /dev/null @@ -1,179 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/mark/Library/Developer/Xcode/DerivedData/Capacitor-cvqxffszbvmpzcdcdtewgtstoqol/Build/Intermediates.noindex/ArchiveIntermediates/Capacitor/InstallationBuildProductsLocation/Library/Frameworks/Cordova.framework/Cordova' -relocations: - - { offsetInCU: 0x34, offset: 0x56D8A, size: 0x8, addend: 0x0, symName: _CordovaVersionString, symObjAddr: 0x0, symBinAddr: 0x5BB0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x56DBF, size: 0x8, addend: 0x0, symName: _CordovaVersionNumber, symObjAddr: 0x38, symBinAddr: 0x5BE8, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0x56DFC, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager initWithParser:viewController:webView:]', symObjAddr: 0x0, symBinAddr: 0x1A3C, symSize: 0x1B8 } - - { offsetInCU: 0x12F, offset: 0x56F04, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager initWithParser:viewController:webView:]', symObjAddr: 0x0, symBinAddr: 0x1A3C, symSize: 0x1B8 } - - { offsetInCU: 0x196, offset: 0x56F6B, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager getCommandInstance:]', symObjAddr: 0x1B8, symBinAddr: 0x1BF4, symSize: 0x224 } - - { offsetInCU: 0x269, offset: 0x5703E, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager registerPlugin:withClassName:]', symObjAddr: 0x3DC, symBinAddr: 0x1E18, symSize: 0xF4 } - - { offsetInCU: 0x2BC, offset: 0x57091, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager onAppDidEnterBackground:]', symObjAddr: 0x4D0, symBinAddr: 0x1F0C, symSize: 0x38 } - - { offsetInCU: 0x2FB, offset: 0x570D0, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager onAppWillEnterForeground:]', symObjAddr: 0x508, symBinAddr: 0x1F44, symSize: 0x38 } - - { offsetInCU: 0x33A, offset: 0x5710F, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager pluginsMap]', symObjAddr: 0x540, symBinAddr: 0x1F7C, symSize: 0x8 } - - { offsetInCU: 0x371, offset: 0x57146, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setPluginsMap:]', symObjAddr: 0x548, symBinAddr: 0x1F84, symSize: 0xC } - - { offsetInCU: 0x3B2, offset: 0x57187, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager pluginObjects]', symObjAddr: 0x554, symBinAddr: 0x1F90, symSize: 0x8 } - - { offsetInCU: 0x3E9, offset: 0x571BE, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setPluginObjects:]', symObjAddr: 0x55C, symBinAddr: 0x1F98, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x571FF, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager settings]', symObjAddr: 0x568, symBinAddr: 0x1FA4, symSize: 0x8 } - - { offsetInCU: 0x461, offset: 0x57236, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setSettings:]', symObjAddr: 0x570, symBinAddr: 0x1FAC, symSize: 0xC } - - { offsetInCU: 0x4A2, offset: 0x57277, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager viewController]', symObjAddr: 0x57C, symBinAddr: 0x1FB8, symSize: 0x8 } - - { offsetInCU: 0x4D9, offset: 0x572AE, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setViewController:]', symObjAddr: 0x584, symBinAddr: 0x1FC0, symSize: 0xC } - - { offsetInCU: 0x51A, offset: 0x572EF, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager webView]', symObjAddr: 0x590, symBinAddr: 0x1FCC, symSize: 0x8 } - - { offsetInCU: 0x551, offset: 0x57326, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setWebView:]', symObjAddr: 0x598, symBinAddr: 0x1FD4, symSize: 0xC } - - { offsetInCU: 0x592, offset: 0x57367, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager commandDelegate]', symObjAddr: 0x5A4, symBinAddr: 0x1FE0, symSize: 0x8 } - - { offsetInCU: 0x5C9, offset: 0x5739E, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setCommandDelegate:]', symObjAddr: 0x5AC, symBinAddr: 0x1FE8, symSize: 0xC } - - { offsetInCU: 0x60A, offset: 0x573DF, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager .cxx_destruct]', symObjAddr: 0x5B8, symBinAddr: 0x1FF4, symSize: 0x60 } - - { offsetInCU: 0x27, offset: 0x57511, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl initWithWebView:pluginManager:]', symObjAddr: 0x0, symBinAddr: 0x2054, symSize: 0x108 } - - { offsetInCU: 0x1E6, offset: 0x576D0, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl initWithWebView:pluginManager:]', symObjAddr: 0x0, symBinAddr: 0x2054, symSize: 0x108 } - - { offsetInCU: 0x25C, offset: 0x57746, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl pathForResource:]', symObjAddr: 0x108, symBinAddr: 0x215C, symSize: 0x190 } - - { offsetInCU: 0x2FF, offset: 0x577E9, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl flushCommandQueueWithDelayedJs]', symObjAddr: 0x298, symBinAddr: 0x22EC, symSize: 0x8 } - - { offsetInCU: 0x330, offset: 0x5781A, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJsHelper2:]', symObjAddr: 0x2A0, symBinAddr: 0x22F4, symSize: 0x84 } - - { offsetInCU: 0x3FD, offset: 0x578E7, size: 0x8, addend: 0x0, symName: '___40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke', symObjAddr: 0x324, symBinAddr: 0x2378, symSize: 0x40 } - - { offsetInCU: 0x44C, offset: 0x57936, size: 0x8, addend: 0x0, symName: '___40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke_2', symObjAddr: 0x364, symBinAddr: 0x23B8, symSize: 0x5C } - - { offsetInCU: 0x4AA, offset: 0x57994, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x3C0, symBinAddr: 0x2414, symSize: 0x28 } - - { offsetInCU: 0x4D3, offset: 0x579BD, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x3E8, symBinAddr: 0x243C, symSize: 0x28 } - - { offsetInCU: 0x4F2, offset: 0x579DC, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl isValidCallbackId:]', symObjAddr: 0x410, symBinAddr: 0x2464, symSize: 0x94 } - - { offsetInCU: 0x539, offset: 0x57A23, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl sendPluginResult:callbackId:]', symObjAddr: 0x4A4, symBinAddr: 0x24F8, symSize: 0x138 } - - { offsetInCU: 0x5D8, offset: 0x57AC2, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJs:]', symObjAddr: 0x5DC, symBinAddr: 0x2630, symSize: 0x8 } - - { offsetInCU: 0x617, offset: 0x57B01, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJs:scheduledOnRunLoop:]', symObjAddr: 0x5E4, symBinAddr: 0x2638, symSize: 0x58 } - - { offsetInCU: 0x666, offset: 0x57B50, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl getCommandInstance:]', symObjAddr: 0x63C, symBinAddr: 0x2690, symSize: 0x64 } - - { offsetInCU: 0x6AD, offset: 0x57B97, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl runInBackground:]', symObjAddr: 0x6A0, symBinAddr: 0x26F4, symSize: 0x40 } - - { offsetInCU: 0x73C, offset: 0x57C26, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl settings]', symObjAddr: 0x6E0, symBinAddr: 0x2734, symSize: 0x40 } - - { offsetInCU: 0x773, offset: 0x57C5D, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl urlTransformer]', symObjAddr: 0x720, symBinAddr: 0x2774, symSize: 0x8 } - - { offsetInCU: 0x7AA, offset: 0x57C94, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl setUrlTransformer:]', symObjAddr: 0x728, symBinAddr: 0x277C, symSize: 0x8 } - - { offsetInCU: 0x7E9, offset: 0x57CD3, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl .cxx_destruct]', symObjAddr: 0x730, symBinAddr: 0x2784, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x57EE4, size: 0x8, addend: 0x0, symName: _messageFromArrayBuffer, symObjAddr: 0x0, symBinAddr: 0x27CC, symSize: 0xB4 } - - { offsetInCU: 0x41, offset: 0x57EFE, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_NO_RESULT, symObjAddr: 0xB60, symBinAddr: 0x5BF8, symSize: 0x0 } - - { offsetInCU: 0xB7, offset: 0x57F74, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_OK, symObjAddr: 0xB68, symBinAddr: 0x5C00, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x57F8A, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION, symObjAddr: 0xB70, symBinAddr: 0x5C08, symSize: 0x0 } - - { offsetInCU: 0xE3, offset: 0x57FA0, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION, symObjAddr: 0xB78, symBinAddr: 0x5C10, symSize: 0x0 } - - { offsetInCU: 0xF9, offset: 0x57FB6, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_INSTANTIATION_EXCEPTION, symObjAddr: 0xB80, symBinAddr: 0x5C18, symSize: 0x0 } - - { offsetInCU: 0x10F, offset: 0x57FCC, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_MALFORMED_URL_EXCEPTION, symObjAddr: 0xB88, symBinAddr: 0x5C20, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x57FE2, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_IO_EXCEPTION, symObjAddr: 0xB90, symBinAddr: 0x5C28, symSize: 0x0 } - - { offsetInCU: 0x13B, offset: 0x57FF8, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_INVALID_ACTION, symObjAddr: 0xB98, symBinAddr: 0x5C30, symSize: 0x0 } - - { offsetInCU: 0x151, offset: 0x5800E, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_JSON_EXCEPTION, symObjAddr: 0xBA0, symBinAddr: 0x5C38, symSize: 0x0 } - - { offsetInCU: 0x167, offset: 0x58024, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_ERROR, symObjAddr: 0xBA8, symBinAddr: 0x5C40, symSize: 0x0 } - - { offsetInCU: 0x17D, offset: 0x5803A, size: 0x8, addend: 0x0, symName: _org_apache_cordova_CommandStatusMsgs, symObjAddr: 0x5660, symBinAddr: 0xDF68, symSize: 0x0 } - - { offsetInCU: 0x198, offset: 0x58055, size: 0x8, addend: 0x0, symName: _gIsVerbose, symObjAddr: 0x5668, symBinAddr: 0xDF70, symSize: 0x0 } - - { offsetInCU: 0x257, offset: 0x58114, size: 0x8, addend: 0x0, symName: _messageFromArrayBuffer, symObjAddr: 0x0, symBinAddr: 0x27CC, symSize: 0xB4 } - - { offsetInCU: 0x282, offset: 0x5813F, size: 0x8, addend: 0x0, symName: _massageMessage, symObjAddr: 0xB4, symBinAddr: 0x2880, symSize: 0x68 } - - { offsetInCU: 0x2C3, offset: 0x58180, size: 0x8, addend: 0x0, symName: _messageFromMultipart, symObjAddr: 0x11C, symBinAddr: 0x28E8, symSize: 0x128 } - - { offsetInCU: 0x32B, offset: 0x581E8, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult initialize]', symObjAddr: 0x244, symBinAddr: 0x2A10, symSize: 0x9C } - - { offsetInCU: 0x35A, offset: 0x58217, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult init]', symObjAddr: 0x2E0, symBinAddr: 0x2AAC, symSize: 0xC } - - { offsetInCU: 0x38F, offset: 0x5824C, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult initWithStatus:message:]', symObjAddr: 0x2EC, symBinAddr: 0x2AB8, symSize: 0xD0 } - - { offsetInCU: 0x3E6, offset: 0x582A3, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:]', symObjAddr: 0x3BC, symBinAddr: 0x2B88, symSize: 0x2C } - - { offsetInCU: 0x42D, offset: 0x582EA, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsString:]', symObjAddr: 0x3E8, symBinAddr: 0x2BB4, symSize: 0x58 } - - { offsetInCU: 0x484, offset: 0x58341, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsArray:]', symObjAddr: 0x440, symBinAddr: 0x2C0C, symSize: 0x58 } - - { offsetInCU: 0x4DB, offset: 0x58398, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsInt:]', symObjAddr: 0x498, symBinAddr: 0x2C64, symSize: 0x6C } - - { offsetInCU: 0x532, offset: 0x583EF, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsNSInteger:]', symObjAddr: 0x504, symBinAddr: 0x2CD0, symSize: 0x6C } - - { offsetInCU: 0x589, offset: 0x58446, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsNSUInteger:]', symObjAddr: 0x570, symBinAddr: 0x2D3C, symSize: 0x6C } - - { offsetInCU: 0x5E0, offset: 0x5849D, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsDouble:]', symObjAddr: 0x5DC, symBinAddr: 0x2DA8, symSize: 0x74 } - - { offsetInCU: 0x637, offset: 0x584F4, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsBool:]', symObjAddr: 0x650, symBinAddr: 0x2E1C, symSize: 0x6C } - - { offsetInCU: 0x68E, offset: 0x5854B, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsDictionary:]', symObjAddr: 0x6BC, symBinAddr: 0x2E88, symSize: 0x58 } - - { offsetInCU: 0x6E5, offset: 0x585A2, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsArrayBuffer:]', symObjAddr: 0x714, symBinAddr: 0x2EE0, symSize: 0x7C } - - { offsetInCU: 0x752, offset: 0x5860F, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsMultipart:]', symObjAddr: 0x790, symBinAddr: 0x2F5C, symSize: 0x7C } - - { offsetInCU: 0x7BF, offset: 0x5867C, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageToErrorObject:]', symObjAddr: 0x80C, symBinAddr: 0x2FD8, symSize: 0xD8 } - - { offsetInCU: 0x826, offset: 0x586E3, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setKeepCallbackAsBool:]', symObjAddr: 0x8E4, symBinAddr: 0x30B0, symSize: 0x44 } - - { offsetInCU: 0x869, offset: 0x58726, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult argumentsAsJSON]', symObjAddr: 0x928, symBinAddr: 0x30F4, symSize: 0xDC } - - { offsetInCU: 0x8CC, offset: 0x58789, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult setVerbose:]', symObjAddr: 0xA04, symBinAddr: 0x31D0, symSize: 0xC } - - { offsetInCU: 0x907, offset: 0x587C4, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult isVerbose]', symObjAddr: 0xA10, symBinAddr: 0x31DC, symSize: 0xC } - - { offsetInCU: 0x93A, offset: 0x587F7, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult JSONStringFromArray:]', symObjAddr: 0xA1C, symBinAddr: 0x31E8, symSize: 0xC0 } - - { offsetInCU: 0x99D, offset: 0x5885A, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult status]', symObjAddr: 0xADC, symBinAddr: 0x32A8, symSize: 0x8 } - - { offsetInCU: 0x9D4, offset: 0x58891, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult message]', symObjAddr: 0xAE4, symBinAddr: 0x32B0, symSize: 0x8 } - - { offsetInCU: 0xA0B, offset: 0x588C8, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult keepCallback]', symObjAddr: 0xAEC, symBinAddr: 0x32B8, symSize: 0x8 } - - { offsetInCU: 0xA42, offset: 0x588FF, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setKeepCallback:]', symObjAddr: 0xAF4, symBinAddr: 0x32C0, symSize: 0xC } - - { offsetInCU: 0xA83, offset: 0x58940, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult associatedObject]', symObjAddr: 0xB00, symBinAddr: 0x32CC, symSize: 0x8 } - - { offsetInCU: 0xABA, offset: 0x58977, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setAssociatedObject:]', symObjAddr: 0xB08, symBinAddr: 0x32D4, symSize: 0xC } - - { offsetInCU: 0xAFB, offset: 0x589B8, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult .cxx_destruct]', symObjAddr: 0xB14, symBinAddr: 0x32E0, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x58A6B, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaSettingForKey:]', symObjAddr: 0x0, symBinAddr: 0x3328, symSize: 0x54 } - - { offsetInCU: 0x43, offset: 0x58A87, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaSettingForKey:]', symObjAddr: 0x0, symBinAddr: 0x3328, symSize: 0x54 } - - { offsetInCU: 0x8A, offset: 0x58ACE, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaBoolSettingForKey:defaultValue:]', symObjAddr: 0x54, symBinAddr: 0x337C, symSize: 0x48 } - - { offsetInCU: 0x101, offset: 0x58B45, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaFloatSettingForKey:defaultValue:]', symObjAddr: 0x9C, symBinAddr: 0x33C4, symSize: 0x50 } - - { offsetInCU: 0x178, offset: 0x58BBC, size: 0x8, addend: 0x0, symName: '-[NSMutableDictionary(CordovaPreferences) setCordovaSetting:forKey:]', symObjAddr: 0xEC, symBinAddr: 0x3414, symSize: 0x64 } - - { offsetInCU: 0x27, offset: 0x58C99, size: 0x8, addend: 0x0, symName: '-[UIView(org_apache_cordova_UIView_Extension) scrollView]', symObjAddr: 0x0, symBinAddr: 0x3478, symSize: 0x58 } - - { offsetInCU: 0x41, offset: 0x58CB3, size: 0x8, addend: 0x0, symName: _CDVPageDidLoadNotification, symObjAddr: 0xF30, symBinAddr: 0x80B8, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x58CD3, size: 0x8, addend: 0x0, symName: _CDVPluginHandleOpenURLNotification, symObjAddr: 0xF38, symBinAddr: 0x80C0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x58CE9, size: 0x8, addend: 0x0, symName: _CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification, symObjAddr: 0xF40, symBinAddr: 0x80C8, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x58CFF, size: 0x8, addend: 0x0, symName: _CDVPluginResetNotification, symObjAddr: 0xF48, symBinAddr: 0x80D0, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x58D15, size: 0x8, addend: 0x0, symName: _CDVLocalNotification, symObjAddr: 0xF50, symBinAddr: 0x80D8, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x58D2B, size: 0x8, addend: 0x0, symName: _CDVRemoteNotification, symObjAddr: 0xF58, symBinAddr: 0x80E0, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x58D41, size: 0x8, addend: 0x0, symName: _CDVRemoteNotificationError, symObjAddr: 0xF60, symBinAddr: 0x80E8, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x58D57, size: 0x8, addend: 0x0, symName: _CDVViewWillAppearNotification, symObjAddr: 0xF68, symBinAddr: 0x80F0, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x58D6D, size: 0x8, addend: 0x0, symName: _CDVViewDidAppearNotification, symObjAddr: 0xF70, symBinAddr: 0x80F8, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x58D83, size: 0x8, addend: 0x0, symName: _CDVViewWillDisappearNotification, symObjAddr: 0xF78, symBinAddr: 0x8100, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x58D99, size: 0x8, addend: 0x0, symName: _CDVViewDidDisappearNotification, symObjAddr: 0xF80, symBinAddr: 0x8108, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x58DAF, size: 0x8, addend: 0x0, symName: _CDVViewWillLayoutSubviewsNotification, symObjAddr: 0xF88, symBinAddr: 0x8110, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x58DC5, size: 0x8, addend: 0x0, symName: _CDVViewDidLayoutSubviewsNotification, symObjAddr: 0xF90, symBinAddr: 0x8118, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x58DDB, size: 0x8, addend: 0x0, symName: _CDVViewWillTransitionToSizeNotification, symObjAddr: 0xF98, symBinAddr: 0x8120, symSize: 0x0 } - - { offsetInCU: 0x290, offset: 0x58F02, size: 0x8, addend: 0x0, symName: '-[UIView(org_apache_cordova_UIView_Extension) scrollView]', symObjAddr: 0x0, symBinAddr: 0x3478, symSize: 0x58 } - - { offsetInCU: 0x2F8, offset: 0x58F6A, size: 0x8, addend: 0x0, symName: '-[CDVPlugin initWithWebViewEngine:]', symObjAddr: 0x58, symBinAddr: 0x34D0, symSize: 0x6C } - - { offsetInCU: 0x33F, offset: 0x58FB1, size: 0x8, addend: 0x0, symName: '-[CDVPlugin pluginInitialize]', symObjAddr: 0xC4, symBinAddr: 0x353C, symSize: 0xD4 } - - { offsetInCU: 0x372, offset: 0x58FE4, size: 0x8, addend: 0x0, symName: '-[CDVPlugin dispose]', symObjAddr: 0x198, symBinAddr: 0x3610, symSize: 0x30 } - - { offsetInCU: 0x3A5, offset: 0x59017, size: 0x8, addend: 0x0, symName: '-[CDVPlugin handleOpenURL:]', symObjAddr: 0x1C8, symBinAddr: 0x3640, symSize: 0x48 } - - { offsetInCU: 0x3F4, offset: 0x59066, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onAppTerminate]', symObjAddr: 0x210, symBinAddr: 0x3688, symSize: 0x4 } - - { offsetInCU: 0x423, offset: 0x59095, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onMemoryWarning]', symObjAddr: 0x214, symBinAddr: 0x368C, symSize: 0x4 } - - { offsetInCU: 0x452, offset: 0x590C4, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onReset]', symObjAddr: 0x218, symBinAddr: 0x3690, symSize: 0x4 } - - { offsetInCU: 0x481, offset: 0x590F3, size: 0x8, addend: 0x0, symName: '-[CDVPlugin dealloc]', symObjAddr: 0x21C, symBinAddr: 0x3694, symSize: 0x68 } - - { offsetInCU: 0x4B4, offset: 0x59126, size: 0x8, addend: 0x0, symName: '-[CDVPlugin appDelegate]', symObjAddr: 0x284, symBinAddr: 0x36FC, symSize: 0x4C } - - { offsetInCU: 0x4E7, offset: 0x59159, size: 0x8, addend: 0x0, symName: '-[CDVPlugin webViewEngine]', symObjAddr: 0x2D0, symBinAddr: 0x3748, symSize: 0x18 } - - { offsetInCU: 0x51E, offset: 0x59190, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setWebViewEngine:]', symObjAddr: 0x2E8, symBinAddr: 0x3760, symSize: 0xC } - - { offsetInCU: 0x55F, offset: 0x591D1, size: 0x8, addend: 0x0, symName: '-[CDVPlugin viewController]', symObjAddr: 0x2F4, symBinAddr: 0x376C, symSize: 0x18 } - - { offsetInCU: 0x596, offset: 0x59208, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setViewController:]', symObjAddr: 0x30C, symBinAddr: 0x3784, symSize: 0xC } - - { offsetInCU: 0x5D7, offset: 0x59249, size: 0x8, addend: 0x0, symName: '-[CDVPlugin commandDelegate]', symObjAddr: 0x318, symBinAddr: 0x3790, symSize: 0x18 } - - { offsetInCU: 0x60E, offset: 0x59280, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setCommandDelegate:]', symObjAddr: 0x330, symBinAddr: 0x37A8, symSize: 0xC } - - { offsetInCU: 0x64F, offset: 0x592C1, size: 0x8, addend: 0x0, symName: '-[CDVPlugin hasPendingOperation]', symObjAddr: 0x33C, symBinAddr: 0x37B4, symSize: 0xC } - - { offsetInCU: 0x686, offset: 0x592F8, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setHasPendingOperation:]', symObjAddr: 0x348, symBinAddr: 0x37C0, symSize: 0x8 } - - { offsetInCU: 0x6C3, offset: 0x59335, size: 0x8, addend: 0x0, symName: '-[CDVPlugin webView]', symObjAddr: 0x350, symBinAddr: 0x37C8, symSize: 0x18 } - - { offsetInCU: 0x6FA, offset: 0x5936C, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setWebView:]', symObjAddr: 0x368, symBinAddr: 0x37E0, symSize: 0xC } - - { offsetInCU: 0x73B, offset: 0x593AD, size: 0x8, addend: 0x0, symName: '-[CDVPlugin className]', symObjAddr: 0x374, symBinAddr: 0x37EC, symSize: 0x8 } - - { offsetInCU: 0x772, offset: 0x593E4, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setClassName:]', symObjAddr: 0x37C, symBinAddr: 0x37F4, symSize: 0xC } - - { offsetInCU: 0x7B3, offset: 0x59425, size: 0x8, addend: 0x0, symName: '-[CDVPlugin .cxx_destruct]', symObjAddr: 0x388, symBinAddr: 0x3800, symSize: 0x44 } - - { offsetInCU: 0x27, offset: 0x5949D, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginLocalizedString:]', symObjAddr: 0x0, symBinAddr: 0x3844, symSize: 0xF0 } - - { offsetInCU: 0x4A, offset: 0x594C0, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginLocalizedString:]', symObjAddr: 0x0, symBinAddr: 0x3844, symSize: 0xF0 } - - { offsetInCU: 0xDA, offset: 0x59550, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginImageResource:]', symObjAddr: 0xF0, symBinAddr: 0x3934, symSize: 0xB0 } - - { offsetInCU: 0x27, offset: 0x59682, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser init]', symObjAddr: 0x0, symBinAddr: 0x39E4, symSize: 0xDC } - - { offsetInCU: 0xD1, offset: 0x5972C, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser init]', symObjAddr: 0x0, symBinAddr: 0x39E4, symSize: 0xDC } - - { offsetInCU: 0x108, offset: 0x59763, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:didStartElement:namespaceURI:qualifiedName:attributes:]', symObjAddr: 0xDC, symBinAddr: 0x3AC0, symSize: 0x2AC } - - { offsetInCU: 0x1C6, offset: 0x59821, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:didEndElement:namespaceURI:qualifiedName:]', symObjAddr: 0x388, symBinAddr: 0x3D6C, symSize: 0x44 } - - { offsetInCU: 0x22D, offset: 0x59888, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:parseErrorOccurred:]', symObjAddr: 0x3CC, symBinAddr: 0x3DB0, symSize: 0x4 } - - { offsetInCU: 0x274, offset: 0x598CF, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser pluginsDict]', symObjAddr: 0x3D0, symBinAddr: 0x3DB4, symSize: 0x8 } - - { offsetInCU: 0x2AB, offset: 0x59906, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setPluginsDict:]', symObjAddr: 0x3D8, symBinAddr: 0x3DBC, symSize: 0xC } - - { offsetInCU: 0x2EC, offset: 0x59947, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser settings]', symObjAddr: 0x3E4, symBinAddr: 0x3DC8, symSize: 0x8 } - - { offsetInCU: 0x323, offset: 0x5997E, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setSettings:]', symObjAddr: 0x3EC, symBinAddr: 0x3DD0, symSize: 0xC } - - { offsetInCU: 0x364, offset: 0x599BF, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser startPage]', symObjAddr: 0x3F8, symBinAddr: 0x3DDC, symSize: 0x8 } - - { offsetInCU: 0x39B, offset: 0x599F6, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setStartPage:]', symObjAddr: 0x400, symBinAddr: 0x3DE4, symSize: 0xC } - - { offsetInCU: 0x3DC, offset: 0x59A37, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser startupPluginNames]', symObjAddr: 0x40C, symBinAddr: 0x3DF0, symSize: 0x8 } - - { offsetInCU: 0x413, offset: 0x59A6E, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setStartupPluginNames:]', symObjAddr: 0x414, symBinAddr: 0x3DF8, symSize: 0xC } - - { offsetInCU: 0x454, offset: 0x59AAF, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser .cxx_destruct]', symObjAddr: 0x420, symBinAddr: 0x3E04, symSize: 0x54 } - - { offsetInCU: 0x27, offset: 0x59B65, size: 0x8, addend: 0x0, symName: '-[CDVViewController pluginObjects]', symObjAddr: 0x0, symBinAddr: 0x3E58, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x59BE3, size: 0x8, addend: 0x0, symName: '-[CDVViewController pluginObjects]', symObjAddr: 0x0, symBinAddr: 0x3E58, symSize: 0x10 } - - { offsetInCU: 0xDC, offset: 0x59C1A, size: 0x8, addend: 0x0, symName: '-[CDVViewController setPluginObjects:]', symObjAddr: 0x10, symBinAddr: 0x3E68, symSize: 0x14 } - - { offsetInCU: 0x11D, offset: 0x59C5B, size: 0x8, addend: 0x0, symName: '-[CDVViewController settings]', symObjAddr: 0x24, symBinAddr: 0x3E7C, symSize: 0x10 } - - { offsetInCU: 0x154, offset: 0x59C92, size: 0x8, addend: 0x0, symName: '-[CDVViewController webView]', symObjAddr: 0x34, symBinAddr: 0x3E8C, symSize: 0x20 } - - { offsetInCU: 0x18B, offset: 0x59CC9, size: 0x8, addend: 0x0, symName: '-[CDVViewController .cxx_destruct]', symObjAddr: 0x54, symBinAddr: 0x3EAC, symSize: 0x50 } - - { offsetInCU: 0x27, offset: 0x59D40, size: 0x8, addend: 0x0, symName: '+[CDVInvokedUrlCommand commandFromJson:]', symObjAddr: 0x0, symBinAddr: 0x3EFC, symSize: 0x4C } - - { offsetInCU: 0xBF, offset: 0x59DD8, size: 0x8, addend: 0x0, symName: '+[CDVInvokedUrlCommand commandFromJson:]', symObjAddr: 0x0, symBinAddr: 0x3EFC, symSize: 0x4C } - - { offsetInCU: 0x102, offset: 0x59E1B, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand initFromJson:]', symObjAddr: 0x4C, symBinAddr: 0x3F48, symSize: 0x11C } - - { offsetInCU: 0x199, offset: 0x59EB2, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand initWithArguments:callbackId:className:methodName:]', symObjAddr: 0x168, symBinAddr: 0x4064, symSize: 0x104 } - - { offsetInCU: 0x210, offset: 0x59F29, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand massageArguments]', symObjAddr: 0x26C, symBinAddr: 0x4168, symSize: 0x1C0 } - - { offsetInCU: 0x2D1, offset: 0x59FEA, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:]', symObjAddr: 0x42C, symBinAddr: 0x4328, symSize: 0x8 } - - { offsetInCU: 0x314, offset: 0x5A02D, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:withDefault:]', symObjAddr: 0x434, symBinAddr: 0x4330, symSize: 0x8 } - - { offsetInCU: 0x365, offset: 0x5A07E, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:withDefault:andClass:]', symObjAddr: 0x43C, symBinAddr: 0x4338, symSize: 0xE4 } - - { offsetInCU: 0x3DC, offset: 0x5A0F5, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand arguments]', symObjAddr: 0x520, symBinAddr: 0x441C, symSize: 0x8 } - - { offsetInCU: 0x413, offset: 0x5A12C, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand callbackId]', symObjAddr: 0x528, symBinAddr: 0x4424, symSize: 0x8 } - - { offsetInCU: 0x44A, offset: 0x5A163, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand className]', symObjAddr: 0x530, symBinAddr: 0x442C, symSize: 0x8 } - - { offsetInCU: 0x481, offset: 0x5A19A, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand methodName]', symObjAddr: 0x538, symBinAddr: 0x4434, symSize: 0x8 } - - { offsetInCU: 0x4B8, offset: 0x5A1D1, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand .cxx_destruct]', symObjAddr: 0x540, symBinAddr: 0x443C, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x5A290, size: 0x8, addend: 0x0, symName: '-[AppDelegate viewController]', symObjAddr: 0x0, symBinAddr: 0x4484, symSize: 0x8 } - - { offsetInCU: 0xB4, offset: 0x5A31D, size: 0x8, addend: 0x0, symName: '-[AppDelegate viewController]', symObjAddr: 0x0, symBinAddr: 0x4484, symSize: 0x8 } - - { offsetInCU: 0xEB, offset: 0x5A354, size: 0x8, addend: 0x0, symName: '-[AppDelegate setViewController:]', symObjAddr: 0x8, symBinAddr: 0x448C, symSize: 0xC } - - { offsetInCU: 0x12C, offset: 0x5A395, size: 0x8, addend: 0x0, symName: '-[AppDelegate .cxx_destruct]', symObjAddr: 0x14, symBinAddr: 0x4498, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x5A40C, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canInitWithRequest:]', symObjAddr: 0x0, symBinAddr: 0x44A4, symSize: 0x8 } - - { offsetInCU: 0x41, offset: 0x5A426, size: 0x8, addend: 0x0, symName: _kCDVAssetsLibraryPrefixes, symObjAddr: 0x2A8, symBinAddr: 0x8128, symSize: 0x0 } - - { offsetInCU: 0x7B, offset: 0x5A460, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canInitWithRequest:]', symObjAddr: 0x0, symBinAddr: 0x44A4, symSize: 0x8 } - - { offsetInCU: 0xBA, offset: 0x5A49F, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canonicalRequestForRequest:]', symObjAddr: 0x8, symBinAddr: 0x44AC, symSize: 0x18 } - - { offsetInCU: 0xFD, offset: 0x5A4E2, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol startLoading]', symObjAddr: 0x20, symBinAddr: 0x44C4, symSize: 0x4 } - - { offsetInCU: 0x12C, offset: 0x5A511, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol stopLoading]', symObjAddr: 0x24, symBinAddr: 0x44C8, symSize: 0x4 } - - { offsetInCU: 0x15B, offset: 0x5A540, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol requestIsCacheEquivalent:toRequest:]', symObjAddr: 0x28, symBinAddr: 0x44CC, symSize: 0x8 } - - { offsetInCU: 0x1A6, offset: 0x5A58B, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol sendResponseWithResponseCode:data:mimeType:]', symObjAddr: 0x30, symBinAddr: 0x44D4, symSize: 0x1C4 } -... diff --git a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/x86_64/Cordova.yml b/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/x86_64/Cordova.yml deleted file mode 100644 index 6db2260ad..000000000 --- a/ios/Frameworks/Cordova.xcframework/ios-arm64_x86_64-simulator/dSYMs/Cordova.framework.dSYM/Contents/Resources/Relocations/x86_64/Cordova.yml +++ /dev/null @@ -1,179 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/mark/Library/Developer/Xcode/DerivedData/Capacitor-cvqxffszbvmpzcdcdtewgtstoqol/Build/Intermediates.noindex/ArchiveIntermediates/Capacitor/InstallationBuildProductsLocation/Library/Frameworks/Cordova.framework/Cordova' -relocations: - - { offsetInCU: 0x34, offset: 0x583EB, size: 0x8, addend: 0x0, symName: _CordovaVersionString, symObjAddr: 0x0, symBinAddr: 0x5BD0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x58420, size: 0x8, addend: 0x0, symName: _CordovaVersionNumber, symObjAddr: 0x38, symBinAddr: 0x5C08, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0x5845D, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager initWithParser:viewController:webView:]', symObjAddr: 0x0, symBinAddr: 0x2948, symSize: 0x1D4 } - - { offsetInCU: 0x12F, offset: 0x58565, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager initWithParser:viewController:webView:]', symObjAddr: 0x0, symBinAddr: 0x2948, symSize: 0x1D4 } - - { offsetInCU: 0x2F1, offset: 0x58727, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager getCommandInstance:]', symObjAddr: 0x1D4, symBinAddr: 0x2B1C, symSize: 0x2B0 } - - { offsetInCU: 0x59C, offset: 0x589D2, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager registerPlugin:withClassName:]', symObjAddr: 0x484, symBinAddr: 0x2DCC, symSize: 0x12E } - - { offsetInCU: 0x72B, offset: 0x58B61, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager onAppDidEnterBackground:]', symObjAddr: 0x5B2, symBinAddr: 0x2EFA, symSize: 0x44 } - - { offsetInCU: 0x796, offset: 0x58BCC, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager onAppWillEnterForeground:]', symObjAddr: 0x5F6, symBinAddr: 0x2F3E, symSize: 0x44 } - - { offsetInCU: 0x801, offset: 0x58C37, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager pluginsMap]', symObjAddr: 0x63A, symBinAddr: 0x2F82, symSize: 0xA } - - { offsetInCU: 0x836, offset: 0x58C6C, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setPluginsMap:]', symObjAddr: 0x644, symBinAddr: 0x2F8C, symSize: 0x11 } - - { offsetInCU: 0x875, offset: 0x58CAB, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager pluginObjects]', symObjAddr: 0x655, symBinAddr: 0x2F9D, symSize: 0xA } - - { offsetInCU: 0x8AA, offset: 0x58CE0, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setPluginObjects:]', symObjAddr: 0x65F, symBinAddr: 0x2FA7, symSize: 0x11 } - - { offsetInCU: 0x8E9, offset: 0x58D1F, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager settings]', symObjAddr: 0x670, symBinAddr: 0x2FB8, symSize: 0xA } - - { offsetInCU: 0x91E, offset: 0x58D54, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setSettings:]', symObjAddr: 0x67A, symBinAddr: 0x2FC2, symSize: 0x11 } - - { offsetInCU: 0x95D, offset: 0x58D93, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager viewController]', symObjAddr: 0x68B, symBinAddr: 0x2FD3, symSize: 0xA } - - { offsetInCU: 0x992, offset: 0x58DC8, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setViewController:]', symObjAddr: 0x695, symBinAddr: 0x2FDD, symSize: 0x11 } - - { offsetInCU: 0x9D1, offset: 0x58E07, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager webView]', symObjAddr: 0x6A6, symBinAddr: 0x2FEE, symSize: 0xA } - - { offsetInCU: 0xA06, offset: 0x58E3C, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setWebView:]', symObjAddr: 0x6B0, symBinAddr: 0x2FF8, symSize: 0x11 } - - { offsetInCU: 0xA45, offset: 0x58E7B, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager commandDelegate]', symObjAddr: 0x6C1, symBinAddr: 0x3009, symSize: 0xA } - - { offsetInCU: 0xA7A, offset: 0x58EB0, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager setCommandDelegate:]', symObjAddr: 0x6CB, symBinAddr: 0x3013, symSize: 0x11 } - - { offsetInCU: 0xAB9, offset: 0x58EEF, size: 0x8, addend: 0x0, symName: '-[CDVPluginManager .cxx_destruct]', symObjAddr: 0x6DC, symBinAddr: 0x3024, symSize: 0x54 } - - { offsetInCU: 0x27, offset: 0x59021, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl initWithWebView:pluginManager:]', symObjAddr: 0x0, symBinAddr: 0x3078, symSize: 0x11A } - - { offsetInCU: 0x1E6, offset: 0x591E0, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl initWithWebView:pluginManager:]', symObjAddr: 0x0, symBinAddr: 0x3078, symSize: 0x11A } - - { offsetInCU: 0x2F1, offset: 0x592EB, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl pathForResource:]', symObjAddr: 0x11A, symBinAddr: 0x3192, symSize: 0x1C1 } - - { offsetInCU: 0x4B7, offset: 0x594B1, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl flushCommandQueueWithDelayedJs]', symObjAddr: 0x2DB, symBinAddr: 0x3353, symSize: 0xA } - - { offsetInCU: 0x4E8, offset: 0x594E2, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJsHelper2:]', symObjAddr: 0x2E5, symBinAddr: 0x335D, symSize: 0x89 } - - { offsetInCU: 0x5F6, offset: 0x595F0, size: 0x8, addend: 0x0, symName: '___40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke', symObjAddr: 0x36E, symBinAddr: 0x33E6, symSize: 0x42 } - - { offsetInCU: 0x665, offset: 0x5965F, size: 0x8, addend: 0x0, symName: '___40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke_2', symObjAddr: 0x3B0, symBinAddr: 0x3428, symSize: 0x5F } - - { offsetInCU: 0x700, offset: 0x596FA, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x40F, symBinAddr: 0x3487, symSize: 0x25 } - - { offsetInCU: 0x741, offset: 0x5973B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x434, symBinAddr: 0x34AC, symSize: 0x25 } - - { offsetInCU: 0x778, offset: 0x59772, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl isValidCallbackId:]', symObjAddr: 0x459, symBinAddr: 0x34D1, symSize: 0xA1 } - - { offsetInCU: 0x836, offset: 0x59830, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl sendPluginResult:callbackId:]', symObjAddr: 0x4FA, symBinAddr: 0x3572, symSize: 0x184 } - - { offsetInCU: 0x9F3, offset: 0x599ED, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJs:]', symObjAddr: 0x67E, symBinAddr: 0x36F6, symSize: 0x17 } - - { offsetInCU: 0xA55, offset: 0x59A4F, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl evalJs:scheduledOnRunLoop:]', symObjAddr: 0x695, symBinAddr: 0x370D, symSize: 0x5F } - - { offsetInCU: 0xAD8, offset: 0x59AD2, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl getCommandInstance:]', symObjAddr: 0x6F4, symBinAddr: 0x376C, symSize: 0x6A } - - { offsetInCU: 0xB68, offset: 0x59B62, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl runInBackground:]', symObjAddr: 0x75E, symBinAddr: 0x37D6, symSize: 0x36 } - - { offsetInCU: 0xBFE, offset: 0x59BF8, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl settings]', symObjAddr: 0x794, symBinAddr: 0x380C, symSize: 0x43 } - - { offsetInCU: 0xC55, offset: 0x59C4F, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl urlTransformer]', symObjAddr: 0x7D7, symBinAddr: 0x384F, symSize: 0xA } - - { offsetInCU: 0xC8A, offset: 0x59C84, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl setUrlTransformer:]', symObjAddr: 0x7E1, symBinAddr: 0x3859, symSize: 0xF } - - { offsetInCU: 0xCC9, offset: 0x59CC3, size: 0x8, addend: 0x0, symName: '-[CDVCommandDelegateImpl .cxx_destruct]', symObjAddr: 0x7F0, symBinAddr: 0x3868, symSize: 0x43 } - - { offsetInCU: 0x27, offset: 0x59ED4, size: 0x8, addend: 0x0, symName: _messageFromArrayBuffer, symObjAddr: 0x0, symBinAddr: 0x38AB, symSize: 0xC0 } - - { offsetInCU: 0x41, offset: 0x59EEE, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_NO_RESULT, symObjAddr: 0xC10, symBinAddr: 0x5C10, symSize: 0x0 } - - { offsetInCU: 0xB7, offset: 0x59F64, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_OK, symObjAddr: 0xC18, symBinAddr: 0x5C18, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x59F7A, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_CLASS_NOT_FOUND_EXCEPTION, symObjAddr: 0xC20, symBinAddr: 0x5C20, symSize: 0x0 } - - { offsetInCU: 0xE3, offset: 0x59F90, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_ILLEGAL_ACCESS_EXCEPTION, symObjAddr: 0xC28, symBinAddr: 0x5C28, symSize: 0x0 } - - { offsetInCU: 0xF9, offset: 0x59FA6, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_INSTANTIATION_EXCEPTION, symObjAddr: 0xC30, symBinAddr: 0x5C30, symSize: 0x0 } - - { offsetInCU: 0x10F, offset: 0x59FBC, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_MALFORMED_URL_EXCEPTION, symObjAddr: 0xC38, symBinAddr: 0x5C38, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x59FD2, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_IO_EXCEPTION, symObjAddr: 0xC40, symBinAddr: 0x5C40, symSize: 0x0 } - - { offsetInCU: 0x13B, offset: 0x59FE8, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_INVALID_ACTION, symObjAddr: 0xC48, symBinAddr: 0x5C48, symSize: 0x0 } - - { offsetInCU: 0x151, offset: 0x59FFE, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_JSON_EXCEPTION, symObjAddr: 0xC50, symBinAddr: 0x5C50, symSize: 0x0 } - - { offsetInCU: 0x167, offset: 0x5A014, size: 0x8, addend: 0x0, symName: _SWIFT_CDVCommandStatus_ERROR, symObjAddr: 0xC58, symBinAddr: 0x5C58, symSize: 0x0 } - - { offsetInCU: 0x17D, offset: 0x5A02A, size: 0x8, addend: 0x0, symName: _org_apache_cordova_CommandStatusMsgs, symObjAddr: 0x6280, symBinAddr: 0xEA78, symSize: 0x0 } - - { offsetInCU: 0x198, offset: 0x5A045, size: 0x8, addend: 0x0, symName: _gIsVerbose, symObjAddr: 0x6288, symBinAddr: 0xEA80, symSize: 0x0 } - - { offsetInCU: 0x257, offset: 0x5A104, size: 0x8, addend: 0x0, symName: _messageFromArrayBuffer, symObjAddr: 0x0, symBinAddr: 0x38AB, symSize: 0xC0 } - - { offsetInCU: 0x2AE, offset: 0x5A15B, size: 0x8, addend: 0x0, symName: _massageMessage, symObjAddr: 0xC0, symBinAddr: 0x396B, symSize: 0x5B } - - { offsetInCU: 0x31C, offset: 0x5A1C9, size: 0x8, addend: 0x0, symName: _messageFromMultipart, symObjAddr: 0x11B, symBinAddr: 0x39C6, symSize: 0x161 } - - { offsetInCU: 0x42C, offset: 0x5A2D9, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult initialize]', symObjAddr: 0x27C, symBinAddr: 0x3B27, symSize: 0xA0 } - - { offsetInCU: 0x473, offset: 0x5A320, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult init]', symObjAddr: 0x31C, symBinAddr: 0x3BC7, symSize: 0x16 } - - { offsetInCU: 0x4C8, offset: 0x5A375, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult initWithStatus:message:]', symObjAddr: 0x332, symBinAddr: 0x3BDD, symSize: 0xD1 } - - { offsetInCU: 0x578, offset: 0x5A425, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:]', symObjAddr: 0x403, symBinAddr: 0x3CAE, symSize: 0x31 } - - { offsetInCU: 0x5D9, offset: 0x5A486, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsString:]', symObjAddr: 0x434, symBinAddr: 0x3CDF, symSize: 0x58 } - - { offsetInCU: 0x674, offset: 0x5A521, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsArray:]', symObjAddr: 0x48C, symBinAddr: 0x3D37, symSize: 0x58 } - - { offsetInCU: 0x70F, offset: 0x5A5BC, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsInt:]', symObjAddr: 0x4E4, symBinAddr: 0x3D8F, symSize: 0x6C } - - { offsetInCU: 0x7A1, offset: 0x5A64E, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsNSInteger:]', symObjAddr: 0x550, symBinAddr: 0x3DFB, symSize: 0x6E } - - { offsetInCU: 0x833, offset: 0x5A6E0, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsNSUInteger:]', symObjAddr: 0x5BE, symBinAddr: 0x3E69, symSize: 0x6E } - - { offsetInCU: 0x8C5, offset: 0x5A772, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsDouble:]', symObjAddr: 0x62C, symBinAddr: 0x3ED7, symSize: 0x7A } - - { offsetInCU: 0x957, offset: 0x5A804, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsBool:]', symObjAddr: 0x6A6, symBinAddr: 0x3F51, symSize: 0x6C } - - { offsetInCU: 0x9E9, offset: 0x5A896, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsDictionary:]', symObjAddr: 0x712, symBinAddr: 0x3FBD, symSize: 0x58 } - - { offsetInCU: 0xA84, offset: 0x5A931, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsArrayBuffer:]', symObjAddr: 0x76A, symBinAddr: 0x4015, symSize: 0x80 } - - { offsetInCU: 0xB48, offset: 0x5A9F5, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageAsMultipart:]', symObjAddr: 0x7EA, symBinAddr: 0x4095, symSize: 0x80 } - - { offsetInCU: 0xC0C, offset: 0x5AAB9, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult resultWithStatus:messageToErrorObject:]', symObjAddr: 0x86A, symBinAddr: 0x4115, symSize: 0xDF } - - { offsetInCU: 0xCCD, offset: 0x5AB7A, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setKeepCallbackAsBool:]', symObjAddr: 0x949, symBinAddr: 0x41F4, symSize: 0x53 } - - { offsetInCU: 0xD44, offset: 0x5ABF1, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult argumentsAsJSON]', symObjAddr: 0x99C, symBinAddr: 0x4247, symSize: 0xFC } - - { offsetInCU: 0xE37, offset: 0x5ACE4, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult setVerbose:]', symObjAddr: 0xA98, symBinAddr: 0x4343, symSize: 0xC } - - { offsetInCU: 0xE74, offset: 0x5AD21, size: 0x8, addend: 0x0, symName: '+[CDVPluginResult isVerbose]', symObjAddr: 0xAA4, symBinAddr: 0x434F, symSize: 0xC } - - { offsetInCU: 0xEA7, offset: 0x5AD54, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult JSONStringFromArray:]', symObjAddr: 0xAB0, symBinAddr: 0x435B, symSize: 0xD7 } - - { offsetInCU: 0xF80, offset: 0x5AE2D, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult status]', symObjAddr: 0xB87, symBinAddr: 0x4432, symSize: 0xA } - - { offsetInCU: 0xFB5, offset: 0x5AE62, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult message]', symObjAddr: 0xB91, symBinAddr: 0x443C, symSize: 0xA } - - { offsetInCU: 0xFEA, offset: 0x5AE97, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult keepCallback]', symObjAddr: 0xB9B, symBinAddr: 0x4446, symSize: 0xA } - - { offsetInCU: 0x101F, offset: 0x5AECC, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setKeepCallback:]', symObjAddr: 0xBA5, symBinAddr: 0x4450, symSize: 0x11 } - - { offsetInCU: 0x105E, offset: 0x5AF0B, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult associatedObject]', symObjAddr: 0xBB6, symBinAddr: 0x4461, symSize: 0xA } - - { offsetInCU: 0x1093, offset: 0x5AF40, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult setAssociatedObject:]', symObjAddr: 0xBC0, symBinAddr: 0x446B, symSize: 0x11 } - - { offsetInCU: 0x10D2, offset: 0x5AF7F, size: 0x8, addend: 0x0, symName: '-[CDVPluginResult .cxx_destruct]', symObjAddr: 0xBD1, symBinAddr: 0x447C, symSize: 0x3E } - - { offsetInCU: 0x27, offset: 0x5B032, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaSettingForKey:]', symObjAddr: 0x0, symBinAddr: 0x44BA, symSize: 0x62 } - - { offsetInCU: 0x43, offset: 0x5B04E, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaSettingForKey:]', symObjAddr: 0x0, symBinAddr: 0x44BA, symSize: 0x62 } - - { offsetInCU: 0xB6, offset: 0x5B0C1, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaBoolSettingForKey:defaultValue:]', symObjAddr: 0x62, symBinAddr: 0x451C, symSize: 0x48 } - - { offsetInCU: 0x15D, offset: 0x5B168, size: 0x8, addend: 0x0, symName: '-[NSDictionary(CordovaPreferences) cordovaFloatSettingForKey:defaultValue:]', symObjAddr: 0xAA, symBinAddr: 0x4564, symSize: 0x56 } - - { offsetInCU: 0x204, offset: 0x5B20F, size: 0x8, addend: 0x0, symName: '-[NSMutableDictionary(CordovaPreferences) setCordovaSetting:forKey:]', symObjAddr: 0x100, symBinAddr: 0x45BA, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x5B350, size: 0x8, addend: 0x0, symName: '-[UIView(org_apache_cordova_UIView_Extension) scrollView]', symObjAddr: 0x0, symBinAddr: 0x4632, symSize: 0x4B } - - { offsetInCU: 0x41, offset: 0x5B36A, size: 0x8, addend: 0x0, symName: _CDVPageDidLoadNotification, symObjAddr: 0xFC0, symBinAddr: 0x80C8, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x5B38A, size: 0x8, addend: 0x0, symName: _CDVPluginHandleOpenURLNotification, symObjAddr: 0xFC8, symBinAddr: 0x80D0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x5B3A0, size: 0x8, addend: 0x0, symName: _CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification, symObjAddr: 0xFD0, symBinAddr: 0x80D8, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x5B3B6, size: 0x8, addend: 0x0, symName: _CDVPluginResetNotification, symObjAddr: 0xFD8, symBinAddr: 0x80E0, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x5B3CC, size: 0x8, addend: 0x0, symName: _CDVLocalNotification, symObjAddr: 0xFE0, symBinAddr: 0x80E8, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x5B3E2, size: 0x8, addend: 0x0, symName: _CDVRemoteNotification, symObjAddr: 0xFE8, symBinAddr: 0x80F0, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x5B3F8, size: 0x8, addend: 0x0, symName: _CDVRemoteNotificationError, symObjAddr: 0xFF0, symBinAddr: 0x80F8, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x5B40E, size: 0x8, addend: 0x0, symName: _CDVViewWillAppearNotification, symObjAddr: 0xFF8, symBinAddr: 0x8100, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x5B424, size: 0x8, addend: 0x0, symName: _CDVViewDidAppearNotification, symObjAddr: 0x1000, symBinAddr: 0x8108, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x5B43A, size: 0x8, addend: 0x0, symName: _CDVViewWillDisappearNotification, symObjAddr: 0x1008, symBinAddr: 0x8110, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x5B450, size: 0x8, addend: 0x0, symName: _CDVViewDidDisappearNotification, symObjAddr: 0x1010, symBinAddr: 0x8118, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x5B466, size: 0x8, addend: 0x0, symName: _CDVViewWillLayoutSubviewsNotification, symObjAddr: 0x1018, symBinAddr: 0x8120, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x5B47C, size: 0x8, addend: 0x0, symName: _CDVViewDidLayoutSubviewsNotification, symObjAddr: 0x1020, symBinAddr: 0x8128, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x5B492, size: 0x8, addend: 0x0, symName: _CDVViewWillTransitionToSizeNotification, symObjAddr: 0x1028, symBinAddr: 0x8130, symSize: 0x0 } - - { offsetInCU: 0x290, offset: 0x5B5B9, size: 0x8, addend: 0x0, symName: '-[UIView(org_apache_cordova_UIView_Extension) scrollView]', symObjAddr: 0x0, symBinAddr: 0x4632, symSize: 0x4B } - - { offsetInCU: 0x2F8, offset: 0x5B621, size: 0x8, addend: 0x0, symName: '-[CDVPlugin initWithWebViewEngine:]', symObjAddr: 0x4B, symBinAddr: 0x467D, symSize: 0x67 } - - { offsetInCU: 0x368, offset: 0x5B691, size: 0x8, addend: 0x0, symName: '-[CDVPlugin pluginInitialize]', symObjAddr: 0xB2, symBinAddr: 0x46E4, symSize: 0xF9 } - - { offsetInCU: 0x3D7, offset: 0x5B700, size: 0x8, addend: 0x0, symName: '-[CDVPlugin dispose]', symObjAddr: 0x1AB, symBinAddr: 0x47DD, symSize: 0x28 } - - { offsetInCU: 0x40A, offset: 0x5B733, size: 0x8, addend: 0x0, symName: '-[CDVPlugin handleOpenURL:]', symObjAddr: 0x1D3, symBinAddr: 0x4805, symSize: 0x46 } - - { offsetInCU: 0x469, offset: 0x5B792, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onAppTerminate]', symObjAddr: 0x219, symBinAddr: 0x484B, symSize: 0x6 } - - { offsetInCU: 0x498, offset: 0x5B7C1, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onMemoryWarning]', symObjAddr: 0x21F, symBinAddr: 0x4851, symSize: 0x6 } - - { offsetInCU: 0x4C7, offset: 0x5B7F0, size: 0x8, addend: 0x0, symName: '-[CDVPlugin onReset]', symObjAddr: 0x225, symBinAddr: 0x4857, symSize: 0x6 } - - { offsetInCU: 0x4F6, offset: 0x5B81F, size: 0x8, addend: 0x0, symName: '-[CDVPlugin dealloc]', symObjAddr: 0x22B, symBinAddr: 0x485D, symSize: 0x6E } - - { offsetInCU: 0x53D, offset: 0x5B866, size: 0x8, addend: 0x0, symName: '-[CDVPlugin appDelegate]', symObjAddr: 0x299, symBinAddr: 0x48CB, symSize: 0x54 } - - { offsetInCU: 0x584, offset: 0x5B8AD, size: 0x8, addend: 0x0, symName: '-[CDVPlugin webViewEngine]', symObjAddr: 0x2ED, symBinAddr: 0x491F, symSize: 0x16 } - - { offsetInCU: 0x5BB, offset: 0x5B8E4, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setWebViewEngine:]', symObjAddr: 0x303, symBinAddr: 0x4935, symSize: 0x11 } - - { offsetInCU: 0x5FA, offset: 0x5B923, size: 0x8, addend: 0x0, symName: '-[CDVPlugin viewController]', symObjAddr: 0x314, symBinAddr: 0x4946, symSize: 0x16 } - - { offsetInCU: 0x631, offset: 0x5B95A, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setViewController:]', symObjAddr: 0x32A, symBinAddr: 0x495C, symSize: 0x11 } - - { offsetInCU: 0x670, offset: 0x5B999, size: 0x8, addend: 0x0, symName: '-[CDVPlugin commandDelegate]', symObjAddr: 0x33B, symBinAddr: 0x496D, symSize: 0x16 } - - { offsetInCU: 0x6A7, offset: 0x5B9D0, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setCommandDelegate:]', symObjAddr: 0x351, symBinAddr: 0x4983, symSize: 0x11 } - - { offsetInCU: 0x6E6, offset: 0x5BA0F, size: 0x8, addend: 0x0, symName: '-[CDVPlugin hasPendingOperation]', symObjAddr: 0x362, symBinAddr: 0x4994, symSize: 0xB } - - { offsetInCU: 0x71B, offset: 0x5BA44, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setHasPendingOperation:]', symObjAddr: 0x36D, symBinAddr: 0x499F, symSize: 0x9 } - - { offsetInCU: 0x758, offset: 0x5BA81, size: 0x8, addend: 0x0, symName: '-[CDVPlugin webView]', symObjAddr: 0x376, symBinAddr: 0x49A8, symSize: 0x16 } - - { offsetInCU: 0x78F, offset: 0x5BAB8, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setWebView:]', symObjAddr: 0x38C, symBinAddr: 0x49BE, symSize: 0x11 } - - { offsetInCU: 0x7CE, offset: 0x5BAF7, size: 0x8, addend: 0x0, symName: '-[CDVPlugin className]', symObjAddr: 0x39D, symBinAddr: 0x49CF, symSize: 0xA } - - { offsetInCU: 0x803, offset: 0x5BB2C, size: 0x8, addend: 0x0, symName: '-[CDVPlugin setClassName:]', symObjAddr: 0x3A7, symBinAddr: 0x49D9, symSize: 0x11 } - - { offsetInCU: 0x842, offset: 0x5BB6B, size: 0x8, addend: 0x0, symName: '-[CDVPlugin .cxx_destruct]', symObjAddr: 0x3B8, symBinAddr: 0x49EA, symSize: 0x41 } - - { offsetInCU: 0x27, offset: 0x5BBE3, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginLocalizedString:]', symObjAddr: 0x0, symBinAddr: 0x4A2B, symSize: 0xFC } - - { offsetInCU: 0x4A, offset: 0x5BC06, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginLocalizedString:]', symObjAddr: 0x0, symBinAddr: 0x4A2B, symSize: 0xFC } - - { offsetInCU: 0x17F, offset: 0x5BD3B, size: 0x8, addend: 0x0, symName: '-[CDVPlugin(CDVPluginResources) pluginImageResource:]', symObjAddr: 0xFC, symBinAddr: 0x4B27, symSize: 0xBB } - - { offsetInCU: 0x27, offset: 0x5BED2, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser init]', symObjAddr: 0x0, symBinAddr: 0x4BE2, symSize: 0x10D } - - { offsetInCU: 0xD1, offset: 0x5BF7C, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser init]', symObjAddr: 0x0, symBinAddr: 0x4BE2, symSize: 0x10D } - - { offsetInCU: 0x1DA, offset: 0x5C085, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:didStartElement:namespaceURI:qualifiedName:attributes:]', symObjAddr: 0x10D, symBinAddr: 0x4CEF, symSize: 0x371 } - - { offsetInCU: 0x547, offset: 0x5C3F2, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:didEndElement:namespaceURI:qualifiedName:]', symObjAddr: 0x47E, symBinAddr: 0x5060, symSize: 0x43 } - - { offsetInCU: 0x5CF, offset: 0x5C47A, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser parser:parseErrorOccurred:]', symObjAddr: 0x4C1, symBinAddr: 0x50A3, symSize: 0x6 } - - { offsetInCU: 0x616, offset: 0x5C4C1, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser pluginsDict]', symObjAddr: 0x4C7, symBinAddr: 0x50A9, symSize: 0xA } - - { offsetInCU: 0x64B, offset: 0x5C4F6, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setPluginsDict:]', symObjAddr: 0x4D1, symBinAddr: 0x50B3, symSize: 0x11 } - - { offsetInCU: 0x68A, offset: 0x5C535, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser settings]', symObjAddr: 0x4E2, symBinAddr: 0x50C4, symSize: 0xA } - - { offsetInCU: 0x6BF, offset: 0x5C56A, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setSettings:]', symObjAddr: 0x4EC, symBinAddr: 0x50CE, symSize: 0x11 } - - { offsetInCU: 0x6FE, offset: 0x5C5A9, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser startPage]', symObjAddr: 0x4FD, symBinAddr: 0x50DF, symSize: 0xA } - - { offsetInCU: 0x733, offset: 0x5C5DE, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setStartPage:]', symObjAddr: 0x507, symBinAddr: 0x50E9, symSize: 0x11 } - - { offsetInCU: 0x772, offset: 0x5C61D, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser startupPluginNames]', symObjAddr: 0x518, symBinAddr: 0x50FA, symSize: 0xA } - - { offsetInCU: 0x7A7, offset: 0x5C652, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser setStartupPluginNames:]', symObjAddr: 0x522, symBinAddr: 0x5104, symSize: 0x11 } - - { offsetInCU: 0x7E6, offset: 0x5C691, size: 0x8, addend: 0x0, symName: '-[CDVConfigParser .cxx_destruct]', symObjAddr: 0x533, symBinAddr: 0x5115, symSize: 0x49 } - - { offsetInCU: 0x27, offset: 0x5C747, size: 0x8, addend: 0x0, symName: '-[CDVViewController pluginObjects]', symObjAddr: 0x0, symBinAddr: 0x515E, symSize: 0x11 } - - { offsetInCU: 0xA5, offset: 0x5C7C5, size: 0x8, addend: 0x0, symName: '-[CDVViewController pluginObjects]', symObjAddr: 0x0, symBinAddr: 0x515E, symSize: 0x11 } - - { offsetInCU: 0xDA, offset: 0x5C7FA, size: 0x8, addend: 0x0, symName: '-[CDVViewController setPluginObjects:]', symObjAddr: 0x11, symBinAddr: 0x516F, symSize: 0x14 } - - { offsetInCU: 0x119, offset: 0x5C839, size: 0x8, addend: 0x0, symName: '-[CDVViewController settings]', symObjAddr: 0x25, symBinAddr: 0x5183, symSize: 0x11 } - - { offsetInCU: 0x14E, offset: 0x5C86E, size: 0x8, addend: 0x0, symName: '-[CDVViewController webView]', symObjAddr: 0x36, symBinAddr: 0x5194, symSize: 0x19 } - - { offsetInCU: 0x185, offset: 0x5C8A5, size: 0x8, addend: 0x0, symName: '-[CDVViewController .cxx_destruct]', symObjAddr: 0x4F, symBinAddr: 0x51AD, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x5C91C, size: 0x8, addend: 0x0, symName: '+[CDVInvokedUrlCommand commandFromJson:]', symObjAddr: 0x0, symBinAddr: 0x51ED, symSize: 0x4D } - - { offsetInCU: 0xBF, offset: 0x5C9B4, size: 0x8, addend: 0x0, symName: '+[CDVInvokedUrlCommand commandFromJson:]', symObjAddr: 0x0, symBinAddr: 0x51ED, symSize: 0x4D } - - { offsetInCU: 0x13F, offset: 0x5CA34, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand initFromJson:]', symObjAddr: 0x4D, symBinAddr: 0x523A, symSize: 0x140 } - - { offsetInCU: 0x2EB, offset: 0x5CBE0, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand initWithArguments:callbackId:className:methodName:]', symObjAddr: 0x18D, symBinAddr: 0x537A, symSize: 0xFC } - - { offsetInCU: 0x420, offset: 0x5CD15, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand massageArguments]', symObjAddr: 0x289, symBinAddr: 0x5476, symSize: 0x21B } - - { offsetInCU: 0x5D4, offset: 0x5CEC9, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:]', symObjAddr: 0x4A4, symBinAddr: 0x5691, symSize: 0x14 } - - { offsetInCU: 0x63A, offset: 0x5CF2F, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:withDefault:]', symObjAddr: 0x4B8, symBinAddr: 0x56A5, symSize: 0x15 } - - { offsetInCU: 0x6B6, offset: 0x5CFAB, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand argumentAtIndex:withDefault:andClass:]', symObjAddr: 0x4CD, symBinAddr: 0x56BA, symSize: 0xF4 } - - { offsetInCU: 0x7EA, offset: 0x5D0DF, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand arguments]', symObjAddr: 0x5C1, symBinAddr: 0x57AE, symSize: 0xA } - - { offsetInCU: 0x81F, offset: 0x5D114, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand callbackId]', symObjAddr: 0x5CB, symBinAddr: 0x57B8, symSize: 0xA } - - { offsetInCU: 0x854, offset: 0x5D149, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand className]', symObjAddr: 0x5D5, symBinAddr: 0x57C2, symSize: 0xA } - - { offsetInCU: 0x889, offset: 0x5D17E, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand methodName]', symObjAddr: 0x5DF, symBinAddr: 0x57CC, symSize: 0xA } - - { offsetInCU: 0x8BE, offset: 0x5D1B3, size: 0x8, addend: 0x0, symName: '-[CDVInvokedUrlCommand .cxx_destruct]', symObjAddr: 0x5E9, symBinAddr: 0x57D6, symSize: 0x3E } - - { offsetInCU: 0x27, offset: 0x5D272, size: 0x8, addend: 0x0, symName: '-[AppDelegate viewController]', symObjAddr: 0x0, symBinAddr: 0x5814, symSize: 0xA } - - { offsetInCU: 0xB4, offset: 0x5D2FF, size: 0x8, addend: 0x0, symName: '-[AppDelegate viewController]', symObjAddr: 0x0, symBinAddr: 0x5814, symSize: 0xA } - - { offsetInCU: 0xE9, offset: 0x5D334, size: 0x8, addend: 0x0, symName: '-[AppDelegate setViewController:]', symObjAddr: 0xA, symBinAddr: 0x581E, symSize: 0x11 } - - { offsetInCU: 0x128, offset: 0x5D373, size: 0x8, addend: 0x0, symName: '-[AppDelegate .cxx_destruct]', symObjAddr: 0x1B, symBinAddr: 0x582F, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x5D3EA, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canInitWithRequest:]', symObjAddr: 0x0, symBinAddr: 0x583F, symSize: 0x8 } - - { offsetInCU: 0x41, offset: 0x5D404, size: 0x8, addend: 0x0, symName: _kCDVAssetsLibraryPrefixes, symObjAddr: 0x2E8, symBinAddr: 0x8138, symSize: 0x0 } - - { offsetInCU: 0x7B, offset: 0x5D43E, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canInitWithRequest:]', symObjAddr: 0x0, symBinAddr: 0x583F, symSize: 0x8 } - - { offsetInCU: 0xBA, offset: 0x5D47D, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol canonicalRequestForRequest:]', symObjAddr: 0x8, symBinAddr: 0x5847, symSize: 0x16 } - - { offsetInCU: 0x112, offset: 0x5D4D5, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol startLoading]', symObjAddr: 0x1E, symBinAddr: 0x585D, symSize: 0x6 } - - { offsetInCU: 0x141, offset: 0x5D504, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol stopLoading]', symObjAddr: 0x24, symBinAddr: 0x5863, symSize: 0x6 } - - { offsetInCU: 0x170, offset: 0x5D533, size: 0x8, addend: 0x0, symName: '+[CDVURLProtocol requestIsCacheEquivalent:toRequest:]', symObjAddr: 0x2A, symBinAddr: 0x5869, symSize: 0x8 } - - { offsetInCU: 0x1BB, offset: 0x5D57E, size: 0x8, addend: 0x0, symName: '-[CDVURLProtocol sendResponseWithResponseCode:data:mimeType:]', symObjAddr: 0x32, symBinAddr: 0x5871, symSize: 0x1FF } -... diff --git a/ios/Package.swift b/ios/Package.swift deleted file mode 100644 index d19878a69..000000000 --- a/ios/Package.swift +++ /dev/null @@ -1,29 +0,0 @@ -// swift-tools-version:5.9 -import PackageDescription - -let package = Package( - name: "Capacitor", - platforms: [ - .iOS(.v17) - ], - products: [ - .library( - name: "Capacitor", - targets: ["Capacitor"] - ), - .library( - name: "Cordova", - targets: ["Cordova"] - ) - ], - targets: [ - .binaryTarget( - name: "Capacitor", - path: "./Frameworks/Capacitor.xcframework" - ), - .binaryTarget( - name: "Cordova", - path: "./Frameworks/Cordova.xcframework" - ) - ] -) diff --git a/ios/package.json b/ios/package.json index 7ff8cbb26..36fe1b418 100644 --- a/ios/package.json +++ b/ios/package.json @@ -17,8 +17,7 @@ "CapacitorCordova/CapacitorCordova/", "Capacitor.podspec", "CapacitorCordova.podspec", - "scripts/pods_helpers.rb", - "Frameworks" + "scripts/pods_helpers.rb" ], "scripts": { "verify": "npm run xc:build:Capacitor && npm run xc:build:CapacitorCordova",