diff --git a/README.md b/README.md index 9e05138..2829b86 100644 --- a/README.md +++ b/README.md @@ -373,7 +373,7 @@ isPlaying(options: { assetId: string; }) => Promise<{ isPlaying: boolean; }> ### addListener('complete', ...) ```typescript -addListener(eventName: 'complete', listenerFunc: (event: { assetId: string; }) => void) => Promise & PluginListenerHandle +addListener(eventName: 'complete', listenerFunc: (event: { assetId: string; }) => void) => Promise ``` Listen for asset completed playing event @@ -383,7 +383,7 @@ Listen for asset completed playing event | **`eventName`** | 'complete' | | **`listenerFunc`** | (event: { assetId: string; }) => void | -**Returns:** Promise<PluginListenerHandle> & PluginListenerHandle +**Returns:** Promise<PluginListenerHandle> **Since:** 5.0.1 diff --git a/android/build.gradle b/android/build.gradle index cce34fb..09e3395 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -11,7 +11,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.0.0' + classpath 'com.android.tools.build:gradle:8.2.1' } } @@ -19,10 +19,10 @@ apply plugin: 'com.android.library' android { namespace "com.getcapacitor.community.audio.nativeaudio" - compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33 + compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34 defaultConfig { minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22 - targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33 + targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar index ccebba7..033e24c 100644 Binary files a/android/gradle/wrapper/gradle-wrapper.jar and b/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index 761b8f0..c747538 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/android/gradlew b/android/gradlew index 79a61d4..fcb6fca 100755 --- a/android/gradlew +++ b/android/gradlew @@ -85,9 +85,6 @@ done APP_BASE_NAME=${0##*/} APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,10 +130,13 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. @@ -197,6 +197,10 @@ if "$cygwin" || "$msys" ; then done fi + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + # Collect all arguments for the java command; # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # shell script including quotes and variable substitutions, so put them in diff --git a/android/src/main/java/com/getcapacitor/community/audio/NativeAudio.java b/android/src/main/java/com/getcapacitor/community/audio/NativeAudio.java index 2bb05c5..082f289 100644 --- a/android/src/main/java/com/getcapacitor/community/audio/NativeAudio.java +++ b/android/src/main/java/com/getcapacitor/community/audio/NativeAudio.java @@ -55,7 +55,7 @@ public void load() { this.audioManager = (AudioManager) getBridge().getActivity().getSystemService(Context.AUDIO_SERVICE); if (this.audioManager != null) { - this.audioManager.requestAudioFocus(this, AudioManager.STREAM_MUSIC, AudioManager.AUDIOFOCUS_GAIN); + this.audioManager.abandonAudioFocus(this); } } diff --git a/ios/Podfile.lock b/ios/Podfile.lock index aa6ad97..72ff7b3 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,7 +1,7 @@ PODS: - - Capacitor (3.0.1): + - Capacitor (6.0.0): - CapacitorCordova - - CapacitorCordova (3.0.1) + - CapacitorCordova (6.0.0) DEPENDENCIES: - "Capacitor (from `../node_modules/@capacitor/ios`)" @@ -14,9 +14,9 @@ EXTERNAL SOURCES: :path: "../node_modules/@capacitor/ios" SPEC CHECKSUMS: - Capacitor: 92088387144015b95e369bd7840e8ef28b8fe9f3 - CapacitorCordova: 624ae0d33d61b554eda6823da8ea6c3e5170f646 + Capacitor: 559d073c4ca6c27f8e7002c807eea94c3ba435a9 + CapacitorCordova: 8c4bfdf69368512e85b1d8b724dd7546abeb30af -PODFILE CHECKSUM: 8ec984072433225e8e67153cc4d9396806f4cef4 +PODFILE CHECKSUM: 1033dea949db4aa66cc0404a8baadac4a30dd025 -COCOAPODS: 1.10.1 +COCOAPODS: 1.14.3 diff --git a/ios/Pods/Local Podspecs/Capacitor.podspec.json b/ios/Pods/Local Podspecs/Capacitor.podspec.json index f446ed5..56f6822 100644 --- a/ios/Pods/Local Podspecs/Capacitor.podspec.json +++ b/ios/Pods/Local Podspecs/Capacitor.podspec.json @@ -1,34 +1,31 @@ { "name": "Capacitor", - "version": "3.0.1", + "version": "6.0.0", "summary": "Capacitor for iOS", "social_media_url": "https://twitter.com/capacitorjs", "license": "MIT", "homepage": "https://capacitorjs.com/", "platforms": { - "ios": "12.0" + "ios": "13.0" }, "authors": { "Ionic Team": "hi@ionicframework.com" }, "source": { "git": "https://github.com/ionic-team/capacitor.git", - "tag": "3.0.1" + "tag": "6.0.0" }, - "source_files": [ - "Capacitor/Capacitor/*.{swift,h,m}", - "Capacitor/Capacitor/Plugins/*.{swift,h,m}", - "Capacitor/Capacitor/Plugins/**/*.{swift,h,m}" - ], + "source_files": "Capacitor/Capacitor/**/*.{swift,h,m}", "module_map": "Capacitor/Capacitor/Capacitor.modulemap", "resources": [ - "Capacitor/Capacitor/assets/native-bridge.js" + "Capacitor/Capacitor/assets/native-bridge.js", + "Capacitor/Capacitor/PrivacyInfo.xcprivacy" ], "dependencies": { "CapacitorCordova": [ ] }, - "swift_versions": "5.0", - "swift_version": "5.0" + "swift_versions": "5.1", + "swift_version": "5.1" } diff --git a/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json b/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json index a9822f9..2790d91 100644 --- a/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +++ b/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json @@ -1,7 +1,7 @@ { "name": "CapacitorCordova", "module_name": "Cordova", - "version": "3.0.1", + "version": "6.0.0", "summary": "Capacitor Cordova Compatibility Layer", "homepage": "https://capacitorjs.com", "license": "MIT", @@ -10,17 +10,20 @@ }, "source": { "git": "https://github.com/ionic-team/capacitor", - "tag": "3.0.1" + "tag": "6.0.0" }, "platforms": { - "ios": "12.0" + "ios": "13.0" }, - "source_files": "CapacitorCordova/**/*.{h,m}", + "source_files": "CapacitorCordova/CapacitorCordova/**/*.{h,m}", "public_header_files": [ "CapacitorCordova/CapacitorCordova/Classes/Public/*.h", "CapacitorCordova/CapacitorCordova/CapacitorCordova.h" ], "module_map": "CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap", + "resources": [ + "CapacitorCordova/CapacitorCordova/PrivacyInfo.xcprivacy" + ], "requires_arc": true, "frameworks": "WebKit" } diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index aa6ad97..72ff7b3 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -1,7 +1,7 @@ PODS: - - Capacitor (3.0.1): + - Capacitor (6.0.0): - CapacitorCordova - - CapacitorCordova (3.0.1) + - CapacitorCordova (6.0.0) DEPENDENCIES: - "Capacitor (from `../node_modules/@capacitor/ios`)" @@ -14,9 +14,9 @@ EXTERNAL SOURCES: :path: "../node_modules/@capacitor/ios" SPEC CHECKSUMS: - Capacitor: 92088387144015b95e369bd7840e8ef28b8fe9f3 - CapacitorCordova: 624ae0d33d61b554eda6823da8ea6c3e5170f646 + Capacitor: 559d073c4ca6c27f8e7002c807eea94c3ba435a9 + CapacitorCordova: 8c4bfdf69368512e85b1d8b724dd7546abeb30af -PODFILE CHECKSUM: 8ec984072433225e8e67153cc4d9396806f4cef4 +PODFILE CHECKSUM: 1033dea949db4aa66cc0404a8baadac4a30dd025 -COCOAPODS: 1.10.1 +COCOAPODS: 1.14.3 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index d7867fc..4c08c99 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,125 +7,144 @@ objects = { /* Begin PBXBuildFile section */ - 0D3566A2ADC9F79D8EEB8DE27A7E716F /* CAPBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20A5F74DF80FDD463647E8779400CD54 /* CAPBridge.swift */; }; - 0DA458458BDC684E60AD892D86369EF1 /* CAPBridgedJSTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = E1EB6209C8B02C54473D61CD4492F0FA /* CAPBridgedJSTypes.m */; }; - 16227A369B90157996D8074B1ED61FDB /* CAPPluginMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 09A74E2096C28EC9108E885E3AF6485D /* CAPPluginMethod.m */; }; - 1A060CE86A091D3EEF5B9DC62422F0ED /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 56DD78BA92B7353B8B3BB1F6F58A4F1D /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2659D172DF2EA3A77F0F7B2BA517CEEA /* WKWebView+Capacitor.m in Sources */ = {isa = PBXBuildFile; fileRef = CED73FA9626598BDBA1F9A0576BF64E5 /* WKWebView+Capacitor.m */; }; - 26A035F29252388848E040FAB3144A6B /* CDVPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDF62BBDBCE548AC20234C7C0856A4A3 /* CDVPluginManager.m */; }; - 2AB272ED56FC6910939BE6B452236537 /* Pods-PluginTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2D35407322EC5E4C7016C7545B47E3CD /* Data+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C6A801DA47EA999E5F1DB1DE368CEE2 /* Data+Capacitor.swift */; }; - 374DF18A0AB501539B27F0804775EEE3 /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 753FA7E4E1898E606667C44926366050 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 382BFEEDDC2E721A70BB1E15B6F81082 /* Array+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 228A7412F815F461E4451FE325997195 /* Array+Capacitor.swift */; }; - 39EAC7FC72257789A186C94C42CBF2A8 /* CapacitorBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 326314CBCC6A46F60AAD6A489CD7E2E2 /* CapacitorBridge.swift */; }; - 3C03FEF86CD2377BE7E250B994AD5E55 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836AA53B08735CCA25FCBEB61ECE2D62 /* Foundation.framework */; }; - 3F320ACFC8280C799172E280E616DF44 /* CapacitorCordova-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4891D7A50EA2F25D9C5D38BCFBF16BE /* CapacitorCordova-dummy.m */; }; - 3F75F56198130371531ED9AD8326F95E /* DefaultPlugins.m in Sources */ = {isa = PBXBuildFile; fileRef = BE02544854A66F716ACD84BF3B666266 /* DefaultPlugins.m */; }; - 468A5AEB62B840DE4FA37362A9DF2C08 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F54AB0A3EB28A9A3E7C0E1ADC8E104 /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46E6FF469A55F69C9928A7A7EE91F188 /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A82ED5E669FAA227EE7E11601AA1F9 /* CDVViewController.m */; }; - 4962425599CB1739B4D1D6A892B442BA /* CAPInstanceDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 224D27C47930F36A3090010F0894B8E4 /* CAPInstanceDescriptor.m */; }; - 4B3D88FCBB6EA7F3C963B3617A13E378 /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A8F6049F5C90B22E0B5261CA1A1CEB /* CDVInvokedUrlCommand.m */; }; - 4C3EB121BEFA62734DA9136B990EC7AE /* DocLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF30828D2A95F82A624A96F90FC850DB /* DocLinks.swift */; }; - 4D466FA0AB55B7F08029203CCBA5251C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836AA53B08735CCA25FCBEB61ECE2D62 /* Foundation.framework */; }; - 4D608C658BC201BBEE91F69B958823DF /* Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5462299292DB6D87BF3D1C3360968BAC /* Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EFF1BD3A8260B91CAF037823842BBB3 /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = CBFF794A5CC25A9887165C3C1E852D71 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4F8A46149AE216A25CD9D9A3C5049A42 /* WebViewDelegationHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4F3682BDC752B12A3E352B47B8D395E /* WebViewDelegationHandler.swift */; }; - 50801E12652EB81166738BD74695F55A /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 547E06B8E475EBD4BAA537795EA7C03C /* CDVConfigParser.m */; }; - 5276FB0E6CA2197F8FD490CC62499AF6 /* NotificationRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0BC80EF9747F4599C8381B8347CCB82 /* NotificationRouter.swift */; }; - 529481EEB667F1F6730818B23A8EB1A1 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C3872A1CAD980887E1549BD0943B6F /* AppDelegate.m */; }; - 53F59129F7215246AFFBA6B03017BC5F /* WebViewAssetHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3C474CB34FA9B1FA6EE008AAF0CAE6B /* WebViewAssetHandler.swift */; }; - 551EBC32194FBE23733D7B3BDA23A579 /* native-bridge.js in Resources */ = {isa = PBXBuildFile; fileRef = 94BC8F6F50496C70C80034B440843399 /* native-bridge.js */; }; - 583E77463CD7B22642DC33F45C449F1C /* WKWebView+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE928583142A0127790196C32978CDD7 /* WKWebView+Capacitor.swift */; }; - 59EB6C129639B56056DCABA6629D7F66 /* Pods-Plugin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */; }; - 5E527012AEE124134F83A3FC457AE9B6 /* CAPNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7736BE3FAB559DDDDC06E29A79D5FEC4 /* CAPNotifications.swift */; }; - 5FA049F3FA4895388E9A9AB4839C87F0 /* CAPPluginCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 757D279C19041742CA418BF1B58D2975 /* CAPPluginCall.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 60F455EC1D8A1020F35B65A4CAB556B5 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 7257B3C47380D8735119213A42EDA057 /* CDVCommandDelegateImpl.m */; }; - 645B12B9D7A123A5E738E7842BFFFCCA /* JSTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8378A307CB6FD0FE379D0950087AF331 /* JSTypes.swift */; }; - 6488C770CBBB0828CF94451F1295DE33 /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D9648720A8052F0E56D560432C76A7D5 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68E2C6447167E330558395977CB2E780 /* CAPBridgedJSTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE169E193688F2B118E884DAA5214F1 /* CAPBridgedJSTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69ED692C3661ED2D697FCD18BE3BB293 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C05BE54A54B295DFCB75097C76C44A /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 700B2DE3F5F11EFF5E3DFD96F215C5A0 /* CAPInstanceDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2584ACC5D0A0F927E0150EB1520447B3 /* CAPInstanceDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71D433DD915264828C90916B11D853F2 /* CAPApplicationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9E14EB350C94307A2B401C182DC13F8 /* CAPApplicationDelegateProxy.swift */; }; - 7B3DEF85DB16CE34CCA902AF537DD15C /* CapacitorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05413C66D2924C82FEF3DA6178675F49 /* CapacitorExtension.swift */; }; - 8498CB3496D0F75CECFCCCDF9FF75060 /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C894BEB21ECB891BD48E75E7A9D5ED /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C84E041EA4F0A459545DFB43E3C00A5 /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B6FAA9CD7CF7BC2965904592E3FB21 /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8DE82DDD279F9E9C639147ACC2BE0F81 /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8636238F54A50584A334033F8ACB06 /* CDVURLProtocol.m */; }; - 9228CFD5AF5CB170A23EB3FD88B68053 /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = A7DB2F1D9C00BEB5A49E1B662D6A5826 /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E3E2441530654DDB8860EC3A645656C /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = D373D272C4F0754390425B6C2D7C55C2 /* NSDictionary+CordovaPreferences.m */; }; - A0BBF05E1B6E767C508701D369E00982 /* NotificationHandlerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53C2AF4B4FA5F460712B71EB94794677 /* NotificationHandlerProtocol.swift */; }; - A8EE1E2C94EB91057BD7E9B46B2B12D3 /* CAPPluginMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = D6180BD9DE1B805E5CBB742404CADA85 /* CAPPluginMethod.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC09991398E17476A43D65B8ABCEF358 /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B7DF04FCA45A91FEDC85A221AD96E3 /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AF233EFEBC6635C458D4C0C79FB6AF06 /* CAPInstanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F9B2F2B45BDA6FEB9A2B93EB50C3B40 /* CAPInstanceDescriptor.swift */; }; - AF630C31D5A79586F63881A5F7463E67 /* Pods-PluginTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */; }; - AF74BAEFC1053220434F90DCE2782156 /* TmpViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 973AF241B4A0D185C38D4C1D89146D2E /* TmpViewController.swift */; }; - B7D88807138FC0B29BC9A084E97D6E1B /* CAPInstanceConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4774873848C5D78858B59C7D4D4D86BA /* CAPInstanceConfiguration.m */; }; - B9F8C678D7A580C3E2F9883B82B5D500 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B3C68CAAB423D1996F1D3D5DABC0058 /* UIColor.swift */; }; - BA82ACEA05BBA42C98C9D217B6F8C6B4 /* CAPBridgeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5392DA8BA05DC927BBE4377D550E4C5 /* CAPBridgeDelegate.swift */; }; - BBAA50DB7098BC61FCF1E36CEA4A138E /* CDVPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8A5DFBE4BAC1D7F79270ECBB48A49F /* CDVPluginManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD070AD6B7BEA1182F6468C4207C685B /* PluginCallResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCD977CA8BA8065F91A6AEC6083CEED7 /* PluginCallResult.swift */; }; - BF4B5579588E0226B42996A78B400B5B /* CAPPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = F04EA50B385D6BBAEC394DFD11DF150F /* CAPPlugin.m */; }; - BFCA977C906943E556F84B35BBA2967E /* JS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27E218660728AF685654AB53FEB0790C /* JS.swift */; }; - C3A52879FEE5E3AE4401F27AB5549F3E /* Capacitor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C42C6129A97668947630DEE53AC8B00C /* Capacitor-dummy.m */; }; - C547BACC602947772863AA1C0FAC24E4 /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F856E39597F12A85F7948066E54C854 /* CDVPluginResult.m */; }; - CCF5E1779D6C74665498E98124D9906A /* CAPFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29AE61FEA5F9E2C2BAEDD190F21C0BCE /* CAPFile.swift */; }; - CD56259A9E56096B41B86B49E3EE1975 /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 9438D4C381AF608ED6B61E9731AF7D52 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D0407B6149DBA02CE356E66052990964 /* CAPInstanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259594D9059DD7CA0147CBB7D42B040F /* CAPInstanceConfiguration.swift */; }; - D1A13181961652D4419985A2D4A50DD5 /* Cordova.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 351CAFB01AE1CE21F3443E3CD9E750E4 /* Cordova.framework */; }; - D21A2CF9D0BF44BFABF2D1857AE9DF62 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 88335C15F8AD0420AAFB44551CF961F1 /* UIStatusBarManager+CAPHandleTapAction.m */; }; - D3163A29F47496C92C285BAB100712F6 /* Pods-Plugin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3F9BC38CD72826A2D88427CF295A248 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15AE296986E7EA9099B1F1A3C0632470 /* WebKit.framework */; }; - D41DCF444EF70F231C80908C4CAD4F32 /* CAPPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0272EDE0885FC3237417C11ED1DDE147 /* CAPPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D56971D0556595CA3C3B80246CFC8FFC /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27E31F574D20E1A45B278CF15DACBF87 /* Console.swift */; }; - DA184EDA068A7BA46D942185FCDBF9B9 /* CapacitorCordova.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C1BC031D8270D9325AA38D495F5F55F /* CapacitorCordova.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DAEEB9DB518E23155D112F5780896F85 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5137440B78072CBE4B534CC08BAA964B /* WebView.swift */; }; - DD4305A5CCACEB2DCC711D8A004B1B37 /* JSExport.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C1FED267B007AB018162072F0FFACB /* JSExport.swift */; }; - DF8132C7D3EA3A6553F531E5ED64FEB4 /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = 9899DEB5773653D82EC30280A856F5D8 /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E724A516A46988E9D8A1AC14E3EA7C12 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836AA53B08735CCA25FCBEB61ECE2D62 /* Foundation.framework */; }; - EA8C4A8C65EEF3608154ABCA64701D91 /* CAPPluginCall.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADBCF8B1E43E708226D10E45E20DA33 /* CAPPluginCall.m */; }; - EFC1D407CBC19C9B63B5416CB90C35FC /* CDVPlugin+Resources.m in Sources */ = {isa = PBXBuildFile; fileRef = 04607C81321BD2B3E857C6B768D9D06A /* CDVPlugin+Resources.m */; }; - EFDFF4FBFECBA30BFCF1D1EB8C284618 /* CAPLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB91AEA96D1E110DE156A15D75F532FC /* CAPLog.swift */; }; - EFF760D90435BF8143068D2C0DCE83EC /* CAPInstanceConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A410402DED5088B29E69EE5514AE15 /* CAPInstanceConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F40C385F431234428AE05B1B242E1E26 /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E6292AFB15F260AF63EE251721B8F855 /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F4F48D65E486B68C0E4214C0EA9F63D0 /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B68C00D29C1A4757E5AE54EAF0BFB1F /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6CA45FB50AE58F753AEB4A6F478668E /* CAPPluginCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17028E99E451B6C3A12945D8F6F9E2 /* CAPPluginCall.swift */; }; - F7C407CFE49DEBB2A85FCD3A3F7B9717 /* KeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A28ED14F90B1269DC9ADC522A7E6079 /* KeyPath.swift */; }; - F861E7C1DA6B4991C897589C3AC0DEEC /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = C884AD703169070E1ED20C148D54E98E /* CDVPlugin.m */; }; - F8899F9C17A0C3ADD5C2A57BA41778BE /* CAPBridgeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD56E3A1FC02E4CAB1A22E44591AAE9F /* CAPBridgeViewController.swift */; }; - FA3D0C2E2A26DFD3E1511779A1D88416 /* CAPBridgedPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE7BF013ADAB7C0B2D96DBBC8956E70 /* CAPBridgedPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FBA69B3C93B341FE15041A418EE404E4 /* CAPBridgeProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = B194255CF17E6696C69110CD0FA2AE00 /* CAPBridgeProtocol.swift */; }; - FF76A6BBC849C9348711284FDD3C2D05 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836AA53B08735CCA25FCBEB61ECE2D62 /* Foundation.framework */; }; + 004C4F22538FB423017F6D3FFE73C14C /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */; }; + 007332F2DA13525BDCD4BB0D9217C082 /* CAPInstanceConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = C28B91C116136C7A64464B856666B322 /* CAPInstanceConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 03DF725C5D1860D81E0223539BAE6DDD /* NotificationRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC36ADDFA38A3661389DDA825FE5083 /* NotificationRouter.swift */; }; + 0A5D6115B33EAF8DFEBC49B86C5BC97F /* TmpViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 058355C86F3D67F2B6321DC4E1FC10A1 /* TmpViewController.swift */; }; + 0B47E8AF45DA0A8FEA229DCCFD0F0B87 /* CAPPluginMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A5E6150D9FC87A26CC0986391626019 /* CAPPluginMethod.m */; }; + 0B7C98AF45BEF701EAD5C8815B45D8B0 /* CDVPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A1EAF35490B5AFF5FAAD95EB018E41 /* CDVPluginManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0C07AD3FBE31EE1635DFB76B082E57BC /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EC12A44AF93A0F42A7D7934B956E924 /* WebView.swift */; }; + 107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 118640F64F2D19E0CD8BB4A0CA3F5420 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E997E61FDD01E884BBF5AC59944653AB /* UIColor.swift */; }; + 136C825401170BA53C5DBC33D29BCC0C /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7660E6814B15B929A0F9F717B3D7AC68 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 142783A77B0BCD39ACA638C7616B7590 /* Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D985C80C63BDFDA02B09FBDE5F6F5A /* Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 157C54DE30FCA6DDE564B4F31F2F9D1A /* CAPFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 100A2F7039C5EC78463F4B6D919C0027 /* CAPFile.swift */; }; + 1580760D6B655273CE4B6EC30CE13967 /* CAPInstanceConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = EFC7B9E1A25EB4AE22B2BFD76CE82545 /* CAPInstanceConfiguration.m */; }; + 164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */; }; + 1AB31E21DFBCD2B194FF8DDFA8B54E01 /* CAPBridgedPlugin+getMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECE23228C63C46F0C4EEBEB40A001646 /* CAPBridgedPlugin+getMethod.swift */; }; + 1CD2BABBDB188E322DA0794B6780D680 /* CAPNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E0E0F34AC2147857612A52C22DC6AD2 /* CAPNotifications.swift */; }; + 202A37BE65C32896AB0996E796E6894D /* JSExport.swift in Sources */ = {isa = PBXBuildFile; fileRef = D81BE104344112B7A5C9F3A53EDE99A7 /* JSExport.swift */; }; + 20C383017DD60D874C402ABB5CACB294 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; }; + 212EBE40C8ACE6A7D072783EFEAF6584 /* WKWebView+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBDB22A2818944BBF894475E81CFFE6 /* WKWebView+Capacitor.swift */; }; + 234551D449CFF841B0B3FABFF256F3C2 /* CAPInstancePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 649B5A19BF47F4CDA5DCCFF2C64B57EA /* CAPInstancePlugin.swift */; }; + 23B549A724AA7AF775FD67B941CC55E7 /* CDVWebViewProcessPoolFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = CE0E983F534D35114FB10F2860CF307A /* CDVWebViewProcessPoolFactory.m */; }; + 23DDD23E097CCE3EB772DFD1518CAC12 /* CapacitorCordova-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1AFA939CECAB029934DBC1EAF88742 /* CapacitorCordova-dummy.m */; }; + 24B85D70EC6F01401534D1273B91C779 /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A1612702E201BE0983D534A6F9D071A /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A217CF4403DECC0FB30126EDFC62646 /* CAPInstanceDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3A58AC532D2AA4F4ED2A1732DB89F4 /* CAPInstanceDescriptor.m */; }; + 2AF9E9A11AD1017E49BA04DD1755F973 /* CAPPluginMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF32033DAF5F1B50DB8C41C642EC0CB /* CAPPluginMethod.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B1BAECC3B542560A986EA13D225E2DC /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 4521DB3AF260E2133CBD36522DB7BA75 /* CDVPluginResult.m */; }; + 2D0216605EB72F821300C4F3B1FC86E8 /* CDVPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF24F4C1B1CD901AEC6C31DA750B980 /* CDVPluginManager.m */; }; + 30CFE9B13BD3AE4A1A0375995E6DCA32 /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0249BF2B4AD076B27532089B9CC0180D /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 31B7196B31CACDD9CA75FA7141EA0BC3 /* CAPBridgeProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4482B770B243ABA1FB534B9EF3183997 /* CAPBridgeProtocol.swift */; }; + 336C399F569FC3DF9C164516877B7876 /* CAPBridgedJSTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B30FA46B72726BE8575E32C6D723774 /* CAPBridgedJSTypes.m */; }; + 33DB35A72EB4D687E0C0B8160FBBBCF2 /* DocLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED48CB5BF6D421A9CDA0C959348D407C /* DocLinks.swift */; }; + 35E00E9BF306043F7FDD264DE34AB9F4 /* AppUUID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 605CC094F300E6D3154759CD45B6FE93 /* AppUUID.swift */; }; + 3809BCF163CF2FC0837313B28820A5E7 /* KeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B9E8896A248D0A3B628BE972B7A4486 /* KeyPath.swift */; }; + 389E3629A4C8DB7F225C4DBB485F55F4 /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 818851AD6AAAFD56B6C49CBB95831BD2 /* CDVInvokedUrlCommand.m */; }; + 3D01AC7C1CA793317AB16617A9DD11BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; }; + 4480D816F7E74A1DE8D7BA3EEC3DDA03 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = DBDA16FB77D8D59DEB32CCFE8105EE7B /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A1BF88F562C5FA3F9B4CB0902DF33D1 /* CapacitorCookieManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4983F575EC8224716E5A6D6B3C5C2085 /* CapacitorCookieManager.swift */; }; + 4B397AA425A96914BF3A9225C03F4C27 /* CAPBridgeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 361CCAC6BE339CADD7B79EFF50187FBE /* CAPBridgeDelegate.swift */; }; + 4DACBE4BAE67ED6303A6B4BE93B89A12 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3763CB8B63738A487F25B9D159EDF8DE /* UIStatusBarManager+CAPHandleTapAction.m */; }; + 5039CE8F3227519F11BFE0BD1D277D82 /* CAPPluginCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6015C26B0D7D81331053C8F88F8DDC33 /* CAPPluginCall.swift */; }; + 5074F79461C81172A55FF16BB21D6DEC /* JSValueEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = E07B414D8F1B660835190464D21ABC10 /* JSValueEncoder.swift */; }; + 51A93B31DD8A7E82116B06380D00B0FA /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB754CF702177D045E75886784DDA40 /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 536E730A8AE3586385BE5B363AA9F749 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0105DDBA94BC8BCB737759E84AAE7208 /* AppDelegate.m */; }; + 54D5E23F14074FFCC5810E97CC384362 /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = B31007A810171D345EEC4FA0BCB21CEA /* NSDictionary+CordovaPreferences.m */; }; + 55174DC66F28010287ABBFEB88C8CB47 /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 63CA49B9FEB6B4E88D6C824BE745A921 /* CDVURLProtocol.m */; }; + 583FC5AAB1304E425B197DF26F25D41B /* CapacitorCookies.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24EF261844A690BDF4EC68C25C7A5589 /* CapacitorCookies.swift */; }; + 5B6D495147727CA78DB75137A96D6825 /* CAPInstanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 548629F623A47EB37EE3410159EA22AF /* CAPInstanceDescriptor.swift */; }; + 5C4B7DA3F5EE52C88BCECDFE28DB4FFD /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 9D81585547EDB4B034BE2EA0D9D56208 /* PrivacyInfo.xcprivacy */; }; + 602CA89D2AFC32364AB75D3E23584F85 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECB88325A202355935E8868FC704161 /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 624D4949CC249D74527F83519B9E1E45 /* CapacitorUrlRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DF6B2974AF73F4D12D28B80AC5F36F5 /* CapacitorUrlRequest.swift */; }; + 6B6BB26E4D9C61A8C7A17D5D5477917D /* DefaultPlugins.m in Sources */ = {isa = PBXBuildFile; fileRef = D7539895D20B52CA8D5ADC3349621C52 /* DefaultPlugins.m */; }; + 6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; }; + 75DC2E1CEC8456ABAFFE24C9C7BC2565 /* JSValueDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3913FC61666E5D3FD73A8767928B4A8 /* JSValueDecoder.swift */; }; + 77D5F245A53ED2E142D192EC906C9BDD /* CAPInstanceDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = A43E09C2D3593E85EC9C672DACDC6B8E /* CAPInstanceDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7AE5591CB842463FE3B4BCA3D35A364E /* NotificationHandlerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F11C8BC6D3CB7B817842AA9AFAC48F4 /* NotificationHandlerProtocol.swift */; }; + 7EF85F102CBA9740526D6D28DB460A4A /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C006AC3D0821275FCF555E6E934B840 /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */; }; + 81D62137DA55FF11497B548EAE98B507 /* CAPBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7EA8211FDF54FE98FBAA044F3D7CEA0 /* CAPBridge.swift */; }; + 86526A3802BF6EB9517E79C70978D5A2 /* CAPLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = D73A20758871BEC6AB3CCAE68C74DBDA /* CAPLog.swift */; }; + 89A06DC4CD3EA89BF204A2CDA9D2CCD2 /* CAPBridgedJSTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 034E099A6F68B36A4512A9AEB01F41C6 /* CAPBridgedJSTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */; }; + 8E82A22CAF83901CBB8A031975682220 /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A35816AF163353BBA815B674518D5CC /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9029F7FF8A60F804DA5FA6E0432E05A4 /* CAPInstanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD894B091F39A97912ACF4CFBC836D87 /* CAPInstanceConfiguration.swift */; }; + 92490B93A65F1C1F2BD9B5FFB8C89F0E /* CapacitorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = D500B14AFB8C0E709A9582A05B81F7EA /* CapacitorExtension.swift */; }; + 9345D58CFFA52039FF0CA0A01C12437E /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 817499F6B220524F650005F03DD71B4A /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 95D6BB43235341A58DAA7A2D5F816285 /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = FE5DE9C8F410DA397F9857E73F8B90AF /* CDVConfigParser.m */; }; + 96C1F6485B4CB8B440B1226240BB8AFE /* WebViewDelegationHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512101D8B0690EC4264E4026595E6C09 /* WebViewDelegationHandler.swift */; }; + 9763D8A87E0A07883DFA4D9D726E1179 /* KeyValueStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = B67934A6336DB96153F69F2885F7FE6A /* KeyValueStore.swift */; }; + A012D5C61788DC241D5E148E634FE3FB /* Array+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BEB3F4052AFC1F272E8E569F38D99A8 /* Array+Capacitor.swift */; }; + A19EA29DE056A789B50027BFD218CE55 /* HttpRequestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 878E6794B11C0E8DC0D0272E0075D3DA /* HttpRequestHandler.swift */; }; + AB17672B62071DD8AF3B828ACA2A06CF /* CAPPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F57C5B609F6096ECA1A3472EB9598349 /* CAPPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AF380203CBC71D9326A854FFBAFFEA20 /* native-bridge.js in Resources */ = {isa = PBXBuildFile; fileRef = 3CFD655E5956A08005DD5AA421862B8B /* native-bridge.js */; }; + B12EB58090BBCD95C6BEE4A15BEEE8A2 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 95648C56D4E4ABD41EE8AF4CB2326B5B /* PrivacyInfo.xcprivacy */; }; + B7C447AB9B733756A83AB5CBF8955D51 /* CAPBridgedPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B26A9DFA84BEC3CE4BCC5439C97FEB5 /* CAPBridgedPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0105CF2ED68075E8E93BC243FBE88D9 /* PluginConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6DA0364646B8DAC5AC1996CA4DB6D82 /* PluginConfig.swift */; }; + C1886D9428CBFB717587D49E5C4F2C9C /* JSTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 529064D5D9025BE6A79DE45A25CF473C /* JSTypes.swift */; }; + C43437A95FE60E8B696D075B2AD92FD1 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 869C4EBBF812C9DF1DEC1E1C9A0414B6 /* CDVCommandDelegateImpl.m */; }; + C8104AD6B8FFF94FD4582463DF8939D5 /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF1B07523853D822DC5BF0764E9EED19 /* Console.swift */; }; + C9959E6883AECA98699D97C111B848BE /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E4D3210F27C4592CE89FEB3DBAE96A /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9A6023275736982767D2C80866EEE21 /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5B59AC595CB35EA245E9B30141E6924 /* Router.swift */; }; + CA8874EB314C2E50D873D5E93EBA4802 /* Data+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5985DDA358070FD5E8E0924F7B21993B /* Data+Capacitor.swift */; }; + CD3F76C13D34FE50163B8C07A6367A94 /* PluginCallResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = D16D9D7D1D75407542D70F279BE858C5 /* PluginCallResult.swift */; }; + CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CF1C6A66DAA0660D44D2B80800DBAB33 /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4E33F09D7E6EA708A393DCA9D6AFB9 /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D05DE09A6C85758C6972D34FA1EC2638 /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3732370A43B40B615A6E2E0FA72E51C3 /* CDVViewController.m */; }; + D21C0C1FD43A127545AB04DA0D973B9F /* CapacitorCordova.h in Headers */ = {isa = PBXBuildFile; fileRef = 703752F658D442F244EA452FB74965B3 /* CapacitorCordova.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3AAA99BB323C5A79F159677E7BDAE14 /* CAPPluginCall.m in Sources */ = {isa = PBXBuildFile; fileRef = BA5F5DAE2C5394EEE17B9029808226AC /* CAPPluginCall.m */; }; + D42968908E87092201B32918E08C5D56 /* CDVWebViewProcessPoolFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 17AE58CD1ADD07DD9FEA88931D0F5D22 /* CDVWebViewProcessPoolFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D6B9AA063A55F4740584DC116856376A /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 563A77979ACFFB84A79E21335EB145D7 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC41EEBFD999626E3ABFDBA460D39785 /* CAPApplicationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83BE6CA12E14393F4ABE5A03E7C4021A /* CAPApplicationDelegateProxy.swift */; }; + DCEF4D9160ED4C83DC84EC0147EEE362 /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 493CF8B368FE667CC972900CC186E9C5 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DCEFD0A9F478BD16D6104CA85498985C /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F58C13F718DDDF912C8D8F957ADC563C /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDF6E51141FC9199E5D8791C4F834089 /* CAPPlugin+LoadInstance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4197ED0A91C1D7947BA5FBB380806250 /* CAPPlugin+LoadInstance.swift */; }; + DE1988CA56CDB224E00A7068E06A04A7 /* Capacitor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9870CDDCF99B18DB64FE413BD355A33 /* Capacitor-dummy.m */; }; + EB322C3380F009848AF6511F4858F9D9 /* CapacitorBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80EC617BCD4EA95F9AAC9AB3CAA3B8E1 /* CapacitorBridge.swift */; }; + EBC0DD8420251B550FDFFBC48C12A8CB /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = E836D3E3290079E51DDCB96D8A095942 /* CDVPlugin.m */; }; + F0C3D26913201077F0945BAF0DBE9F81 /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7554A812B86229C8EA5F6F81B321BC /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F18C5A01A19C52A405FE2C961E65B9D6 /* WebViewAssetHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 467FCC173510CF0FC276F6532D770907 /* WebViewAssetHandler.swift */; }; + F191FCB79EA5BB53498817DE20EBF993 /* CapacitorHttp.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC328445EC3EA24D0B0319746270406C /* CapacitorHttp.swift */; }; + F2598AF55CD2EC5E49370998206F9920 /* JS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F944F7FF0C26D29173A8EF79812831C /* JS.swift */; }; + F5632525E3850D9B12B0EF8773154518 /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 17715AB9228EA6E1D4F012B0CCEB33F5 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6A8F1B557CCFF05DD6D95A05EE7634D /* CAPPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = F1C958D69C29CFBBDC15C97C583F4B43 /* CAPPlugin.m */; }; + FA6644FB90B4E42DB0545F3D7A09B57C /* CAPPluginCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FEE9BE906E5FD3A2023A19D663CC35 /* CAPPluginCall.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FAE579971D3F2B0BDD35CE5015750EF0 /* CDVPlugin+Resources.m in Sources */ = {isa = PBXBuildFile; fileRef = 59D5E4DFE1C5C24A08DE24200E2D13A5 /* CDVPlugin+Resources.m */; }; + FE98DE71F4C58B1551E592A736A1D842 /* CAPBridgeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA4B6D6707D7C90A6A5A0F9BEBC93AAE /* CAPBridgeViewController.swift */; }; + FEBA348FAD9E37B87F9687836731B9E5 /* WKWebView+Capacitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E899B1AC03689EDAC12449B726FB334 /* WKWebView+Capacitor.m */; }; + FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 5E9000393805B3E9DB2DD6A4EE2023E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371; - remoteInfo = Capacitor; - }; - 65896A987D2712CA297E3637C0B18617 /* PBXContainerItemProxy */ = { + 0BDC1A6F73E729ACC0C577A493644A83 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0; remoteInfo = CapacitorCordova; }; - 7642AC46E5085801CA863F2B1376A23F /* PBXContainerItemProxy */ = { + 1C561FE25030B07A32DC2B811C25A589 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0; - remoteInfo = CapacitorCordova; + remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371; + remoteInfo = Capacitor; }; - CD74EB7483F2A778B7655CA37F378A3D /* PBXContainerItemProxy */ = { + 2C164E5D182DA36F68E9F8AD6626995F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371; remoteInfo = Capacitor; }; - E1B6A47092D48A411ABCAB80CF226DE1 /* PBXContainerItemProxy */ = { + 5EFA106816E365BDCE204FF590B75E2D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0; + remoteInfo = CapacitorCordova; + }; + 7E9BDDA8B475F749D2B09C2E752F30C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -135,402 +154,448 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0272EDE0885FC3237417C11ED1DDE147 /* CAPPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPlugin.h; path = Capacitor/Capacitor/CAPPlugin.h; sourceTree = ""; }; - 033DD9C20F86A20428C7E037EF84BAC8 /* Capacitor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capacitor-Info.plist"; sourceTree = ""; }; - 04607C81321BD2B3E857C6B768D9D06A /* CDVPlugin+Resources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CDVPlugin+Resources.m"; sourceTree = ""; }; - 05413C66D2924C82FEF3DA6178675F49 /* CapacitorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorExtension.swift; path = Capacitor/Capacitor/CapacitorExtension.swift; sourceTree = ""; }; - 077994A1A3900D2BD5D57B4A4E4DB154 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = CapacitorCordova.modulemap; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap; sourceTree = ""; }; - 07C894BEB21ECB891BD48E75E7A9D5ED /* CDVPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPlugin.h; sourceTree = ""; }; - 09A74E2096C28EC9108E885E3AF6485D /* CAPPluginMethod.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginMethod.m; path = Capacitor/Capacitor/CAPPluginMethod.m; sourceTree = ""; }; - 0A8636238F54A50584A334033F8ACB06 /* CDVURLProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVURLProtocol.m; sourceTree = ""; }; - 0B68C00D29C1A4757E5AE54EAF0BFB1F /* CDVPlugin+Resources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CDVPlugin+Resources.h"; sourceTree = ""; }; + 0105DDBA94BC8BCB737759E84AAE7208 /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + 0249BF2B4AD076B27532089B9CC0180D /* CDVPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPlugin.h; sourceTree = ""; }; + 034E099A6F68B36A4512A9AEB01F41C6 /* CAPBridgedJSTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedJSTypes.h; path = Capacitor/Capacitor/CAPBridgedJSTypes.h; sourceTree = ""; }; + 058355C86F3D67F2B6321DC4E1FC10A1 /* TmpViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TmpViewController.swift; path = Capacitor/Capacitor/TmpViewController.swift; sourceTree = ""; }; + 05FEE9BE906E5FD3A2023A19D663CC35 /* CAPPluginCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginCall.h; path = Capacitor/Capacitor/CAPPluginCall.h; sourceTree = ""; }; + 0EC12A44AF93A0F42A7D7934B956E924 /* WebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = ""; }; + 100A2F7039C5EC78463F4B6D919C0027 /* CAPFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPFile.swift; path = Capacitor/Capacitor/CAPFile.swift; sourceTree = ""; }; 11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-Info.plist"; sourceTree = ""; }; - 15AE296986E7EA9099B1F1A3C0632470 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/WebKit.framework; sourceTree = DEVELOPER_DIR; }; - 1A28ED14F90B1269DC9ADC522A7E6079 /* KeyPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPath.swift; path = Capacitor/Capacitor/KeyPath.swift; sourceTree = ""; }; - 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* Cordova.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Cordova.framework; path = CapacitorCordova.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1C1BC031D8270D9325AA38D495F5F55F /* CapacitorCordova.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CapacitorCordova.h; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.h; sourceTree = ""; }; - 1F9B2F2B45BDA6FEB9A2B93EB50C3B40 /* CAPInstanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceDescriptor.swift; path = Capacitor/Capacitor/CAPInstanceDescriptor.swift; sourceTree = ""; }; - 20A5F74DF80FDD463647E8779400CD54 /* CAPBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridge.swift; path = Capacitor/Capacitor/CAPBridge.swift; sourceTree = ""; }; - 224D27C47930F36A3090010F0894B8E4 /* CAPInstanceDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceDescriptor.m; path = Capacitor/Capacitor/CAPInstanceDescriptor.m; sourceTree = ""; }; - 228A7412F815F461E4451FE325997195 /* Array+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Capacitor.swift"; path = "Capacitor/Capacitor/Array+Capacitor.swift"; sourceTree = ""; }; - 2584ACC5D0A0F927E0150EB1520447B3 /* CAPInstanceDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceDescriptor.h; path = Capacitor/Capacitor/CAPInstanceDescriptor.h; sourceTree = ""; }; - 259594D9059DD7CA0147CBB7D42B040F /* CAPInstanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceConfiguration.swift; path = Capacitor/Capacitor/CAPInstanceConfiguration.swift; sourceTree = ""; }; - 27E218660728AF685654AB53FEB0790C /* JS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JS.swift; path = Capacitor/Capacitor/JS.swift; sourceTree = ""; }; - 27E31F574D20E1A45B278CF15DACBF87 /* Console.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Console.swift; sourceTree = ""; }; - 29AE61FEA5F9E2C2BAEDD190F21C0BCE /* CAPFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPFile.swift; path = Capacitor/Capacitor/CAPFile.swift; sourceTree = ""; }; - 2E16582420C463DB717C9E0D73A7008D /* CapacitorCordova.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CapacitorCordova.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 326314CBCC6A46F60AAD6A489CD7E2E2 /* CapacitorBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorBridge.swift; path = Capacitor/Capacitor/CapacitorBridge.swift; sourceTree = ""; }; - 351CAFB01AE1CE21F3443E3CD9E750E4 /* Cordova.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3C6A801DA47EA999E5F1DB1DE368CEE2 /* Data+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Capacitor.swift"; path = "Capacitor/Capacitor/Data+Capacitor.swift"; sourceTree = ""; }; - 3E801063595059575D0B391FADD3DA04 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CapacitorCordova.modulemap; sourceTree = ""; }; + 11E4D3210F27C4592CE89FEB3DBAE96A /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.h"; path = "Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.h"; sourceTree = ""; }; + 14A79D65A53F0511F9911570922C1B93 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CapacitorCordova.modulemap; sourceTree = ""; }; + 17115ED7528F1A0B61F0C52409715CA2 /* CapacitorCordova-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-prefix.pch"; sourceTree = ""; }; + 17715AB9228EA6E1D4F012B0CCEB33F5 /* CDVPluginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginResult.h; sourceTree = ""; }; + 17AE58CD1ADD07DD9FEA88931D0F5D22 /* CDVWebViewProcessPoolFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVWebViewProcessPoolFactory.h; sourceTree = ""; }; + 1A5E6150D9FC87A26CC0986391626019 /* CAPPluginMethod.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginMethod.m; path = Capacitor/Capacitor/CAPPluginMethod.m; sourceTree = ""; }; + 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CapacitorCordova; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 1B26A9DFA84BEC3CE4BCC5439C97FEB5 /* CAPBridgedPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedPlugin.h; path = Capacitor/Capacitor/CAPBridgedPlugin.h; sourceTree = ""; }; + 1D3A58AC532D2AA4F4ED2A1732DB89F4 /* CAPInstanceDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceDescriptor.m; path = Capacitor/Capacitor/CAPInstanceDescriptor.m; sourceTree = ""; }; + 2016A734CA851674602290F66A762B63 /* Capacitor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capacitor-Info.plist"; sourceTree = ""; }; + 24EF261844A690BDF4EC68C25C7A5589 /* CapacitorCookies.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorCookies.swift; sourceTree = ""; }; + 2A1612702E201BE0983D534A6F9D071A /* CDVViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVViewController.h; sourceTree = ""; }; + 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/WebKit.framework; sourceTree = DEVELOPER_DIR; }; + 2F11C8BC6D3CB7B817842AA9AFAC48F4 /* NotificationHandlerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationHandlerProtocol.swift; path = Capacitor/Capacitor/NotificationHandlerProtocol.swift; sourceTree = ""; }; + 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 361CCAC6BE339CADD7B79EFF50187FBE /* CAPBridgeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeDelegate.swift; path = Capacitor/Capacitor/CAPBridgeDelegate.swift; sourceTree = ""; }; + 3732370A43B40B615A6E2E0FA72E51C3 /* CDVViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVViewController.m; sourceTree = ""; }; + 3763CB8B63738A487F25B9D159EDF8DE /* UIStatusBarManager+CAPHandleTapAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStatusBarManager+CAPHandleTapAction.m"; path = "Capacitor/Capacitor/UIStatusBarManager+CAPHandleTapAction.m"; sourceTree = ""; }; + 3B9E8896A248D0A3B628BE972B7A4486 /* KeyPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPath.swift; path = Capacitor/Capacitor/KeyPath.swift; sourceTree = ""; }; + 3CFD655E5956A08005DD5AA421862B8B /* native-bridge.js */ = {isa = PBXFileReference; includeInIndex = 1; path = "native-bridge.js"; sourceTree = ""; }; + 3DF6B2974AF73F4D12D28B80AC5F36F5 /* CapacitorUrlRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorUrlRequest.swift; sourceTree = ""; }; 401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Plugin.modulemap"; sourceTree = ""; }; - 431B707ED1EACD50CA7897AEDAA65941 /* Capacitor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.debug.xcconfig; sourceTree = ""; }; - 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Capacitor.framework; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4197ED0A91C1D7947BA5FBB380806250 /* CAPPlugin+LoadInstance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPPlugin+LoadInstance.swift"; path = "Capacitor/Capacitor/CAPPlugin+LoadInstance.swift"; sourceTree = ""; }; + 4482B770B243ABA1FB534B9EF3183997 /* CAPBridgeProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeProtocol.swift; path = Capacitor/Capacitor/CAPBridgeProtocol.swift; sourceTree = ""; }; + 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Capacitor; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4521DB3AF260E2133CBD36522DB7BA75 /* CDVPluginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginResult.m; sourceTree = ""; }; 45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-acknowledgements.plist"; sourceTree = ""; }; - 4774873848C5D78858B59C7D4D4D86BA /* CAPInstanceConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceConfiguration.m; path = Capacitor/Capacitor/CAPInstanceConfiguration.m; sourceTree = ""; }; + 467FCC173510CF0FC276F6532D770907 /* WebViewAssetHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewAssetHandler.swift; path = Capacitor/Capacitor/WebViewAssetHandler.swift; sourceTree = ""; }; 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.debug.xcconfig"; sourceTree = ""; }; - 4ADBCF8B1E43E708226D10E45E20DA33 /* CAPPluginCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginCall.m; path = Capacitor/Capacitor/CAPPluginCall.m; sourceTree = ""; }; - 4B7B23985828F9D35ECCA1361A486792 /* Pods_Plugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Plugin.framework; path = "Pods-Plugin.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5137440B78072CBE4B534CC08BAA964B /* WebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = ""; }; + 493CF8B368FE667CC972900CC186E9C5 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegate.h; sourceTree = ""; }; + 4983F575EC8224716E5A6D6B3C5C2085 /* CapacitorCookieManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorCookieManager.swift; sourceTree = ""; }; + 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Plugin"; path = Pods_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4C006AC3D0821275FCF555E6E934B840 /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.m"; path = "Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.m"; sourceTree = ""; }; + 50F35474E793D3079F51A1423D50322D /* Capacitor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.debug.xcconfig; sourceTree = ""; }; + 512101D8B0690EC4264E4026595E6C09 /* WebViewDelegationHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewDelegationHandler.swift; path = Capacitor/Capacitor/WebViewDelegationHandler.swift; sourceTree = ""; }; + 529064D5D9025BE6A79DE45A25CF473C /* JSTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSTypes.swift; path = Capacitor/Capacitor/JSTypes.swift; sourceTree = ""; }; 535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-acknowledgements.plist"; sourceTree = ""; }; - 53C2AF4B4FA5F460712B71EB94794677 /* NotificationHandlerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationHandlerProtocol.swift; path = Capacitor/Capacitor/NotificationHandlerProtocol.swift; sourceTree = ""; }; - 5462299292DB6D87BF3D1C3360968BAC /* Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Capacitor.h; path = Capacitor/Capacitor/Capacitor.h; sourceTree = ""; }; - 547E06B8E475EBD4BAA537795EA7C03C /* CDVConfigParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVConfigParser.m; sourceTree = ""; }; - 56DD78BA92B7353B8B3BB1F6F58A4F1D /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegateImpl.h; sourceTree = ""; }; - 58DEAF78291AAC1E83073B9084B45542 /* Pods_PluginTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_PluginTests.framework; path = "Pods-PluginTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 62267BBBB4B8E2C546F5A02D1B599C38 /* CapacitorCordova-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-prefix.pch"; sourceTree = ""; }; - 69C05BE54A54B295DFCB75097C76C44A /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVInvokedUrlCommand.h; sourceTree = ""; }; - 6D17028E99E451B6C3A12945D8F6F9E2 /* CAPPluginCall.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPPluginCall.swift; path = Capacitor/Capacitor/CAPPluginCall.swift; sourceTree = ""; }; - 6E2E6F8057BB4DED329265F86F1CE694 /* CapacitorCordova-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CapacitorCordova-Info.plist"; sourceTree = ""; }; + 548629F623A47EB37EE3410159EA22AF /* CAPInstanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceDescriptor.swift; path = Capacitor/Capacitor/CAPInstanceDescriptor.swift; sourceTree = ""; }; + 563A77979ACFFB84A79E21335EB145D7 /* CDVAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVAvailability.h; sourceTree = ""; }; + 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-PluginTests"; path = Pods_PluginTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5985DDA358070FD5E8E0924F7B21993B /* Data+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Capacitor.swift"; path = "Capacitor/Capacitor/Data+Capacitor.swift"; sourceTree = ""; }; + 59D5E4DFE1C5C24A08DE24200E2D13A5 /* CDVPlugin+Resources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CDVPlugin+Resources.m"; sourceTree = ""; }; + 5A35816AF163353BBA815B674518D5CC /* CDV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDV.h; sourceTree = ""; }; + 5D4E33F09D7E6EA708A393DCA9D6AFB9 /* CDVPlugin+Resources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CDVPlugin+Resources.h"; sourceTree = ""; }; + 5E899B1AC03689EDAC12449B726FB334 /* WKWebView+Capacitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+Capacitor.m"; path = "Capacitor/Capacitor/WKWebView+Capacitor.m"; sourceTree = ""; }; + 6015C26B0D7D81331053C8F88F8DDC33 /* CAPPluginCall.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPPluginCall.swift; path = Capacitor/Capacitor/CAPPluginCall.swift; sourceTree = ""; }; + 605CC094F300E6D3154759CD45B6FE93 /* AppUUID.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppUUID.swift; path = Capacitor/Capacitor/AppUUID.swift; sourceTree = ""; }; + 63CA49B9FEB6B4E88D6C824BE745A921 /* CDVURLProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVURLProtocol.m; sourceTree = ""; }; + 649B5A19BF47F4CDA5DCCFF2C64B57EA /* CAPInstancePlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstancePlugin.swift; path = Capacitor/Capacitor/CAPInstancePlugin.swift; sourceTree = ""; }; + 6ECB88325A202355935E8868FC704161 /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.release.xcconfig"; sourceTree = ""; }; - 7257B3C47380D8735119213A42EDA057 /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVCommandDelegateImpl.m; sourceTree = ""; }; - 73A410402DED5088B29E69EE5514AE15 /* CAPInstanceConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceConfiguration.h; path = Capacitor/Capacitor/CAPInstanceConfiguration.h; sourceTree = ""; }; - 753FA7E4E1898E606667C44926366050 /* CDVConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVConfigParser.h; sourceTree = ""; }; - 755B65C6FD27E3DF64700E7A4D76CC43 /* CapacitorCordova.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.debug.xcconfig; sourceTree = ""; }; - 757D279C19041742CA418BF1B58D2975 /* CAPPluginCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginCall.h; path = Capacitor/Capacitor/CAPPluginCall.h; sourceTree = ""; }; - 7736BE3FAB559DDDDC06E29A79D5FEC4 /* CAPNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPNotifications.swift; path = Capacitor/Capacitor/CAPNotifications.swift; sourceTree = ""; }; + 703752F658D442F244EA452FB74965B3 /* CapacitorCordova.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CapacitorCordova.h; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.h; sourceTree = ""; }; + 7660E6814B15B929A0F9F717B3D7AC68 /* CDVConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVConfigParser.h; sourceTree = ""; }; + 77A1EAF35490B5AFF5FAAD95EB018E41 /* CDVPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginManager.h; sourceTree = ""; }; 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.release.xcconfig"; sourceTree = ""; }; + 7E0E0F34AC2147857612A52C22DC6AD2 /* CAPNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPNotifications.swift; path = Capacitor/Capacitor/CAPNotifications.swift; sourceTree = ""; }; 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PluginTests-dummy.m"; sourceTree = ""; }; 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Plugin-umbrella.h"; sourceTree = ""; }; - 7FE7BF013ADAB7C0B2D96DBBC8956E70 /* CAPBridgedPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedPlugin.h; path = Capacitor/Capacitor/CAPBridgedPlugin.h; sourceTree = ""; }; - 82ACA1634A991117BB42EF93427F012A /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capacitor.modulemap; sourceTree = ""; }; - 82F54AB0A3EB28A9A3E7C0E1ADC8E104 /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; - 836AA53B08735CCA25FCBEB61ECE2D62 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 8378A307CB6FD0FE379D0950087AF331 /* JSTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSTypes.swift; path = Capacitor/Capacitor/JSTypes.swift; sourceTree = ""; }; - 83D25575D8A4A2CAB87D46C3FAAB9C7E /* Capacitor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-prefix.pch"; sourceTree = ""; }; - 88335C15F8AD0420AAFB44551CF961F1 /* UIStatusBarManager+CAPHandleTapAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStatusBarManager+CAPHandleTapAction.m"; path = "Capacitor/Capacitor/UIStatusBarManager+CAPHandleTapAction.m"; sourceTree = ""; }; - 88A82ED5E669FAA227EE7E11601AA1F9 /* CDVViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVViewController.m; sourceTree = ""; }; - 8B3C68CAAB423D1996F1D3D5DABC0058 /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = Capacitor/Capacitor/UIColor.swift; sourceTree = ""; }; - 8F856E39597F12A85F7948066E54C854 /* CDVPluginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginResult.m; sourceTree = ""; }; - 91B7DF04FCA45A91FEDC85A221AD96E3 /* CDVURLProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVURLProtocol.h; sourceTree = ""; }; + 80EC617BCD4EA95F9AAC9AB3CAA3B8E1 /* CapacitorBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorBridge.swift; path = Capacitor/Capacitor/CapacitorBridge.swift; sourceTree = ""; }; + 817499F6B220524F650005F03DD71B4A /* CDVURLProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVURLProtocol.h; sourceTree = ""; }; + 818851AD6AAAFD56B6C49CBB95831BD2 /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVInvokedUrlCommand.m; sourceTree = ""; }; + 83BE6CA12E14393F4ABE5A03E7C4021A /* CAPApplicationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPApplicationDelegateProxy.swift; path = Capacitor/Capacitor/CAPApplicationDelegateProxy.swift; sourceTree = ""; }; + 869C4EBBF812C9DF1DEC1E1C9A0414B6 /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVCommandDelegateImpl.m; sourceTree = ""; }; + 878E6794B11C0E8DC0D0272E0075D3DA /* HttpRequestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = HttpRequestHandler.swift; sourceTree = ""; }; + 8F944F7FF0C26D29173A8EF79812831C /* JS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JS.swift; path = Capacitor/Capacitor/JS.swift; sourceTree = ""; }; 939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-Info.plist"; sourceTree = ""; }; - 9438D4C381AF608ED6B61E9731AF7D52 /* CDVPluginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginResult.h; sourceTree = ""; }; - 94BC8F6F50496C70C80034B440843399 /* native-bridge.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "native-bridge.js"; path = "Capacitor/Capacitor/assets/native-bridge.js"; sourceTree = ""; }; - 973AF241B4A0D185C38D4C1D89146D2E /* TmpViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TmpViewController.swift; path = Capacitor/Capacitor/TmpViewController.swift; sourceTree = ""; }; - 97A8F6049F5C90B22E0B5261CA1A1CEB /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVInvokedUrlCommand.m; sourceTree = ""; }; - 9899DEB5773653D82EC30280A856F5D8 /* CDV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDV.h; sourceTree = ""; }; - 99C3872A1CAD980887E1549BD0943B6F /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + 95648C56D4E4ABD41EE8AF4CB2326B5B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = CapacitorCordova/CapacitorCordova/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 9B30FA46B72726BE8575E32C6D723774 /* CAPBridgedJSTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPBridgedJSTypes.m; path = Capacitor/Capacitor/CAPBridgedJSTypes.m; sourceTree = ""; }; + 9BC36ADDFA38A3661389DDA825FE5083 /* NotificationRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationRouter.swift; path = Capacitor/Capacitor/NotificationRouter.swift; sourceTree = ""; }; + 9BEB3F4052AFC1F272E8E569F38D99A8 /* Array+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Capacitor.swift"; path = "Capacitor/Capacitor/Array+Capacitor.swift"; sourceTree = ""; }; + 9D81585547EDB4B034BE2EA0D9D56208 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Capacitor/Capacitor/PrivacyInfo.xcprivacy; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A0D985C80C63BDFDA02B09FBDE5F6F5A /* Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Capacitor.h; path = Capacitor/Capacitor/Capacitor.h; sourceTree = ""; }; A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PluginTests-acknowledgements.markdown"; sourceTree = ""; }; - A7DB2F1D9C00BEB5A49E1B662D6A5826 /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+CordovaPreferences.h"; sourceTree = ""; }; - AE928583142A0127790196C32978CDD7 /* WKWebView+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Capacitor.swift"; path = "Capacitor/Capacitor/WKWebView+Capacitor.swift"; sourceTree = ""; }; - B194255CF17E6696C69110CD0FA2AE00 /* CAPBridgeProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeProtocol.swift; path = Capacitor/Capacitor/CAPBridgeProtocol.swift; sourceTree = ""; }; - B2AC61AD9C2A55021BB5CFF1DFAB5F31 /* Capacitor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.release.xcconfig; sourceTree = ""; }; + A43E09C2D3593E85EC9C672DACDC6B8E /* CAPInstanceDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceDescriptor.h; path = Capacitor/Capacitor/CAPInstanceDescriptor.h; sourceTree = ""; }; + AA4B6D6707D7C90A6A5A0F9BEBC93AAE /* CAPBridgeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeViewController.swift; path = Capacitor/Capacitor/CAPBridgeViewController.swift; sourceTree = ""; }; + AB23217D412C120E51CE4FC5F03A3527 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = CapacitorCordova.modulemap; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap; sourceTree = ""; }; + AC328445EC3EA24D0B0319746270406C /* CapacitorHttp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorHttp.swift; sourceTree = ""; }; + AD894B091F39A97912ACF4CFBC836D87 /* CAPInstanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceConfiguration.swift; path = Capacitor/Capacitor/CAPInstanceConfiguration.swift; sourceTree = ""; }; + B03A777C244FAEA1BE8CD3E9096CB41B /* CapacitorCordova.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.release.xcconfig; sourceTree = ""; }; + B31007A810171D345EEC4FA0BCB21CEA /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+CordovaPreferences.m"; sourceTree = ""; }; B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Plugin-dummy.m"; sourceTree = ""; }; - B5B6FAA9CD7CF7BC2965904592E3FB21 /* CDVViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVViewController.h; sourceTree = ""; }; - BD56E3A1FC02E4CAB1A22E44591AAE9F /* CAPBridgeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeViewController.swift; path = Capacitor/Capacitor/CAPBridgeViewController.swift; sourceTree = ""; }; - BE02544854A66F716ACD84BF3B666266 /* DefaultPlugins.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DefaultPlugins.m; sourceTree = ""; }; - C3C1FED267B007AB018162072F0FFACB /* JSExport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSExport.swift; path = Capacitor/Capacitor/JSExport.swift; sourceTree = ""; }; - C42C6129A97668947630DEE53AC8B00C /* Capacitor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capacitor-dummy.m"; sourceTree = ""; }; - C5392DA8BA05DC927BBE4377D550E4C5 /* CAPBridgeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeDelegate.swift; path = Capacitor/Capacitor/CAPBridgeDelegate.swift; sourceTree = ""; }; + B67934A6336DB96153F69F2885F7FE6A /* KeyValueStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyValueStore.swift; path = Capacitor/Capacitor/KeyValueStore.swift; sourceTree = ""; }; + B6ACD1E8895E541D2AAA00D1AA8A5366 /* CapacitorCordova.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.debug.xcconfig; sourceTree = ""; }; + B6DA0364646B8DAC5AC1996CA4DB6D82 /* PluginConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginConfig.swift; path = Capacitor/Capacitor/PluginConfig.swift; sourceTree = ""; }; + BA5F5DAE2C5394EEE17B9029808226AC /* CAPPluginCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginCall.m; path = Capacitor/Capacitor/CAPPluginCall.m; sourceTree = ""; }; + BA7554A812B86229C8EA5F6F81B321BC /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVScreenOrientationDelegate.h; sourceTree = ""; }; + BCF32033DAF5F1B50DB8C41C642EC0CB /* CAPPluginMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginMethod.h; path = Capacitor/Capacitor/CAPPluginMethod.h; sourceTree = ""; }; + C28B91C116136C7A64464B856666B322 /* CAPInstanceConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceConfiguration.h; path = Capacitor/Capacitor/CAPInstanceConfiguration.h; sourceTree = ""; }; + C6E3C256CDF6737FDBD363893A1A9631 /* Capacitor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Capacitor.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Plugin-acknowledgements.markdown"; sourceTree = ""; }; - C884AD703169070E1ED20C148D54E98E /* CDVPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPlugin.m; sourceTree = ""; }; - C88ECB67844150C67B39BE3857F87C82 /* Capacitor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Capacitor.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CBFF794A5CC25A9887165C3C1E852D71 /* CDVAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVAvailability.h; sourceTree = ""; }; - CDF62BBDBCE548AC20234C7C0856A4A3 /* CDVPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginManager.m; sourceTree = ""; }; - CED73FA9626598BDBA1F9A0576BF64E5 /* WKWebView+Capacitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+Capacitor.m"; path = "Capacitor/Capacitor/WKWebView+Capacitor.m"; sourceTree = ""; }; - CF8A5DFBE4BAC1D7F79270ECBB48A49F /* CDVPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginManager.h; sourceTree = ""; }; - D373D272C4F0754390425B6C2D7C55C2 /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+CordovaPreferences.m"; sourceTree = ""; }; - D6180BD9DE1B805E5CBB742404CADA85 /* CAPPluginMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginMethod.h; path = Capacitor/Capacitor/CAPPluginMethod.h; sourceTree = ""; }; + C9870CDDCF99B18DB64FE413BD355A33 /* Capacitor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capacitor-dummy.m"; sourceTree = ""; }; + CE0E983F534D35114FB10F2860CF307A /* CDVWebViewProcessPoolFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVWebViewProcessPoolFactory.m; sourceTree = ""; }; + CF80221FA9CE809EEE159B1AE2206780 /* CapacitorCordova-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CapacitorCordova-Info.plist"; sourceTree = ""; }; + D16D9D7D1D75407542D70F279BE858C5 /* PluginCallResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginCallResult.swift; path = Capacitor/Capacitor/PluginCallResult.swift; sourceTree = ""; }; + D270CA36CCC04D75B45920C620AEAE72 /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capacitor.modulemap; sourceTree = ""; }; + D3913FC61666E5D3FD73A8767928B4A8 /* JSValueDecoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = JSValueDecoder.swift; sourceTree = ""; }; + D500B14AFB8C0E709A9582A05B81F7EA /* CapacitorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorExtension.swift; path = Capacitor/Capacitor/CapacitorExtension.swift; sourceTree = ""; }; + D585E1B9BF72861652A5256F71241D37 /* Capacitor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.release.xcconfig; sourceTree = ""; }; + D675757DBDED4F579C45B611BB53DAC9 /* CapacitorCordova.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CapacitorCordova.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PluginTests-frameworks.sh"; sourceTree = ""; }; - D9648720A8052F0E56D560432C76A7D5 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegate.h; sourceTree = ""; }; + D73A20758871BEC6AB3CCAE68C74DBDA /* CAPLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPLog.swift; path = Capacitor/Capacitor/CAPLog.swift; sourceTree = ""; }; + D7539895D20B52CA8D5ADC3349621C52 /* DefaultPlugins.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DefaultPlugins.m; sourceTree = ""; }; + D81BE104344112B7A5C9F3A53EDE99A7 /* JSExport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSExport.swift; path = Capacitor/Capacitor/JSExport.swift; sourceTree = ""; }; DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.debug.xcconfig"; sourceTree = ""; }; - DCD977CA8BA8065F91A6AEC6083CEED7 /* PluginCallResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginCallResult.swift; path = Capacitor/Capacitor/PluginCallResult.swift; sourceTree = ""; }; - DF3224239F87FBEA5049A928AE30E1E6 /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = Capacitor.modulemap; path = Capacitor/Capacitor/Capacitor.modulemap; sourceTree = ""; }; - E0BC80EF9747F4599C8381B8347CCB82 /* NotificationRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationRouter.swift; path = Capacitor/Capacitor/NotificationRouter.swift; sourceTree = ""; }; - E1EB6209C8B02C54473D61CD4492F0FA /* CAPBridgedJSTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPBridgedJSTypes.m; path = Capacitor/Capacitor/CAPBridgedJSTypes.m; sourceTree = ""; }; - E6292AFB15F260AF63EE251721B8F855 /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVScreenOrientationDelegate.h; sourceTree = ""; }; + DBBDB22A2818944BBF894475E81CFFE6 /* WKWebView+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Capacitor.swift"; path = "Capacitor/Capacitor/WKWebView+Capacitor.swift"; sourceTree = ""; }; + DBDA16FB77D8D59DEB32CCFE8105EE7B /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVInvokedUrlCommand.h; sourceTree = ""; }; + DF1B07523853D822DC5BF0764E9EED19 /* Console.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Console.swift; sourceTree = ""; }; + E07B414D8F1B660835190464D21ABC10 /* JSValueEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = JSValueEncoder.swift; sourceTree = ""; }; + E5B59AC595CB35EA245E9B30141E6924 /* Router.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Router.swift; path = Capacitor/Capacitor/Router.swift; sourceTree = ""; }; + E836D3E3290079E51DDCB96D8A095942 /* CDVPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPlugin.m; sourceTree = ""; }; E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PluginTests.modulemap"; sourceTree = ""; }; - E9E14EB350C94307A2B401C182DC13F8 /* CAPApplicationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPApplicationDelegateProxy.swift; path = Capacitor/Capacitor/CAPApplicationDelegateProxy.swift; sourceTree = ""; }; - EF30828D2A95F82A624A96F90FC850DB /* DocLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocLinks.swift; path = Capacitor/Capacitor/DocLinks.swift; sourceTree = ""; }; - F04EA50B385D6BBAEC394DFD11DF150F /* CAPPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPlugin.m; path = Capacitor/Capacitor/CAPPlugin.m; sourceTree = ""; }; - F3C474CB34FA9B1FA6EE008AAF0CAE6B /* WebViewAssetHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewAssetHandler.swift; path = Capacitor/Capacitor/WebViewAssetHandler.swift; sourceTree = ""; }; - F4891D7A50EA2F25D9C5D38BCFBF16BE /* CapacitorCordova-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CapacitorCordova-dummy.m"; sourceTree = ""; }; - F4F3682BDC752B12A3E352B47B8D395E /* WebViewDelegationHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewDelegationHandler.swift; path = Capacitor/Capacitor/WebViewDelegationHandler.swift; sourceTree = ""; }; - FA2FF2AA12D2387B2321CB221F6BB462 /* CapacitorCordova.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.release.xcconfig; sourceTree = ""; }; - FB91AEA96D1E110DE156A15D75F532FC /* CAPLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPLog.swift; path = Capacitor/Capacitor/CAPLog.swift; sourceTree = ""; }; + E8B0050ADDF2B0F4CB17DE2B2B6DFC69 /* Capacitor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-prefix.pch"; sourceTree = ""; }; + E997E61FDD01E884BBF5AC59944653AB /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = Capacitor/Capacitor/UIColor.swift; sourceTree = ""; }; + ECE23228C63C46F0C4EEBEB40A001646 /* CAPBridgedPlugin+getMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPBridgedPlugin+getMethod.swift"; path = "Capacitor/Capacitor/CAPBridgedPlugin+getMethod.swift"; sourceTree = ""; }; + ECF24F4C1B1CD901AEC6C31DA750B980 /* CDVPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginManager.m; sourceTree = ""; }; + ED001DBFC4DFBFB5A051A6771A4BA01D /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = Capacitor.modulemap; path = Capacitor/Capacitor/Capacitor.modulemap; sourceTree = ""; }; + ED48CB5BF6D421A9CDA0C959348D407C /* DocLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocLinks.swift; path = Capacitor/Capacitor/DocLinks.swift; sourceTree = ""; }; + EFC7B9E1A25EB4AE22B2BFD76CE82545 /* CAPInstanceConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceConfiguration.m; path = Capacitor/Capacitor/CAPInstanceConfiguration.m; sourceTree = ""; }; + F1C958D69C29CFBBDC15C97C583F4B43 /* CAPPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPlugin.m; path = Capacitor/Capacitor/CAPPlugin.m; sourceTree = ""; }; + F57C5B609F6096ECA1A3472EB9598349 /* CAPPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPlugin.h; path = Capacitor/Capacitor/CAPPlugin.h; sourceTree = ""; }; + F58C13F718DDDF912C8D8F957ADC563C /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegateImpl.h; sourceTree = ""; }; + F7EA8211FDF54FE98FBAA044F3D7CEA0 /* CAPBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridge.swift; path = Capacitor/Capacitor/CAPBridge.swift; sourceTree = ""; }; + FAB754CF702177D045E75886784DDA40 /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+CordovaPreferences.h"; sourceTree = ""; }; + FB1AFA939CECAB029934DBC1EAF88742 /* CapacitorCordova-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CapacitorCordova-dummy.m"; sourceTree = ""; }; FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PluginTests-umbrella.h"; sourceTree = ""; }; - FDE169E193688F2B118E884DAA5214F1 /* CAPBridgedJSTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedJSTypes.h; path = Capacitor/Capacitor/CAPBridgedJSTypes.h; sourceTree = ""; }; + FE5DE9C8F410DA397F9857E73F8B90AF /* CDVConfigParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVConfigParser.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 09A3C8F5F4124EF39C11A4869ED86B43 /* Frameworks */ = { + 05729AFBFB8A784E74F2959F06661750 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E724A516A46988E9D8A1AC14E3EA7C12 /* Foundation.framework in Frameworks */, + 6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8DD0E3D29D0C940C1D86BABC522AD68D /* Frameworks */ = { + 2475EFD012C96C2FD58AC581A3DFB101 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4D466FA0AB55B7F08029203CCBA5251C /* Foundation.framework in Frameworks */, + 3D01AC7C1CA793317AB16617A9DD11BB /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9052B6CAB6E7D1A8A2908594F31B0E91 /* Frameworks */ = { + 9F36AB0F4A20E7C2854C74902E5B1CDE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3C03FEF86CD2377BE7E250B994AD5E55 /* Foundation.framework in Frameworks */, - D3F9BC38CD72826A2D88427CF295A248 /* WebKit.framework in Frameworks */, + 20C383017DD60D874C402ABB5CACB294 /* Foundation.framework in Frameworks */, + 004C4F22538FB423017F6D3FFE73C14C /* WebKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CBDE9369B406A9DBBF53C7FABC8637C2 /* Frameworks */ = { + FFD92798E00A88208723BEFC520C2C9A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D1A13181961652D4419985A2D4A50DD5 /* Cordova.framework in Frameworks */, - FF76A6BBC849C9348711284FDD3C2D05 /* Foundation.framework in Frameworks */, + FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0CC6DF1714CE5F55FDC909B844F8FC17 /* Pod */ = { + 0EC29E0DBDD1AA7F3CADB821A3286B96 /* Support Files */ = { isa = PBXGroup; children = ( - DF3224239F87FBEA5049A928AE30E1E6 /* Capacitor.modulemap */, - C88ECB67844150C67B39BE3857F87C82 /* Capacitor.podspec */, + 14A79D65A53F0511F9911570922C1B93 /* CapacitorCordova.modulemap */, + FB1AFA939CECAB029934DBC1EAF88742 /* CapacitorCordova-dummy.m */, + CF80221FA9CE809EEE159B1AE2206780 /* CapacitorCordova-Info.plist */, + 17115ED7528F1A0B61F0C52409715CA2 /* CapacitorCordova-prefix.pch */, + B6ACD1E8895E541D2AAA00D1AA8A5366 /* CapacitorCordova.debug.xcconfig */, + B03A777C244FAEA1BE8CD3E9096CB41B /* CapacitorCordova.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/CapacitorCordova"; sourceTree = ""; }; - 1A4A8B6DFE0A58742C7287259523DB34 /* Capacitor */ = { + 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = { isa = PBXGroup; children = ( - 228A7412F815F461E4451FE325997195 /* Array+Capacitor.swift */, - 5462299292DB6D87BF3D1C3360968BAC /* Capacitor.h */, - 326314CBCC6A46F60AAD6A489CD7E2E2 /* CapacitorBridge.swift */, - 05413C66D2924C82FEF3DA6178675F49 /* CapacitorExtension.swift */, - E9E14EB350C94307A2B401C182DC13F8 /* CAPApplicationDelegateProxy.swift */, - 20A5F74DF80FDD463647E8779400CD54 /* CAPBridge.swift */, - C5392DA8BA05DC927BBE4377D550E4C5 /* CAPBridgeDelegate.swift */, - FDE169E193688F2B118E884DAA5214F1 /* CAPBridgedJSTypes.h */, - E1EB6209C8B02C54473D61CD4492F0FA /* CAPBridgedJSTypes.m */, - 7FE7BF013ADAB7C0B2D96DBBC8956E70 /* CAPBridgedPlugin.h */, - B194255CF17E6696C69110CD0FA2AE00 /* CAPBridgeProtocol.swift */, - BD56E3A1FC02E4CAB1A22E44591AAE9F /* CAPBridgeViewController.swift */, - 29AE61FEA5F9E2C2BAEDD190F21C0BCE /* CAPFile.swift */, - 73A410402DED5088B29E69EE5514AE15 /* CAPInstanceConfiguration.h */, - 4774873848C5D78858B59C7D4D4D86BA /* CAPInstanceConfiguration.m */, - 259594D9059DD7CA0147CBB7D42B040F /* CAPInstanceConfiguration.swift */, - 2584ACC5D0A0F927E0150EB1520447B3 /* CAPInstanceDescriptor.h */, - 224D27C47930F36A3090010F0894B8E4 /* CAPInstanceDescriptor.m */, - 1F9B2F2B45BDA6FEB9A2B93EB50C3B40 /* CAPInstanceDescriptor.swift */, - FB91AEA96D1E110DE156A15D75F532FC /* CAPLog.swift */, - 7736BE3FAB559DDDDC06E29A79D5FEC4 /* CAPNotifications.swift */, - 0272EDE0885FC3237417C11ED1DDE147 /* CAPPlugin.h */, - F04EA50B385D6BBAEC394DFD11DF150F /* CAPPlugin.m */, - 757D279C19041742CA418BF1B58D2975 /* CAPPluginCall.h */, - 4ADBCF8B1E43E708226D10E45E20DA33 /* CAPPluginCall.m */, - 6D17028E99E451B6C3A12945D8F6F9E2 /* CAPPluginCall.swift */, - D6180BD9DE1B805E5CBB742404CADA85 /* CAPPluginMethod.h */, - 09A74E2096C28EC9108E885E3AF6485D /* CAPPluginMethod.m */, - 3C6A801DA47EA999E5F1DB1DE368CEE2 /* Data+Capacitor.swift */, - EF30828D2A95F82A624A96F90FC850DB /* DocLinks.swift */, - 27E218660728AF685654AB53FEB0790C /* JS.swift */, - C3C1FED267B007AB018162072F0FFACB /* JSExport.swift */, - 8378A307CB6FD0FE379D0950087AF331 /* JSTypes.swift */, - 1A28ED14F90B1269DC9ADC522A7E6079 /* KeyPath.swift */, - 94BC8F6F50496C70C80034B440843399 /* native-bridge.js */, - 53C2AF4B4FA5F460712B71EB94794677 /* NotificationHandlerProtocol.swift */, - E0BC80EF9747F4599C8381B8347CCB82 /* NotificationRouter.swift */, - DCD977CA8BA8065F91A6AEC6083CEED7 /* PluginCallResult.swift */, - 973AF241B4A0D185C38D4C1D89146D2E /* TmpViewController.swift */, - 8B3C68CAAB423D1996F1D3D5DABC0058 /* UIColor.swift */, - 88335C15F8AD0420AAFB44551CF961F1 /* UIStatusBarManager+CAPHandleTapAction.m */, - F3C474CB34FA9B1FA6EE008AAF0CAE6B /* WebViewAssetHandler.swift */, - F4F3682BDC752B12A3E352B47B8D395E /* WebViewDelegationHandler.swift */, - CED73FA9626598BDBA1F9A0576BF64E5 /* WKWebView+Capacitor.m */, - AE928583142A0127790196C32978CDD7 /* WKWebView+Capacitor.swift */, - D6EB4A009A11A2C1082D791DDAE0BE38 /* Plugins */, - 0CC6DF1714CE5F55FDC909B844F8FC17 /* Pod */, - 81C02531495D1E54B85E015112025CA5 /* Support Files */, + D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */, ); - name = Capacitor; - path = "../../node_modules/@capacitor/ios"; + name = Frameworks; sourceTree = ""; }; - 26D0A89AA5794E5DDF113C2B5B01B681 /* Pod */ = { + 21D8C95B1BEEF7A6D874CF3A60C0818A /* Plugins */ = { isa = PBXGroup; children = ( - 077994A1A3900D2BD5D57B4A4E4DB154 /* CapacitorCordova.modulemap */, - 2E16582420C463DB717C9E0D73A7008D /* CapacitorCordova.podspec */, + 4983F575EC8224716E5A6D6B3C5C2085 /* CapacitorCookieManager.swift */, + 24EF261844A690BDF4EC68C25C7A5589 /* CapacitorCookies.swift */, + AC328445EC3EA24D0B0319746270406C /* CapacitorHttp.swift */, + 3DF6B2974AF73F4D12D28B80AC5F36F5 /* CapacitorUrlRequest.swift */, + DF1B07523853D822DC5BF0764E9EED19 /* Console.swift */, + D7539895D20B52CA8D5ADC3349621C52 /* DefaultPlugins.m */, + 878E6794B11C0E8DC0D0272E0075D3DA /* HttpRequestHandler.swift */, + 0EC12A44AF93A0F42A7D7934B956E924 /* WebView.swift */, ); - name = Pod; + name = Plugins; + path = Capacitor/Capacitor/Plugins; sourceTree = ""; }; - 307CB8B2295E52DB05A59B3E4CA6EE13 /* CapacitorCordova */ = { + 740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */ = { isa = PBXGroup; children = ( - 1C1BC031D8270D9325AA38D495F5F55F /* CapacitorCordova.h */, - 721CADFEBC454D43203C2F21BEE4A253 /* Classes */, - 26D0A89AA5794E5DDF113C2B5B01B681 /* Pod */, - ED4D56F8E65840843DB750841561CFF4 /* Support Files */, + 8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */, + F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */, ); - name = CapacitorCordova; - path = "../../node_modules/@capacitor/ios"; + name = "Targets Support Files"; sourceTree = ""; }; - 51C6126C2347E652B6A4D3FEE59451BF /* Development Pods */ = { + 8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */ = { isa = PBXGroup; children = ( - 1A4A8B6DFE0A58742C7287259523DB34 /* Capacitor */, - 307CB8B2295E52DB05A59B3E4CA6EE13 /* CapacitorCordova */, + 401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */, + C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */, + 535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */, + B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */, + 11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */, + 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */, + DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */, + 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */, ); - name = "Development Pods"; + name = "Pods-Plugin"; + path = "Target Support Files/Pods-Plugin"; sourceTree = ""; }; - 5751801D79E9B5E4730ADC54EEA299E5 /* Frameworks */ = { + 8D9964217F2EEB12752C3B7E09079D20 /* Pod */ = { isa = PBXGroup; children = ( - 351CAFB01AE1CE21F3443E3CD9E750E4 /* Cordova.framework */, - AF7C994CA17138F9A3277B2C85314BF7 /* iOS */, + ED001DBFC4DFBFB5A051A6771A4BA01D /* Capacitor.modulemap */, + C6E3C256CDF6737FDBD363893A1A9631 /* Capacitor.podspec */, ); - name = Frameworks; + name = Pod; sourceTree = ""; }; - 721CADFEBC454D43203C2F21BEE4A253 /* Classes */ = { + A4E15BAF88F61EBE5480D5FC881F9152 /* Classes */ = { isa = PBXGroup; children = ( - 91789591598187BC0FDCEFA8DC724103 /* Public */, + B83E6620F8659B77710988289B2666DC /* Public */, ); name = Classes; path = CapacitorCordova/CapacitorCordova/Classes; sourceTree = ""; }; - 740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */ = { + B4641ABF5ECED9CF77DF2100CD120734 /* Codable */ = { isa = PBXGroup; children = ( - 8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */, - F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */, + D3913FC61666E5D3FD73A8767928B4A8 /* JSValueDecoder.swift */, + E07B414D8F1B660835190464D21ABC10 /* JSValueEncoder.swift */, ); - name = "Targets Support Files"; + name = Codable; + path = Capacitor/Capacitor/Codable; sourceTree = ""; }; - 81C02531495D1E54B85E015112025CA5 /* Support Files */ = { + B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */ = { isa = PBXGroup; children = ( - 82ACA1634A991117BB42EF93427F012A /* Capacitor.modulemap */, - C42C6129A97668947630DEE53AC8B00C /* Capacitor-dummy.m */, - 033DD9C20F86A20428C7E037EF84BAC8 /* Capacitor-Info.plist */, - 83D25575D8A4A2CAB87D46C3FAAB9C7E /* Capacitor-prefix.pch */, - 431B707ED1EACD50CA7897AEDAA65941 /* Capacitor.debug.xcconfig */, - B2AC61AD9C2A55021BB5CFF1DFAB5F31 /* Capacitor.release.xcconfig */, + 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */, + 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */, + 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */, + 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/Capacitor"; + name = Products; sourceTree = ""; }; - 8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */ = { + B80D21DD6B0715BE70978B3A57B6D882 /* assets */ = { isa = PBXGroup; children = ( - 401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */, - C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */, - 535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */, - B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */, - 11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */, - 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */, - DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */, - 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */, + 3CFD655E5956A08005DD5AA421862B8B /* native-bridge.js */, ); - name = "Pods-Plugin"; - path = "Target Support Files/Pods-Plugin"; + name = assets; + path = Capacitor/Capacitor/assets; sourceTree = ""; }; - 91789591598187BC0FDCEFA8DC724103 /* Public */ = { + B83E6620F8659B77710988289B2666DC /* Public */ = { isa = PBXGroup; children = ( - 82F54AB0A3EB28A9A3E7C0E1ADC8E104 /* AppDelegate.h */, - 99C3872A1CAD980887E1549BD0943B6F /* AppDelegate.m */, - 9899DEB5773653D82EC30280A856F5D8 /* CDV.h */, - CBFF794A5CC25A9887165C3C1E852D71 /* CDVAvailability.h */, - D9648720A8052F0E56D560432C76A7D5 /* CDVCommandDelegate.h */, - 56DD78BA92B7353B8B3BB1F6F58A4F1D /* CDVCommandDelegateImpl.h */, - 7257B3C47380D8735119213A42EDA057 /* CDVCommandDelegateImpl.m */, - 753FA7E4E1898E606667C44926366050 /* CDVConfigParser.h */, - 547E06B8E475EBD4BAA537795EA7C03C /* CDVConfigParser.m */, - 69C05BE54A54B295DFCB75097C76C44A /* CDVInvokedUrlCommand.h */, - 97A8F6049F5C90B22E0B5261CA1A1CEB /* CDVInvokedUrlCommand.m */, - 07C894BEB21ECB891BD48E75E7A9D5ED /* CDVPlugin.h */, - C884AD703169070E1ED20C148D54E98E /* CDVPlugin.m */, - 0B68C00D29C1A4757E5AE54EAF0BFB1F /* CDVPlugin+Resources.h */, - 04607C81321BD2B3E857C6B768D9D06A /* CDVPlugin+Resources.m */, - CF8A5DFBE4BAC1D7F79270ECBB48A49F /* CDVPluginManager.h */, - CDF62BBDBCE548AC20234C7C0856A4A3 /* CDVPluginManager.m */, - 9438D4C381AF608ED6B61E9731AF7D52 /* CDVPluginResult.h */, - 8F856E39597F12A85F7948066E54C854 /* CDVPluginResult.m */, - E6292AFB15F260AF63EE251721B8F855 /* CDVScreenOrientationDelegate.h */, - 91B7DF04FCA45A91FEDC85A221AD96E3 /* CDVURLProtocol.h */, - 0A8636238F54A50584A334033F8ACB06 /* CDVURLProtocol.m */, - B5B6FAA9CD7CF7BC2965904592E3FB21 /* CDVViewController.h */, - 88A82ED5E669FAA227EE7E11601AA1F9 /* CDVViewController.m */, - A7DB2F1D9C00BEB5A49E1B662D6A5826 /* NSDictionary+CordovaPreferences.h */, - D373D272C4F0754390425B6C2D7C55C2 /* NSDictionary+CordovaPreferences.m */, + 6ECB88325A202355935E8868FC704161 /* AppDelegate.h */, + 0105DDBA94BC8BCB737759E84AAE7208 /* AppDelegate.m */, + 5A35816AF163353BBA815B674518D5CC /* CDV.h */, + 563A77979ACFFB84A79E21335EB145D7 /* CDVAvailability.h */, + 493CF8B368FE667CC972900CC186E9C5 /* CDVCommandDelegate.h */, + F58C13F718DDDF912C8D8F957ADC563C /* CDVCommandDelegateImpl.h */, + 869C4EBBF812C9DF1DEC1E1C9A0414B6 /* CDVCommandDelegateImpl.m */, + 7660E6814B15B929A0F9F717B3D7AC68 /* CDVConfigParser.h */, + FE5DE9C8F410DA397F9857E73F8B90AF /* CDVConfigParser.m */, + DBDA16FB77D8D59DEB32CCFE8105EE7B /* CDVInvokedUrlCommand.h */, + 818851AD6AAAFD56B6C49CBB95831BD2 /* CDVInvokedUrlCommand.m */, + 0249BF2B4AD076B27532089B9CC0180D /* CDVPlugin.h */, + E836D3E3290079E51DDCB96D8A095942 /* CDVPlugin.m */, + 5D4E33F09D7E6EA708A393DCA9D6AFB9 /* CDVPlugin+Resources.h */, + 59D5E4DFE1C5C24A08DE24200E2D13A5 /* CDVPlugin+Resources.m */, + 77A1EAF35490B5AFF5FAAD95EB018E41 /* CDVPluginManager.h */, + ECF24F4C1B1CD901AEC6C31DA750B980 /* CDVPluginManager.m */, + 17715AB9228EA6E1D4F012B0CCEB33F5 /* CDVPluginResult.h */, + 4521DB3AF260E2133CBD36522DB7BA75 /* CDVPluginResult.m */, + BA7554A812B86229C8EA5F6F81B321BC /* CDVScreenOrientationDelegate.h */, + 817499F6B220524F650005F03DD71B4A /* CDVURLProtocol.h */, + 63CA49B9FEB6B4E88D6C824BE745A921 /* CDVURLProtocol.m */, + 2A1612702E201BE0983D534A6F9D071A /* CDVViewController.h */, + 3732370A43B40B615A6E2E0FA72E51C3 /* CDVViewController.m */, + 17AE58CD1ADD07DD9FEA88931D0F5D22 /* CDVWebViewProcessPoolFactory.h */, + CE0E983F534D35114FB10F2860CF307A /* CDVWebViewProcessPoolFactory.m */, + FAB754CF702177D045E75886784DDA40 /* NSDictionary+CordovaPreferences.h */, + B31007A810171D345EEC4FA0BCB21CEA /* NSDictionary+CordovaPreferences.m */, ); name = Public; path = Public; sourceTree = ""; }; - 919EFE202983ACA4B33E57FD8A2220D2 /* Products */ = { + C1BCDB7772E00B6E96DD04DCB861C56A /* Pod */ = { isa = PBXGroup; children = ( - 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor.framework */, - 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* Cordova.framework */, - 4B7B23985828F9D35ECCA1361A486792 /* Pods_Plugin.framework */, - 58DEAF78291AAC1E83073B9084B45542 /* Pods_PluginTests.framework */, + AB23217D412C120E51CE4FC5F03A3527 /* CapacitorCordova.modulemap */, + D675757DBDED4F579C45B611BB53DAC9 /* CapacitorCordova.podspec */, ); - name = Products; + name = Pod; sourceTree = ""; }; - AF7C994CA17138F9A3277B2C85314BF7 /* iOS */ = { + C2E0EED2785D3E2AE9B50BEA84028A28 /* Capacitor */ = { isa = PBXGroup; children = ( - 836AA53B08735CCA25FCBEB61ECE2D62 /* Foundation.framework */, - 15AE296986E7EA9099B1F1A3C0632470 /* WebKit.framework */, + 605CC094F300E6D3154759CD45B6FE93 /* AppUUID.swift */, + 9BEB3F4052AFC1F272E8E569F38D99A8 /* Array+Capacitor.swift */, + A0D985C80C63BDFDA02B09FBDE5F6F5A /* Capacitor.h */, + 80EC617BCD4EA95F9AAC9AB3CAA3B8E1 /* CapacitorBridge.swift */, + D500B14AFB8C0E709A9582A05B81F7EA /* CapacitorExtension.swift */, + 83BE6CA12E14393F4ABE5A03E7C4021A /* CAPApplicationDelegateProxy.swift */, + F7EA8211FDF54FE98FBAA044F3D7CEA0 /* CAPBridge.swift */, + 361CCAC6BE339CADD7B79EFF50187FBE /* CAPBridgeDelegate.swift */, + 034E099A6F68B36A4512A9AEB01F41C6 /* CAPBridgedJSTypes.h */, + 9B30FA46B72726BE8575E32C6D723774 /* CAPBridgedJSTypes.m */, + 1B26A9DFA84BEC3CE4BCC5439C97FEB5 /* CAPBridgedPlugin.h */, + ECE23228C63C46F0C4EEBEB40A001646 /* CAPBridgedPlugin+getMethod.swift */, + 4482B770B243ABA1FB534B9EF3183997 /* CAPBridgeProtocol.swift */, + AA4B6D6707D7C90A6A5A0F9BEBC93AAE /* CAPBridgeViewController.swift */, + 11E4D3210F27C4592CE89FEB3DBAE96A /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */, + 4C006AC3D0821275FCF555E6E934B840 /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */, + 100A2F7039C5EC78463F4B6D919C0027 /* CAPFile.swift */, + C28B91C116136C7A64464B856666B322 /* CAPInstanceConfiguration.h */, + EFC7B9E1A25EB4AE22B2BFD76CE82545 /* CAPInstanceConfiguration.m */, + AD894B091F39A97912ACF4CFBC836D87 /* CAPInstanceConfiguration.swift */, + A43E09C2D3593E85EC9C672DACDC6B8E /* CAPInstanceDescriptor.h */, + 1D3A58AC532D2AA4F4ED2A1732DB89F4 /* CAPInstanceDescriptor.m */, + 548629F623A47EB37EE3410159EA22AF /* CAPInstanceDescriptor.swift */, + 649B5A19BF47F4CDA5DCCFF2C64B57EA /* CAPInstancePlugin.swift */, + D73A20758871BEC6AB3CCAE68C74DBDA /* CAPLog.swift */, + 7E0E0F34AC2147857612A52C22DC6AD2 /* CAPNotifications.swift */, + F57C5B609F6096ECA1A3472EB9598349 /* CAPPlugin.h */, + F1C958D69C29CFBBDC15C97C583F4B43 /* CAPPlugin.m */, + 4197ED0A91C1D7947BA5FBB380806250 /* CAPPlugin+LoadInstance.swift */, + 05FEE9BE906E5FD3A2023A19D663CC35 /* CAPPluginCall.h */, + BA5F5DAE2C5394EEE17B9029808226AC /* CAPPluginCall.m */, + 6015C26B0D7D81331053C8F88F8DDC33 /* CAPPluginCall.swift */, + BCF32033DAF5F1B50DB8C41C642EC0CB /* CAPPluginMethod.h */, + 1A5E6150D9FC87A26CC0986391626019 /* CAPPluginMethod.m */, + 5985DDA358070FD5E8E0924F7B21993B /* Data+Capacitor.swift */, + ED48CB5BF6D421A9CDA0C959348D407C /* DocLinks.swift */, + 8F944F7FF0C26D29173A8EF79812831C /* JS.swift */, + D81BE104344112B7A5C9F3A53EDE99A7 /* JSExport.swift */, + 529064D5D9025BE6A79DE45A25CF473C /* JSTypes.swift */, + 3B9E8896A248D0A3B628BE972B7A4486 /* KeyPath.swift */, + B67934A6336DB96153F69F2885F7FE6A /* KeyValueStore.swift */, + 2F11C8BC6D3CB7B817842AA9AFAC48F4 /* NotificationHandlerProtocol.swift */, + 9BC36ADDFA38A3661389DDA825FE5083 /* NotificationRouter.swift */, + D16D9D7D1D75407542D70F279BE858C5 /* PluginCallResult.swift */, + B6DA0364646B8DAC5AC1996CA4DB6D82 /* PluginConfig.swift */, + 9D81585547EDB4B034BE2EA0D9D56208 /* PrivacyInfo.xcprivacy */, + E5B59AC595CB35EA245E9B30141E6924 /* Router.swift */, + 058355C86F3D67F2B6321DC4E1FC10A1 /* TmpViewController.swift */, + E997E61FDD01E884BBF5AC59944653AB /* UIColor.swift */, + 3763CB8B63738A487F25B9D159EDF8DE /* UIStatusBarManager+CAPHandleTapAction.m */, + 467FCC173510CF0FC276F6532D770907 /* WebViewAssetHandler.swift */, + 512101D8B0690EC4264E4026595E6C09 /* WebViewDelegationHandler.swift */, + 5E899B1AC03689EDAC12449B726FB334 /* WKWebView+Capacitor.m */, + DBBDB22A2818944BBF894475E81CFFE6 /* WKWebView+Capacitor.swift */, + B80D21DD6B0715BE70978B3A57B6D882 /* assets */, + B4641ABF5ECED9CF77DF2100CD120734 /* Codable */, + 21D8C95B1BEEF7A6D874CF3A60C0818A /* Plugins */, + 8D9964217F2EEB12752C3B7E09079D20 /* Pod */, + EEDD3C1FCC1C3B500A707B1DEE6A16D1 /* Support Files */, ); - name = iOS; + name = Capacitor; + path = "../../node_modules/@capacitor/ios"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 51C6126C2347E652B6A4D3FEE59451BF /* Development Pods */, - 5751801D79E9B5E4730ADC54EEA299E5 /* Frameworks */, - 919EFE202983ACA4B33E57FD8A2220D2 /* Products */, + FBC934EFED6A2BB758D83B692683C295 /* Development Pods */, + 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */, + B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */, 740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */, ); sourceTree = ""; }; - D6EB4A009A11A2C1082D791DDAE0BE38 /* Plugins */ = { + D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */ = { isa = PBXGroup; children = ( - 27E31F574D20E1A45B278CF15DACBF87 /* Console.swift */, - BE02544854A66F716ACD84BF3B666266 /* DefaultPlugins.m */, - 5137440B78072CBE4B534CC08BAA964B /* WebView.swift */, + 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */, + 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */, ); - name = Plugins; - path = Capacitor/Capacitor/Plugins; + name = iOS; + sourceTree = ""; + }; + DA9DD59DAD49D440C669BDA0491F4FDC /* CapacitorCordova */ = { + isa = PBXGroup; + children = ( + 703752F658D442F244EA452FB74965B3 /* CapacitorCordova.h */, + 95648C56D4E4ABD41EE8AF4CB2326B5B /* PrivacyInfo.xcprivacy */, + A4E15BAF88F61EBE5480D5FC881F9152 /* Classes */, + C1BCDB7772E00B6E96DD04DCB861C56A /* Pod */, + 0EC29E0DBDD1AA7F3CADB821A3286B96 /* Support Files */, + ); + name = CapacitorCordova; + path = "../../node_modules/@capacitor/ios"; sourceTree = ""; }; - ED4D56F8E65840843DB750841561CFF4 /* Support Files */ = { + EEDD3C1FCC1C3B500A707B1DEE6A16D1 /* Support Files */ = { isa = PBXGroup; children = ( - 3E801063595059575D0B391FADD3DA04 /* CapacitorCordova.modulemap */, - F4891D7A50EA2F25D9C5D38BCFBF16BE /* CapacitorCordova-dummy.m */, - 6E2E6F8057BB4DED329265F86F1CE694 /* CapacitorCordova-Info.plist */, - 62267BBBB4B8E2C546F5A02D1B599C38 /* CapacitorCordova-prefix.pch */, - 755B65C6FD27E3DF64700E7A4D76CC43 /* CapacitorCordova.debug.xcconfig */, - FA2FF2AA12D2387B2321CB221F6BB462 /* CapacitorCordova.release.xcconfig */, + D270CA36CCC04D75B45920C620AEAE72 /* Capacitor.modulemap */, + C9870CDDCF99B18DB64FE413BD355A33 /* Capacitor-dummy.m */, + 2016A734CA851674602290F66A762B63 /* Capacitor-Info.plist */, + E8B0050ADDF2B0F4CB17DE2B2B6DFC69 /* Capacitor-prefix.pch */, + 50F35474E793D3079F51A1423D50322D /* Capacitor.debug.xcconfig */, + D585E1B9BF72861652A5256F71241D37 /* Capacitor.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/CapacitorCordova"; + path = "../../../ios/Pods/Target Support Files/Capacitor"; sourceTree = ""; }; F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */ = { @@ -550,60 +615,71 @@ path = "Target Support Files/Pods-PluginTests"; sourceTree = ""; }; + FBC934EFED6A2BB758D83B692683C295 /* Development Pods */ = { + isa = PBXGroup; + children = ( + C2E0EED2785D3E2AE9B50BEA84028A28 /* Capacitor */, + DA9DD59DAD49D440C669BDA0491F4FDC /* CapacitorCordova */, + ); + name = "Development Pods"; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 475CE1087B96CFF5B7744F593F876A5B /* Headers */ = { + 357AD0DC2A6B38717F8E766B14F7B904 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 468A5AEB62B840DE4FA37362A9DF2C08 /* AppDelegate.h in Headers */, - DA184EDA068A7BA46D942185FCDBF9B9 /* CapacitorCordova.h in Headers */, - DF8132C7D3EA3A6553F531E5ED64FEB4 /* CDV.h in Headers */, - 4EFF1BD3A8260B91CAF037823842BBB3 /* CDVAvailability.h in Headers */, - 6488C770CBBB0828CF94451F1295DE33 /* CDVCommandDelegate.h in Headers */, - 1A060CE86A091D3EEF5B9DC62422F0ED /* CDVCommandDelegateImpl.h in Headers */, - 374DF18A0AB501539B27F0804775EEE3 /* CDVConfigParser.h in Headers */, - 69ED692C3661ED2D697FCD18BE3BB293 /* CDVInvokedUrlCommand.h in Headers */, - F4F48D65E486B68C0E4214C0EA9F63D0 /* CDVPlugin+Resources.h in Headers */, - 8498CB3496D0F75CECFCCCDF9FF75060 /* CDVPlugin.h in Headers */, - BBAA50DB7098BC61FCF1E36CEA4A138E /* CDVPluginManager.h in Headers */, - CD56259A9E56096B41B86B49E3EE1975 /* CDVPluginResult.h in Headers */, - F40C385F431234428AE05B1B242E1E26 /* CDVScreenOrientationDelegate.h in Headers */, - AC09991398E17476A43D65B8ABCEF358 /* CDVURLProtocol.h in Headers */, - 8C84E041EA4F0A459545DFB43E3C00A5 /* CDVViewController.h in Headers */, - 9228CFD5AF5CB170A23EB3FD88B68053 /* NSDictionary+CordovaPreferences.h in Headers */, + CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5AE0177F2D6CEB6AEFD1EA484AEAFB0D /* Headers */ = { + 5B76843AC2211CFD3C4CA49D7B066789 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4D608C658BC201BBEE91F69B958823DF /* Capacitor.h in Headers */, - 68E2C6447167E330558395977CB2E780 /* CAPBridgedJSTypes.h in Headers */, - FA3D0C2E2A26DFD3E1511779A1D88416 /* CAPBridgedPlugin.h in Headers */, - EFF760D90435BF8143068D2C0DCE83EC /* CAPInstanceConfiguration.h in Headers */, - 700B2DE3F5F11EFF5E3DFD96F215C5A0 /* CAPInstanceDescriptor.h in Headers */, - D41DCF444EF70F231C80908C4CAD4F32 /* CAPPlugin.h in Headers */, - 5FA049F3FA4895388E9A9AB4839C87F0 /* CAPPluginCall.h in Headers */, - A8EE1E2C94EB91057BD7E9B46B2B12D3 /* CAPPluginMethod.h in Headers */, + 142783A77B0BCD39ACA638C7616B7590 /* Capacitor.h in Headers */, + 89A06DC4CD3EA89BF204A2CDA9D2CCD2 /* CAPBridgedJSTypes.h in Headers */, + B7C447AB9B733756A83AB5CBF8955D51 /* CAPBridgedPlugin.h in Headers */, + C9959E6883AECA98699D97C111B848BE /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */, + 007332F2DA13525BDCD4BB0D9217C082 /* CAPInstanceConfiguration.h in Headers */, + 77D5F245A53ED2E142D192EC906C9BDD /* CAPInstanceDescriptor.h in Headers */, + AB17672B62071DD8AF3B828ACA2A06CF /* CAPPlugin.h in Headers */, + FA6644FB90B4E42DB0545F3D7A09B57C /* CAPPluginCall.h in Headers */, + 2AF9E9A11AD1017E49BA04DD1755F973 /* CAPPluginMethod.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A953780CDA48BDE68004900C0CCA4018 /* Headers */ = { + CD0146D9209B52D85411E99B60EE90BD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D3163A29F47496C92C285BAB100712F6 /* Pods-Plugin-umbrella.h in Headers */, + 107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - E8F4EDAD91B05621E3A008E10C01D6C7 /* Headers */ = { + E0B693BAAD95DD41A52C866CD0F55A59 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2AB272ED56FC6910939BE6B452236537 /* Pods-PluginTests-umbrella.h in Headers */, + 602CA89D2AFC32364AB75D3E23584F85 /* AppDelegate.h in Headers */, + D21C0C1FD43A127545AB04DA0D973B9F /* CapacitorCordova.h in Headers */, + 8E82A22CAF83901CBB8A031975682220 /* CDV.h in Headers */, + D6B9AA063A55F4740584DC116856376A /* CDVAvailability.h in Headers */, + DCEF4D9160ED4C83DC84EC0147EEE362 /* CDVCommandDelegate.h in Headers */, + DCEFD0A9F478BD16D6104CA85498985C /* CDVCommandDelegateImpl.h in Headers */, + 136C825401170BA53C5DBC33D29BCC0C /* CDVConfigParser.h in Headers */, + 4480D816F7E74A1DE8D7BA3EEC3DDA03 /* CDVInvokedUrlCommand.h in Headers */, + 30CFE9B13BD3AE4A1A0375995E6DCA32 /* CDVPlugin.h in Headers */, + CF1C6A66DAA0660D44D2B80800DBAB33 /* CDVPlugin+Resources.h in Headers */, + 0B7C98AF45BEF701EAD5C8815B45D8B0 /* CDVPluginManager.h in Headers */, + F5632525E3850D9B12B0EF8773154518 /* CDVPluginResult.h in Headers */, + F0C3D26913201077F0945BAF0DBE9F81 /* CDVScreenOrientationDelegate.h in Headers */, + 9345D58CFFA52039FF0CA0A01C12437E /* CDVURLProtocol.h in Headers */, + 24B85D70EC6F01401534D1273B91C779 /* CDVViewController.h in Headers */, + D42968908E87092201B32918E08C5D56 /* CDVWebViewProcessPoolFactory.h in Headers */, + 51A93B31DD8A7E82116B06380D00B0FA /* NSDictionary+CordovaPreferences.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -612,79 +688,79 @@ /* Begin PBXNativeTarget section */ 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */ = { isa = PBXNativeTarget; - buildConfigurationList = 53E9DD6002DE072769D611D461AEE654 /* Build configuration list for PBXNativeTarget "Capacitor" */; + buildConfigurationList = 50BDF9FF4E97C44A6D53189007395F6E /* Build configuration list for PBXNativeTarget "Capacitor" */; buildPhases = ( - 5AE0177F2D6CEB6AEFD1EA484AEAFB0D /* Headers */, - 4FF670F22F0A8A0EEB66D8E6A152DE4A /* Sources */, - CBDE9369B406A9DBBF53C7FABC8637C2 /* Frameworks */, - 79B026AD1E80A27C927E0B7336C814FC /* Resources */, + 5B76843AC2211CFD3C4CA49D7B066789 /* Headers */, + 18D603B8FCA13BFCBC5A7A55F857E05A /* Sources */, + 2475EFD012C96C2FD58AC581A3DFB101 /* Frameworks */, + 109B50B70F236FFE8A9C17D81F72300F /* Resources */, ); buildRules = ( ); dependencies = ( - D6A08B1DDF5AEAA1475B46B18EFEB85F /* PBXTargetDependency */, + 36A6CA4CFF833BC9EFE561F8ED530A98 /* PBXTargetDependency */, ); name = Capacitor; productName = Capacitor; - productReference = 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor.framework */; + productReference = 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */; productType = "com.apple.product-type.framework"; }; 10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */ = { isa = PBXNativeTarget; - buildConfigurationList = 09FD18F5BBC7A6F8DFF5B93E0D0B902C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */; + buildConfigurationList = 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */; buildPhases = ( - A953780CDA48BDE68004900C0CCA4018 /* Headers */, - B14F80712DD87D9241BA8B2A6854B733 /* Sources */, - 8DD0E3D29D0C940C1D86BABC522AD68D /* Frameworks */, - 5CBA657C6F0373FFD1BC78EC553AEC90 /* Resources */, + 357AD0DC2A6B38717F8E766B14F7B904 /* Headers */, + CE7D9667E8CB083330F25DBA1A121614 /* Sources */, + 05729AFBFB8A784E74F2959F06661750 /* Frameworks */, + 66F8DAFC08A88AE635AABEADC89F9782 /* Resources */, ); buildRules = ( ); dependencies = ( - ECA9F2ADA299239963AC63C0418682E4 /* PBXTargetDependency */, - 30115D57383ABDEDD4B7DEA2E7B8A483 /* PBXTargetDependency */, + C5C2CE29C2B3BC6251EB841729570B1D /* PBXTargetDependency */, + 6539498AA6E443FC38537878F4C7095D /* PBXTargetDependency */, ); name = "Pods-Plugin"; - productName = "Pods-Plugin"; - productReference = 4B7B23985828F9D35ECCA1361A486792 /* Pods_Plugin.framework */; + productName = Pods_Plugin; + productReference = 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */; productType = "com.apple.product-type.framework"; }; 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */ = { isa = PBXNativeTarget; - buildConfigurationList = 446F5D051358396BA8BF23D3061E7DCE /* Build configuration list for PBXNativeTarget "CapacitorCordova" */; + buildConfigurationList = FADBACD7C14A2FFE129C347C8B6722FD /* Build configuration list for PBXNativeTarget "CapacitorCordova" */; buildPhases = ( - 475CE1087B96CFF5B7744F593F876A5B /* Headers */, - 8997513138D87B28254D01B171436E22 /* Sources */, - 9052B6CAB6E7D1A8A2908594F31B0E91 /* Frameworks */, - 85BE7EDECBB9C0EA77A0C67E91C06F19 /* Resources */, + E0B693BAAD95DD41A52C866CD0F55A59 /* Headers */, + E3D8E3EE976DDC21D94135C3F889D63D /* Sources */, + 9F36AB0F4A20E7C2854C74902E5B1CDE /* Frameworks */, + 39F333FCB7DE436548135736C64BA759 /* Resources */, ); buildRules = ( ); dependencies = ( ); name = CapacitorCordova; - productName = CapacitorCordova; - productReference = 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* Cordova.framework */; + productName = Cordova; + productReference = 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */; productType = "com.apple.product-type.framework"; }; 401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */ = { isa = PBXNativeTarget; - buildConfigurationList = D20AE74F6B1887F3F68497742C61710A /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */; + buildConfigurationList = 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */; buildPhases = ( - E8F4EDAD91B05621E3A008E10C01D6C7 /* Headers */, - 8474CD88FA624CACA08D3037A2616079 /* Sources */, - 09A3C8F5F4124EF39C11A4869ED86B43 /* Frameworks */, - 0D1695535A6A4265C0BCAAB7801E1AB8 /* Resources */, + CD0146D9209B52D85411E99B60EE90BD /* Headers */, + CFFDE113260979B402C1E4C5B825B6C1 /* Sources */, + FFD92798E00A88208723BEFC520C2C9A /* Frameworks */, + 35B229A540F02FD5EB6A4690A3C8F305 /* Resources */, ); buildRules = ( ); dependencies = ( - DABF856313E8E966AE09E9B6D43F25DB /* PBXTargetDependency */, - 3D072D3934ACD356B9C73DE7EB9C7B88 /* PBXTargetDependency */, + 82C2E4ED0DC4575973A6533EDFC52B06 /* PBXTargetDependency */, + 3C9530C00AC7121575BA0E30A1BD8B51 /* PBXTargetDependency */, ); name = "Pods-PluginTests"; - productName = "Pods-PluginTests"; - productReference = 58DEAF78291AAC1E83073B9084B45542 /* Pods_PluginTests.framework */; + productName = Pods_PluginTests; + productReference = 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -693,19 +769,19 @@ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 1100; - LastUpgradeCheck = 1100; + LastSwiftUpdateCheck = 1500; + LastUpgradeCheck = 1500; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 8.0"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( - en, Base, + en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 919EFE202983ACA4B33E57FD8A2220D2 /* Products */; + productRefGroup = B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -718,29 +794,31 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 0D1695535A6A4265C0BCAAB7801E1AB8 /* Resources */ = { + 109B50B70F236FFE8A9C17D81F72300F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + AF380203CBC71D9326A854FFBAFFEA20 /* native-bridge.js in Resources */, + 5C4B7DA3F5EE52C88BCECDFE28DB4FFD /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5CBA657C6F0373FFD1BC78EC553AEC90 /* Resources */ = { + 35B229A540F02FD5EB6A4690A3C8F305 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 79B026AD1E80A27C927E0B7336C814FC /* Resources */ = { + 39F333FCB7DE436548135736C64BA759 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 551EBC32194FBE23733D7B3BDA23A579 /* native-bridge.js in Resources */, + B12EB58090BBCD95C6BEE4A15BEEE8A2 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85BE7EDECBB9C0EA77A0C67E91C06F19 /* Resources */ = { + 66F8DAFC08A88AE635AABEADC89F9782 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -750,127 +828,143 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 4FF670F22F0A8A0EEB66D8E6A152DE4A /* Sources */ = { + 18D603B8FCA13BFCBC5A7A55F857E05A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 382BFEEDDC2E721A70BB1E15B6F81082 /* Array+Capacitor.swift in Sources */, - C3A52879FEE5E3AE4401F27AB5549F3E /* Capacitor-dummy.m in Sources */, - 39EAC7FC72257789A186C94C42CBF2A8 /* CapacitorBridge.swift in Sources */, - 7B3DEF85DB16CE34CCA902AF537DD15C /* CapacitorExtension.swift in Sources */, - 71D433DD915264828C90916B11D853F2 /* CAPApplicationDelegateProxy.swift in Sources */, - 0D3566A2ADC9F79D8EEB8DE27A7E716F /* CAPBridge.swift in Sources */, - BA82ACEA05BBA42C98C9D217B6F8C6B4 /* CAPBridgeDelegate.swift in Sources */, - 0DA458458BDC684E60AD892D86369EF1 /* CAPBridgedJSTypes.m in Sources */, - FBA69B3C93B341FE15041A418EE404E4 /* CAPBridgeProtocol.swift in Sources */, - F8899F9C17A0C3ADD5C2A57BA41778BE /* CAPBridgeViewController.swift in Sources */, - CCF5E1779D6C74665498E98124D9906A /* CAPFile.swift in Sources */, - B7D88807138FC0B29BC9A084E97D6E1B /* CAPInstanceConfiguration.m in Sources */, - D0407B6149DBA02CE356E66052990964 /* CAPInstanceConfiguration.swift in Sources */, - 4962425599CB1739B4D1D6A892B442BA /* CAPInstanceDescriptor.m in Sources */, - AF233EFEBC6635C458D4C0C79FB6AF06 /* CAPInstanceDescriptor.swift in Sources */, - EFDFF4FBFECBA30BFCF1D1EB8C284618 /* CAPLog.swift in Sources */, - 5E527012AEE124134F83A3FC457AE9B6 /* CAPNotifications.swift in Sources */, - BF4B5579588E0226B42996A78B400B5B /* CAPPlugin.m in Sources */, - EA8C4A8C65EEF3608154ABCA64701D91 /* CAPPluginCall.m in Sources */, - F6CA45FB50AE58F753AEB4A6F478668E /* CAPPluginCall.swift in Sources */, - 16227A369B90157996D8074B1ED61FDB /* CAPPluginMethod.m in Sources */, - D56971D0556595CA3C3B80246CFC8FFC /* Console.swift in Sources */, - 2D35407322EC5E4C7016C7545B47E3CD /* Data+Capacitor.swift in Sources */, - 3F75F56198130371531ED9AD8326F95E /* DefaultPlugins.m in Sources */, - 4C3EB121BEFA62734DA9136B990EC7AE /* DocLinks.swift in Sources */, - BFCA977C906943E556F84B35BBA2967E /* JS.swift in Sources */, - DD4305A5CCACEB2DCC711D8A004B1B37 /* JSExport.swift in Sources */, - 645B12B9D7A123A5E738E7842BFFFCCA /* JSTypes.swift in Sources */, - F7C407CFE49DEBB2A85FCD3A3F7B9717 /* KeyPath.swift in Sources */, - A0BBF05E1B6E767C508701D369E00982 /* NotificationHandlerProtocol.swift in Sources */, - 5276FB0E6CA2197F8FD490CC62499AF6 /* NotificationRouter.swift in Sources */, - BD070AD6B7BEA1182F6468C4207C685B /* PluginCallResult.swift in Sources */, - AF74BAEFC1053220434F90DCE2782156 /* TmpViewController.swift in Sources */, - B9F8C678D7A580C3E2F9883B82B5D500 /* UIColor.swift in Sources */, - D21A2CF9D0BF44BFABF2D1857AE9DF62 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */, - DAEEB9DB518E23155D112F5780896F85 /* WebView.swift in Sources */, - 53F59129F7215246AFFBA6B03017BC5F /* WebViewAssetHandler.swift in Sources */, - 4F8A46149AE216A25CD9D9A3C5049A42 /* WebViewDelegationHandler.swift in Sources */, - 2659D172DF2EA3A77F0F7B2BA517CEEA /* WKWebView+Capacitor.m in Sources */, - 583E77463CD7B22642DC33F45C449F1C /* WKWebView+Capacitor.swift in Sources */, + 35E00E9BF306043F7FDD264DE34AB9F4 /* AppUUID.swift in Sources */, + A012D5C61788DC241D5E148E634FE3FB /* Array+Capacitor.swift in Sources */, + DE1988CA56CDB224E00A7068E06A04A7 /* Capacitor-dummy.m in Sources */, + EB322C3380F009848AF6511F4858F9D9 /* CapacitorBridge.swift in Sources */, + 4A1BF88F562C5FA3F9B4CB0902DF33D1 /* CapacitorCookieManager.swift in Sources */, + 583FC5AAB1304E425B197DF26F25D41B /* CapacitorCookies.swift in Sources */, + 92490B93A65F1C1F2BD9B5FFB8C89F0E /* CapacitorExtension.swift in Sources */, + F191FCB79EA5BB53498817DE20EBF993 /* CapacitorHttp.swift in Sources */, + 624D4949CC249D74527F83519B9E1E45 /* CapacitorUrlRequest.swift in Sources */, + DC41EEBFD999626E3ABFDBA460D39785 /* CAPApplicationDelegateProxy.swift in Sources */, + 81D62137DA55FF11497B548EAE98B507 /* CAPBridge.swift in Sources */, + 4B397AA425A96914BF3A9225C03F4C27 /* CAPBridgeDelegate.swift in Sources */, + 336C399F569FC3DF9C164516877B7876 /* CAPBridgedJSTypes.m in Sources */, + 1AB31E21DFBCD2B194FF8DDFA8B54E01 /* CAPBridgedPlugin+getMethod.swift in Sources */, + 31B7196B31CACDD9CA75FA7141EA0BC3 /* CAPBridgeProtocol.swift in Sources */, + FE98DE71F4C58B1551E592A736A1D842 /* CAPBridgeViewController.swift in Sources */, + 7EF85F102CBA9740526D6D28DB460A4A /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */, + 157C54DE30FCA6DDE564B4F31F2F9D1A /* CAPFile.swift in Sources */, + 1580760D6B655273CE4B6EC30CE13967 /* CAPInstanceConfiguration.m in Sources */, + 9029F7FF8A60F804DA5FA6E0432E05A4 /* CAPInstanceConfiguration.swift in Sources */, + 2A217CF4403DECC0FB30126EDFC62646 /* CAPInstanceDescriptor.m in Sources */, + 5B6D495147727CA78DB75137A96D6825 /* CAPInstanceDescriptor.swift in Sources */, + 234551D449CFF841B0B3FABFF256F3C2 /* CAPInstancePlugin.swift in Sources */, + 86526A3802BF6EB9517E79C70978D5A2 /* CAPLog.swift in Sources */, + 1CD2BABBDB188E322DA0794B6780D680 /* CAPNotifications.swift in Sources */, + F6A8F1B557CCFF05DD6D95A05EE7634D /* CAPPlugin.m in Sources */, + DDF6E51141FC9199E5D8791C4F834089 /* CAPPlugin+LoadInstance.swift in Sources */, + D3AAA99BB323C5A79F159677E7BDAE14 /* CAPPluginCall.m in Sources */, + 5039CE8F3227519F11BFE0BD1D277D82 /* CAPPluginCall.swift in Sources */, + 0B47E8AF45DA0A8FEA229DCCFD0F0B87 /* CAPPluginMethod.m in Sources */, + C8104AD6B8FFF94FD4582463DF8939D5 /* Console.swift in Sources */, + CA8874EB314C2E50D873D5E93EBA4802 /* Data+Capacitor.swift in Sources */, + 6B6BB26E4D9C61A8C7A17D5D5477917D /* DefaultPlugins.m in Sources */, + 33DB35A72EB4D687E0C0B8160FBBBCF2 /* DocLinks.swift in Sources */, + A19EA29DE056A789B50027BFD218CE55 /* HttpRequestHandler.swift in Sources */, + F2598AF55CD2EC5E49370998206F9920 /* JS.swift in Sources */, + 202A37BE65C32896AB0996E796E6894D /* JSExport.swift in Sources */, + C1886D9428CBFB717587D49E5C4F2C9C /* JSTypes.swift in Sources */, + 75DC2E1CEC8456ABAFFE24C9C7BC2565 /* JSValueDecoder.swift in Sources */, + 5074F79461C81172A55FF16BB21D6DEC /* JSValueEncoder.swift in Sources */, + 3809BCF163CF2FC0837313B28820A5E7 /* KeyPath.swift in Sources */, + 9763D8A87E0A07883DFA4D9D726E1179 /* KeyValueStore.swift in Sources */, + 7AE5591CB842463FE3B4BCA3D35A364E /* NotificationHandlerProtocol.swift in Sources */, + 03DF725C5D1860D81E0223539BAE6DDD /* NotificationRouter.swift in Sources */, + CD3F76C13D34FE50163B8C07A6367A94 /* PluginCallResult.swift in Sources */, + C0105CF2ED68075E8E93BC243FBE88D9 /* PluginConfig.swift in Sources */, + C9A6023275736982767D2C80866EEE21 /* Router.swift in Sources */, + 0A5D6115B33EAF8DFEBC49B86C5BC97F /* TmpViewController.swift in Sources */, + 118640F64F2D19E0CD8BB4A0CA3F5420 /* UIColor.swift in Sources */, + 4DACBE4BAE67ED6303A6B4BE93B89A12 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */, + 0C07AD3FBE31EE1635DFB76B082E57BC /* WebView.swift in Sources */, + F18C5A01A19C52A405FE2C961E65B9D6 /* WebViewAssetHandler.swift in Sources */, + 96C1F6485B4CB8B440B1226240BB8AFE /* WebViewDelegationHandler.swift in Sources */, + FEBA348FAD9E37B87F9687836731B9E5 /* WKWebView+Capacitor.m in Sources */, + 212EBE40C8ACE6A7D072783EFEAF6584 /* WKWebView+Capacitor.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8474CD88FA624CACA08D3037A2616079 /* Sources */ = { + CE7D9667E8CB083330F25DBA1A121614 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AF630C31D5A79586F63881A5F7463E67 /* Pods-PluginTests-dummy.m in Sources */, + 8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8997513138D87B28254D01B171436E22 /* Sources */ = { + CFFDE113260979B402C1E4C5B825B6C1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 529481EEB667F1F6730818B23A8EB1A1 /* AppDelegate.m in Sources */, - 3F320ACFC8280C799172E280E616DF44 /* CapacitorCordova-dummy.m in Sources */, - 60F455EC1D8A1020F35B65A4CAB556B5 /* CDVCommandDelegateImpl.m in Sources */, - 50801E12652EB81166738BD74695F55A /* CDVConfigParser.m in Sources */, - 4B3D88FCBB6EA7F3C963B3617A13E378 /* CDVInvokedUrlCommand.m in Sources */, - EFC1D407CBC19C9B63B5416CB90C35FC /* CDVPlugin+Resources.m in Sources */, - F861E7C1DA6B4991C897589C3AC0DEEC /* CDVPlugin.m in Sources */, - 26A035F29252388848E040FAB3144A6B /* CDVPluginManager.m in Sources */, - C547BACC602947772863AA1C0FAC24E4 /* CDVPluginResult.m in Sources */, - 8DE82DDD279F9E9C639147ACC2BE0F81 /* CDVURLProtocol.m in Sources */, - 46E6FF469A55F69C9928A7A7EE91F188 /* CDVViewController.m in Sources */, - 9E3E2441530654DDB8860EC3A645656C /* NSDictionary+CordovaPreferences.m in Sources */, + 164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B14F80712DD87D9241BA8B2A6854B733 /* Sources */ = { + E3D8E3EE976DDC21D94135C3F889D63D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 59EB6C129639B56056DCABA6629D7F66 /* Pods-Plugin-dummy.m in Sources */, + 536E730A8AE3586385BE5B363AA9F749 /* AppDelegate.m in Sources */, + 23DDD23E097CCE3EB772DFD1518CAC12 /* CapacitorCordova-dummy.m in Sources */, + C43437A95FE60E8B696D075B2AD92FD1 /* CDVCommandDelegateImpl.m in Sources */, + 95D6BB43235341A58DAA7A2D5F816285 /* CDVConfigParser.m in Sources */, + 389E3629A4C8DB7F225C4DBB485F55F4 /* CDVInvokedUrlCommand.m in Sources */, + EBC0DD8420251B550FDFFBC48C12A8CB /* CDVPlugin.m in Sources */, + FAE579971D3F2B0BDD35CE5015750EF0 /* CDVPlugin+Resources.m in Sources */, + 2D0216605EB72F821300C4F3B1FC86E8 /* CDVPluginManager.m in Sources */, + 2B1BAECC3B542560A986EA13D225E2DC /* CDVPluginResult.m in Sources */, + 55174DC66F28010287ABBFEB88C8CB47 /* CDVURLProtocol.m in Sources */, + D05DE09A6C85758C6972D34FA1EC2638 /* CDVViewController.m in Sources */, + 23B549A724AA7AF775FD67B941CC55E7 /* CDVWebViewProcessPoolFactory.m in Sources */, + 54D5E23F14074FFCC5810E97CC384362 /* NSDictionary+CordovaPreferences.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 30115D57383ABDEDD4B7DEA2E7B8A483 /* PBXTargetDependency */ = { + 36A6CA4CFF833BC9EFE561F8ED530A98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CapacitorCordova; target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */; - targetProxy = E1B6A47092D48A411ABCAB80CF226DE1 /* PBXContainerItemProxy */; + targetProxy = 7E9BDDA8B475F749D2B09C2E752F30C5 /* PBXContainerItemProxy */; }; - 3D072D3934ACD356B9C73DE7EB9C7B88 /* PBXTargetDependency */ = { + 3C9530C00AC7121575BA0E30A1BD8B51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CapacitorCordova; target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */; - targetProxy = 65896A987D2712CA297E3637C0B18617 /* PBXContainerItemProxy */; + targetProxy = 5EFA106816E365BDCE204FF590B75E2D /* PBXContainerItemProxy */; }; - D6A08B1DDF5AEAA1475B46B18EFEB85F /* PBXTargetDependency */ = { + 6539498AA6E443FC38537878F4C7095D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CapacitorCordova; target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */; - targetProxy = 7642AC46E5085801CA863F2B1376A23F /* PBXContainerItemProxy */; + targetProxy = 0BDC1A6F73E729ACC0C577A493644A83 /* PBXContainerItemProxy */; }; - DABF856313E8E966AE09E9B6D43F25DB /* PBXTargetDependency */ = { + 82C2E4ED0DC4575973A6533EDFC52B06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Capacitor; target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */; - targetProxy = CD74EB7483F2A778B7655CA37F378A3D /* PBXContainerItemProxy */; + targetProxy = 2C164E5D182DA36F68E9F8AD6626995F /* PBXContainerItemProxy */; }; - ECA9F2ADA299239963AC63C0418682E4 /* PBXTargetDependency */ = { + C5C2CE29C2B3BC6251EB841729570B1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Capacitor; target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */; - targetProxy = 5E9000393805B3E9DB2DD6A4EE2023E4 /* PBXContainerItemProxy */; + targetProxy = 1C561FE25030B07A32DC2B811C25A589 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 22FCFF561868E0A258FDB38BEFAFD9F0 /* Release */ = { + 057A12F2D71A959F36757A69E349C8C4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA2FF2AA12D2387B2321CB221F6BB462 /* CapacitorCordova.release.xcconfig */; + baseConfigurationReference = 50F35474E793D3079F51A1423D50322D /* Capacitor.debug.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -882,94 +976,61 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap"; - PRODUCT_MODULE_NAME = Cordova; - PRODUCT_NAME = Cordova; + MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap"; + PRODUCT_MODULE_NAME = Capacitor; + PRODUCT_NAME = Capacitor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = { + 25C9C7BE983775E895ED3117240BC7EB /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_DEBUG=1", - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 38698D3745258B82EA497F20929C7B0C /* Release */ = { + 398D18ACC164CD809FD1916139961D43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B2AC61AD9C2A55021BB5CFF1DFAB5F31 /* Capacitor.release.xcconfig */; + baseConfigurationReference = D585E1B9BF72861652A5256F71241D37 /* Capacitor.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -984,7 +1045,7 @@ GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch"; INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap"; PRODUCT_MODULE_NAME = Capacitor; @@ -992,7 +1053,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -1000,11 +1061,10 @@ }; name = Release; }; - 42FA79113302E0564858D1BB49E09CE3 /* Debug */ = { + 72949EB0C35749C6CE1F6CD0C3AD773E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */; + baseConfigurationReference = B6ACD1E8895E541D2AAA00D1AA8A5366 /* CapacitorCordova.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -1015,29 +1075,29 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap"; + PRODUCT_MODULE_NAME = Cordova; + PRODUCT_NAME = Cordova; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 45D9C69ED1DD18782A93B82A20F4C608 /* Debug */ = { + 84AC07D1B967FA01542DA3AB71BC3C47 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 431B707ED1EACD50CA7897AEDAA65941 /* Capacitor.debug.xcconfig */; + baseConfigurationReference = 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -1048,25 +1108,93 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap"; - PRODUCT_MODULE_NAME = Capacitor; - PRODUCT_NAME = Capacitor; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; + name = Release; + }; + 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; name = Debug; }; - 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = { + 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -1116,7 +1244,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -1128,9 +1256,9 @@ }; name = Release; }; - D0CBC769C2BDEE7150B4DEFFC7B6D8A8 /* Debug */ = { + B84BA19992470D05973E2946BF37B831 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 755B65C6FD27E3DF64700E7A4D76CC43 /* CapacitorCordova.debug.xcconfig */; + baseConfigurationReference = B03A777C244FAEA1BE8CD3E9096CB41B /* CapacitorCordova.release.xcconfig */; buildSettings = { ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; @@ -1145,7 +1273,7 @@ GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch"; INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap"; PRODUCT_MODULE_NAME = Cordova; @@ -1155,49 +1283,15 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D2848E401FE88243C251F49447BE9F39 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - E05252EFA6E285DAB26096BE5684E73A /* Debug */ = { + C6A1C00DF92684BB667F98E7E274025C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */; + baseConfigurationReference = 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -1212,7 +1306,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap"; @@ -1224,14 +1318,15 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - F9289A3E1566819CA12A1558445C0EF4 /* Release */ = { + ED2378E15E9E9D668017ADE06F20D86F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */; + baseConfigurationReference = 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -1246,7 +1341,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap"; @@ -1258,56 +1353,55 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 09FD18F5BBC7A6F8DFF5B93E0D0B902C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */ = { + 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 42FA79113302E0564858D1BB49E09CE3 /* Debug */, - D2848E401FE88243C251F49447BE9F39 /* Release */, + ED2378E15E9E9D668017ADE06F20D86F /* Debug */, + C6A1C00DF92684BB667F98E7E274025C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 446F5D051358396BA8BF23D3061E7DCE /* Build configuration list for PBXNativeTarget "CapacitorCordova" */ = { + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - D0CBC769C2BDEE7150B4DEFFC7B6D8A8 /* Debug */, - 22FCFF561868E0A258FDB38BEFAFD9F0 /* Release */, + 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */, + 9E406C6AAF85E580207CD97B0044DEAB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + 50BDF9FF4E97C44A6D53189007395F6E /* Build configuration list for PBXNativeTarget "Capacitor" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2B9E26EAE2CD392AD762421F663075A1 /* Debug */, - 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */, + 057A12F2D71A959F36757A69E349C8C4 /* Debug */, + 398D18ACC164CD809FD1916139961D43 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 53E9DD6002DE072769D611D461AEE654 /* Build configuration list for PBXNativeTarget "Capacitor" */ = { + 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */ = { isa = XCConfigurationList; buildConfigurations = ( - 45D9C69ED1DD18782A93B82A20F4C608 /* Debug */, - 38698D3745258B82EA497F20929C7B0C /* Release */, + 25C9C7BE983775E895ED3117240BC7EB /* Debug */, + 84AC07D1B967FA01542DA3AB71BC3C47 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D20AE74F6B1887F3F68497742C61710A /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */ = { + FADBACD7C14A2FFE129C347C8B6722FD /* Build configuration list for PBXNativeTarget "CapacitorCordova" */ = { isa = XCConfigurationList; buildConfigurations = ( - E05252EFA6E285DAB26096BE5684E73A /* Debug */, - F9289A3E1566819CA12A1558445C0EF4 /* Release */, + 72949EB0C35749C6CE1F6CD0C3AD773E /* Debug */, + B84BA19992470D05973E2946BF37B831 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist b/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist index b0b461e..060f474 100644 --- a/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +++ b/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - en + ${PODS_DEVELOPMENT_LANGUAGE} CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.0.1 + 6.0.0 CFBundleSignature ???? CFBundleVersion diff --git a/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig b/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig index cda0247..51a5451 100644 --- a/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +++ b/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig @@ -2,9 +2,12 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Capacitor FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "Cordova" -framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} PODS_ROOT = ${SRCROOT} PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@capacitor/ios PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates diff --git a/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap b/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap index 3ecf37e..b39eb8e 100644 --- a/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +++ b/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap @@ -1,7 +1,8 @@ framework module Capacitor { umbrella header "Capacitor.h" exclude header "CAPBridgedJSTypes.h" - + exclude header "CAPBridgeViewController+CDVScreenOrientationDelegate.h" + export * module * { export * } -} \ No newline at end of file +} diff --git a/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig b/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig index cda0247..51a5451 100644 --- a/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +++ b/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig @@ -2,9 +2,12 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Capacitor FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "Cordova" -framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} PODS_ROOT = ${SRCROOT} PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@capacitor/ios PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates diff --git a/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist b/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist index b0b461e..060f474 100644 --- a/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +++ b/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - en + ${PODS_DEVELOPMENT_LANGUAGE} CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.0.1 + 6.0.0 CFBundleSignature ???? CFBundleVersion diff --git a/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig b/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig index 67745fb..6d1b338 100644 --- a/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +++ b/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig @@ -4,6 +4,7 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 OTHER_LDFLAGS = $(inherited) -framework "WebKit" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} PODS_ROOT = ${SRCROOT} PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@capacitor/ios PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates diff --git a/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig b/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig index 67745fb..6d1b338 100644 --- a/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +++ b/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig @@ -4,6 +4,7 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 OTHER_LDFLAGS = $(inherited) -framework "WebKit" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} PODS_ROOT = ${SRCROOT} PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@capacitor/ios PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates diff --git a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist index 2243fe6..19cf209 100644 --- a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +++ b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - en + ${PODS_DEVELOPMENT_LANGUAGE} CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier diff --git a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown index 461490f..2a136ca 100644 --- a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown @@ -3,55 +3,51 @@ This application makes use of the following third party libraries: ## Capacitor -Copyright 2017-present Ionic -https://ionic.io - MIT License -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Copyright (c) 2017-present Drifty Co. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -## CapacitorCordova -Copyright 2017-present Ionic -https://ionic.io +## CapacitorCordova MIT License -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Copyright (c) 2017-present Drifty Co. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist index 91f3c3d..d21b1fd 100644 --- a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist @@ -14,29 +14,27 @@ FooterText - Copyright 2017-present Ionic -https://ionic.io + MIT License -MIT License +Copyright (c) 2017-present Drifty Co. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. License MIT @@ -47,29 +45,27 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FooterText - Copyright 2017-present Ionic -https://ionic.io + MIT License -MIT License +Copyright (c) 2017-present Drifty Co. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. License MIT diff --git a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig index 9a9268e..191672b 100644 --- a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig @@ -2,7 +2,8 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor/Capacitor.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova/Cordova.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "Capacitor" -framework "Cordova" -framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig index 9a9268e..191672b 100644 --- a/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig @@ -2,7 +2,8 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor/Capacitor.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova/Cordova.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "Capacitor" -framework "Cordova" -framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist index 2243fe6..19cf209 100644 --- a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +++ b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - en + ${PODS_DEVELOPMENT_LANGUAGE} CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier diff --git a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown index 461490f..2a136ca 100644 --- a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown @@ -3,55 +3,51 @@ This application makes use of the following third party libraries: ## Capacitor -Copyright 2017-present Ionic -https://ionic.io - MIT License -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Copyright (c) 2017-present Drifty Co. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -## CapacitorCordova -Copyright 2017-present Ionic -https://ionic.io +## CapacitorCordova MIT License -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Copyright (c) 2017-present Drifty Co. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist index 91f3c3d..d21b1fd 100644 --- a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist @@ -14,29 +14,27 @@ FooterText - Copyright 2017-present Ionic -https://ionic.io + MIT License -MIT License +Copyright (c) 2017-present Drifty Co. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. License MIT @@ -47,29 +45,27 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FooterText - Copyright 2017-present Ionic -https://ionic.io + MIT License -MIT License +Copyright (c) 2017-present Drifty Co. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. License MIT diff --git a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh index dbf044f..dddb601 100755 --- a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +++ b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh @@ -18,7 +18,7 @@ echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +SWIFT_STDLIB_PATH="${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" BCSYMBOLMAP_DIR="BCSymbolMaps" @@ -41,7 +41,7 @@ install_framework() if [ -L "${source}" ]; then echo "Symlinked..." - source="$(readlink "${source}")" + source="$(readlink -f "${source}")" fi if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then @@ -113,6 +113,7 @@ install_dsym() { rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" else # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + mkdir -p "${DWARF_DSYM_FOLDER_PATH}" touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" fi fi diff --git a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig index 43ecedc..6df1007 100644 --- a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig @@ -3,7 +3,8 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor/Capacitor.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova/Cordova.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift "$(PLATFORM_DIR)/Developer/Library/Frameworks" '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "Capacitor" -framework "Cordova" -framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig index 43ecedc..6df1007 100644 --- a/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig @@ -3,7 +3,8 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Capacitor/Capacitor.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CapacitorCordova/Cordova.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift "$(PLATFORM_DIR)/Developer/Library/Frameworks" '@executable_path/Frameworks' '@loader_path/Frameworks' +LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift OTHER_LDFLAGS = $(inherited) -framework "Capacitor" -framework "Cordova" -framework "WebKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} diff --git a/package.json b/package.json index db7129d..ed6d209 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ququplay/native-audio", - "version": "5.0.1", + "version": "6.0.0", "description": "A native plugin for native audio engine", "main": "dist/plugin.js", "module": "dist/esm/index.js", @@ -41,10 +41,10 @@ "license": "MIT", "dependencies": {}, "devDependencies": { - "@capacitor/android": "^5.0.0", - "@capacitor/ios": "^5.0.0", - "@capacitor/cli": "^5.0.0", - "@capacitor/core": "^5.0.0", + "@capacitor/android": "^6.0.0", + "@capacitor/ios": "^6.0.0", + "@capacitor/cli": "^6.0.0", + "@capacitor/core": "^6.0.0", "@capacitor/docgen": "0.2.1", "@ionic/eslint-config": "^0.3.0", "@ionic/prettier-config": "~3.0.0", @@ -59,7 +59,7 @@ "husky": "^8.0.3" }, "peerDependencies": { - "@capacitor/core": "^5.0.0" + "@capacitor/core": "^6.0.0" }, "husky": { "hooks": { diff --git a/src/definitions.ts b/src/definitions.ts index 3cd0386..088c684 100644 --- a/src/definitions.ts +++ b/src/definitions.ts @@ -18,10 +18,7 @@ export interface NativeAudio { * * @since 5.0.1 */ - addListener( - eventName: 'complete', - listenerFunc: (event: { assetId: string }) => void - ): Promise & PluginListenerHandle; + addListener(eventName: 'complete', listenerFunc: (event: { assetId: string }) => void): Promise; } export interface ConfigureOptions {