@capgo/capacitor-native-biometric 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/CapgoCapacitorNativeBiometric.podspec +13 -0
  2. package/LICENSE +21 -0
  3. package/android/.gradle/8.0.2/checksums/checksums.lock +0 -0
  4. package/android/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +0 -0
  5. package/android/.gradle/8.0.2/dependencies-accessors/gc.properties +0 -0
  6. package/android/.gradle/8.0.2/executionHistory/executionHistory.bin +0 -0
  7. package/android/.gradle/8.0.2/executionHistory/executionHistory.lock +0 -0
  8. package/android/.gradle/8.0.2/fileChanges/last-build.bin +0 -0
  9. package/android/.gradle/8.0.2/fileHashes/fileHashes.bin +0 -0
  10. package/android/.gradle/8.0.2/fileHashes/fileHashes.lock +0 -0
  11. package/android/.gradle/8.0.2/fileHashes/resourceHashesCache.bin +0 -0
  12. package/android/.gradle/8.0.2/gc.properties +0 -0
  13. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  14. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  15. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  16. package/android/.gradle/vcs-1/gc.properties +0 -0
  17. package/android/android.iml +40 -0
  18. package/android/build.gradle +59 -0
  19. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  20. package/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  21. package/android/gradle.properties +20 -0
  22. package/android/gradlew +244 -0
  23. package/android/gradlew.bat +92 -0
  24. package/android/local.properties +8 -0
  25. package/android/proguard-rules.pro +21 -0
  26. package/android/settings.gradle +2 -0
  27. package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +28 -0
  28. package/android/src/main/AndroidManifest.xml +12 -0
  29. package/android/src/main/java/ee/forgr/biometric/AuthActivity.java +129 -0
  30. package/android/src/main/java/ee/forgr/biometric/NativeBiometric.java +457 -0
  31. package/android/src/main/res/layout/activity_auth_acitivy.xml +12 -0
  32. package/android/src/main/res/layout/bridge_layout_main.xml +15 -0
  33. package/android/src/main/res/navigation/nav_graph.xml +28 -0
  34. package/android/src/main/res/values/colors.xml +3 -0
  35. package/android/src/main/res/values/dimens.xml +3 -0
  36. package/android/src/main/res/values/strings.xml +12 -0
  37. package/android/src/main/res/values/styles.xml +16 -0
  38. package/android/src/test/java/com/getcapacitor/ExampleUnitTest.java +18 -0
  39. package/dist/docs.json +426 -0
  40. package/dist/esm/definitions.d.ts +91 -0
  41. package/dist/esm/definitions.js +11 -0
  42. package/dist/esm/definitions.js.map +1 -0
  43. package/dist/esm/index.d.ts +4 -0
  44. package/dist/esm/index.js +7 -0
  45. package/dist/esm/index.js.map +1 -0
  46. package/dist/esm/web.d.ts +10 -0
  47. package/dist/esm/web.js +22 -0
  48. package/dist/esm/web.js.map +1 -0
  49. package/dist/plugin.cjs.js +47 -0
  50. package/dist/plugin.cjs.js.map +1 -0
  51. package/dist/plugin.js +50 -0
  52. package/dist/plugin.js.map +1 -0
  53. package/ios/Plugin/Info.plist +24 -0
  54. package/ios/Plugin/Plugin.h +10 -0
  55. package/ios/Plugin/Plugin.m +12 -0
  56. package/ios/Plugin/Plugin.swift +264 -0
  57. package/ios/Plugin.xcodeproj/project.pbxproj +554 -0
  58. package/ios/Plugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  59. package/ios/Plugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  60. package/ios/Plugin.xcodeproj/project.xcworkspace/xcuserdata/pilito.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  61. package/ios/Plugin.xcodeproj/xcuserdata/jmartinez.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  62. package/ios/Plugin.xcodeproj/xcuserdata/josemartinez.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  63. package/ios/Plugin.xcodeproj/xcuserdata/pilito.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  64. package/ios/Plugin.xcworkspace/contents.xcworkspacedata +10 -0
  65. package/ios/Plugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  66. package/ios/Plugin.xcworkspace/xcuserdata/jmartinez.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  67. package/ios/Plugin.xcworkspace/xcuserdata/josemartinez.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  68. package/ios/Plugin.xcworkspace/xcuserdata/pilito.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  69. package/ios/PluginTests/Info.plist +22 -0
  70. package/ios/PluginTests/PluginTests.swift +35 -0
  71. package/ios/Podfile +16 -0
  72. package/ios/Podfile.lock +22 -0
  73. package/ios/Pods/Local Podspecs/Capacitor.podspec.json +34 -0
  74. package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +26 -0
  75. package/ios/Pods/Manifest.lock +22 -0
  76. package/ios/Pods/Pods.xcodeproj/project.pbxproj +1626 -0
  77. package/ios/Pods/Pods.xcodeproj/xcuserdata/jmartinez.xcuserdatad/xcschemes/Capacitor.xcscheme +60 -0
  78. package/ios/Pods/Pods.xcodeproj/xcuserdata/jmartinez.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
  79. package/ios/Pods/Pods.xcodeproj/xcuserdata/jmartinez.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
  80. package/ios/Pods/Pods.xcodeproj/xcuserdata/jmartinez.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
  81. package/ios/Pods/Pods.xcodeproj/xcuserdata/jmartinez.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
  82. package/ios/Pods/Pods.xcodeproj/xcuserdata/josemartinez.xcuserdatad/xcschemes/Capacitor.xcscheme +60 -0
  83. package/ios/Pods/Pods.xcodeproj/xcuserdata/josemartinez.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
  84. package/ios/Pods/Pods.xcodeproj/xcuserdata/josemartinez.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
  85. package/ios/Pods/Pods.xcodeproj/xcuserdata/josemartinez.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
  86. package/ios/Pods/Pods.xcodeproj/xcuserdata/josemartinez.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
  87. package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
  88. package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
  89. package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
  90. package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
  91. package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/xcschememanagement.plist +31 -0
  92. package/ios/Pods/Pods.xcodeproj/xcuserdata/pilito.xcuserdatad/xcschemes/xcschememanagement.plist +29 -0
  93. package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
  94. package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
  95. package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
  96. package/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h +23 -0
  97. package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
  98. package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +8 -0
  99. package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
  100. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
  101. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
  102. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
  103. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +32 -0
  104. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
  105. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
  106. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
  107. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
  108. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +53 -0
  109. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +91 -0
  110. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
  111. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
  112. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +14 -0
  113. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
  114. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +14 -0
  115. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
  116. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +53 -0
  117. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +91 -0
  118. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
  119. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
  120. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
  121. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +15 -0
  122. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
  123. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +15 -0
  124. package/package.json +80 -0
  125. package/readme.md +284 -0
@@ -0,0 +1,1626 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 48;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 015BFD2102D6364AF859D463153D12E1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
11
+ 04C8F6EE0AE0097D1E5EF7138CB5C602 /* CAPInstanceConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 264BCDF17099FA9C2765AA37BEB8C784 /* CAPInstanceConfiguration.m */; };
12
+ 04ED6686FF99CEF3EFC06506E603C7DB /* CAPBridgeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 078AD8742E4D5450F10439364D57A9B0 /* CAPBridgeViewController.swift */; };
13
+ 0C824753EA92B2155D9D256B7390410A /* CAPInstancePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91A0655769CFF591D0CD7DB2C835863B /* CAPInstancePlugin.swift */; };
14
+ 107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
15
+ 15C7C8168D952828555A0C3E8C6BFE50 /* CAPPluginMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DDA37960B217E450B5926640BA81469 /* CAPPluginMethod.h */; settings = {ATTRIBUTES = (Public, ); }; };
16
+ 164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */; };
17
+ 19E6B8278858D042D00307838E9DC1E3 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50C2B020038175867E7C8FA21EC88904 /* WebView.swift */; };
18
+ 1D8FD4E431D83E6C7A6468D68BD684C7 /* CAPPluginMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F98316F19F3E9BE6CE82161EE27DCE /* CAPPluginMethod.m */; };
19
+ 1F3D8CD431080C25445AD53417327E53 /* CAPWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45BFC5A5BC9723FE19B0C0A93B2AE5B3 /* CAPWebView.swift */; };
20
+ 21B885CA26C98185EC77AC450856D952 /* WebViewAssetHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76E93D19C7B9FAA32C2A00874E3E1DF3 /* WebViewAssetHandler.swift */; };
21
+ 2666D052ED1ACC69CA5AE55D795DB2D6 /* CAPPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 79D8C635DB9458BA4F43FA1B6CCB80E4 /* CAPPlugin.m */; };
22
+ 28B23AC44A547FE9856883BF87BF4B46 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */; };
23
+ 2D95A648FCBF2C9BB9913514D15E91AD /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF03CF714D436654366360FB2B36BA0 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
24
+ 2E3A8DF3F696BE29607DD482742F4FF6 /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 023B56F633AA2B8DD1E24BF87CFE50CD /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
25
+ 2E3FE4D334B21F8AD44BFEBC334C8711 /* CAPBridgeProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E62BBBC5C5E0B3259274713AA52186D /* CAPBridgeProtocol.swift */; };
26
+ 30994691338389464506782A75511734 /* WebViewDelegationHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36001EE7953D909AD39BA6A2FF755AEE /* WebViewDelegationHandler.swift */; };
27
+ 3433CB2052D2D9AD3025A04F6948C4A2 /* CAPBridgedJSTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = A50B96CB5E48960F0392E02CAC464C12 /* CAPBridgedJSTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
28
+ 3A3BB8905F7960A8F70E50D1F1C64429 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
29
+ 3CF844B81A1F0F607DD2570559885A81 /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = E84227E578F7621F7748D077EEB9D9FE /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
30
+ 41760722298D63A8B3BFD1EC2C87DFDF /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D1633AA713692C82C37095537AADDA /* AppDelegate.m */; };
31
+ 47562D9B2EFE41268C755F3D94009B33 /* CAPApplicationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40C060D7D20B076FBAD2F2619C45DA02 /* CAPApplicationDelegateProxy.swift */; };
32
+ 5109C695E142158E00CC99CE02E4966D /* JS.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F3ECF32771A1A714EB8F7D482BB76D /* JS.swift */; };
33
+ 5537DC38558167582AF40617B59C8941 /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C1FD2AB787CF7F6996754BBAA8C2E9 /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
34
+ 56ED9886950EB4F956295CEB44BF5305 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = F0C22DFE3202CB59E9FF1B6FD3E605F1 /* CDVCommandDelegateImpl.m */; };
35
+ 58AFAC623F150C2650A824210D205C0E /* DefaultPlugins.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC57FF27D81397E462297624A4EF120 /* DefaultPlugins.m */; };
36
+ 5BECD856456C34ABA7806879EFF70620 /* TmpViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F694B9B3630417BC385D779982CFE6A2 /* TmpViewController.swift */; };
37
+ 5D3296F04BB4763F1448263230042148 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = BABA7BCF797E69D80877BCB06BC48522 /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
38
+ 60ED69AC187EA3786EA6983657D13342 /* CAPNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D8F15891A96869A018B3AC09968C59 /* CAPNotifications.swift */; };
39
+ 63692AC9254B95E528681B2098F12F5B /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E34AC1E5B3151ACB4CFAC005A730817D /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */; };
40
+ 6466F8DCE6B85C80E07082A01EC2CEAA /* CDVPlugin+Resources.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB4D853273CCAD3C3B0BA32CBAA4E5B /* CDVPlugin+Resources.m */; };
41
+ 6499571DA08D1657FF4D41DA9C787B40 /* CapacitorBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8954A504D08D1A99C8CD39ED550E4627 /* CapacitorBridge.swift */; };
42
+ 64F3B9141F5592DDCB81BCDA4923F5F4 /* NotificationHandlerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D9EDBE1E0B87B02A11C2144A0B02F0 /* NotificationHandlerProtocol.swift */; };
43
+ 6C98CF0222C4E34A32D15D78EB9828C3 /* CAPBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E006CC489970AF279C2B1EB076C8E57 /* CAPBridge.swift */; };
44
+ 6E2B0431D0C00D806D6C429EC24775D2 /* CapacitorCookieManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE96E9BE71972351DFDD17F3D3831502 /* CapacitorCookieManager.swift */; };
45
+ 6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
46
+ 70597D12171CD7BCD9F231A738830A89 /* CDVPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A27E1130BDAA6C2A43A5EA359310CAD2 /* CDVPluginManager.m */; };
47
+ 70C21D411602FDFA4E5389A9564912B1 /* CAPInstanceDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F9B5D281FD2C9BE89512C28331F7E606 /* CAPInstanceDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
48
+ 74E7035E31FD80AE4F65C84D808B9475 /* KeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76517DD88BB8D8A76E1902E9CD79C127 /* KeyPath.swift */; };
49
+ 781B096C68F781D1D3FAAA493ED00BAB /* HttpRequestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33904C6CAB707A104DEF4398DA1564A4 /* HttpRequestHandler.swift */; };
50
+ 7A276E06363281276A4E7EC42F512E07 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEDE10F3B1845BD532F4EF4E20FC5F60 /* UIColor.swift */; };
51
+ 7C4C4386F48B530E01883C9E82A5E1BC /* WKWebView+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33644B0CC8C1C813B09733833BE32740 /* WKWebView+Capacitor.swift */; };
52
+ 7EF334FAE119BA8DD8156358BDF5CD96 /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 276F63077AE4D5DE36856CAED22C3E8F /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
53
+ 81BC2F35B328D904C7314AC3B63EED81 /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DDCB0D3E133E916AFFFC0BCEBC5A162E /* CDVViewController.m */; };
54
+ 86DF20E9C841585776C2606FD0EA2616 /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 487C291561AAAD57635A64A27CB15AD0 /* CDVPlugin.m */; };
55
+ 8A0D9F3CA8A61AF53C4CB21392997B96 /* CapacitorCookies.swift in Sources */ = {isa = PBXBuildFile; fileRef = E48C6A1ADC611A4CCC10283F373E7F32 /* CapacitorCookies.swift */; };
56
+ 8A23C01DED155488ADFA2956B88D42DA /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D7E5A8692B01D55D349686026056ED /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; };
57
+ 8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */; };
58
+ 8B01A91F3FD8E545FDFDBA63A64FB785 /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E549BF15FAC4F4CB886B192D5B5735 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; };
59
+ 8D7ECA6FB27823AC4471E0AFA5BE2428 /* JSTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73E39ADC8A789923534D4AFC1806B262 /* JSTypes.swift */; };
60
+ 8F3BCA2E0E498E2FC43F764420542BC4 /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 1449B8A5C050D4784D678BD396CABD5A /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
61
+ 8F3C06AC6E1F2973690132AA831A974E /* Capacitor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B543928BEFFAC9470AB2C882F151A1C /* Capacitor-dummy.m */; };
62
+ 92B3C0621B5FCC4E2AA158476D39FDA7 /* CapacitorUrlRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 270A0DF9428BAAA68F35458170571CD0 /* CapacitorUrlRequest.swift */; };
63
+ 92D3A48FAE586919987423312843E8D3 /* CAPPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F967765518C5C5FD4A5E7AAC5B8196 /* CAPPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
64
+ 95E8ECD893DFC8AC691F8E25CFAE0AC9 /* CAPLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = D251166F5E5B04FDBBB751D02EFFC605 /* CAPLog.swift */; };
65
+ 96F46A5154E2185B13DBD22CC4DA9A09 /* WKWebView+Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = E59E5EE3E3D6C8171C474E2FBD96E077 /* WKWebView+Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
66
+ 97384EF88502D8E4378ECBCA4CCE6A90 /* CAPBridgedPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6B4686C158646B5A3EB3D5FF830ADF /* CAPBridgedPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
67
+ 98C03553E629B5B49B75D570A431EB6F /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECFE2805DF3747037D282AD4C4C3663 /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
68
+ 9A4884032CD3DA7965C72C1D3174244C /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 224A4267EAA41519390593B587556AC5 /* CDVConfigParser.m */; };
69
+ 9CE38BD2235488F36ECB04B38B7B9CB2 /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = E6132FD833B3D4AF62AF7D1F4B4AF7F2 /* CDVPluginResult.m */; };
70
+ 9D575A9008C8F3C98ACCF8E79FD435A1 /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DB6F5A28BCED9E369ECD46ADFD6BF0 /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; };
71
+ 9F4B7923A5489BF6F20BC7E44B7B869F /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBBAD75484DA8520265766E7A631657 /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
72
+ A2536E1508B0B1A6FC0D1B7FB5AFADC7 /* CAPInstanceConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E1ADA45EF6ABD91A58170D558D28C2E5 /* CAPInstanceConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
73
+ A4A9B81722D01803C34BB5C26840DA87 /* CAPInstanceDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F19C3C9EFD9808FDBB55AE0827C0FA /* CAPInstanceDescriptor.m */; };
74
+ A4FD82AB39EE4040BE1AB21A85E8292E /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 004E31D3E5F99F7D836204B6A0FB2E45 /* CDVInvokedUrlCommand.m */; };
75
+ A6FF56343D91D58ACFC083015F543694 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB191BB26C32278D67A2B8D31D6EC5A /* UIStatusBarManager+CAPHandleTapAction.m */; };
76
+ A9909A61EE87B8D4DB239EFE718FD2AC /* WKWebView+Capacitor.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6AECC1CED309FECEC615C89B136633 /* WKWebView+Capacitor.m */; };
77
+ B773CF6F31D74A7B063C4AE5B270EE72 /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 551341F0A4BB7CAD0CE51914991BEA98 /* CDVURLProtocol.m */; };
78
+ B996F9F4877F7FAF9C3C64D7DB21B080 /* CapacitorCordova.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A1FD9F577C45639420EB8302E71241 /* CapacitorCordova.h */; settings = {ATTRIBUTES = (Public, ); }; };
79
+ BD30342679A3A01E6CA6E10F885A0362 /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1AA92708567ABD01894C4B46D9CE0E /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; };
80
+ C049135893F587AB48DF7D3FFF78B11F /* Array+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25BD3C6617897D29D0D3858578B03AF4 /* Array+Capacitor.swift */; };
81
+ C0887A614BFA78960706323F3C18648C /* CAPFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8261F686772F04DC1954F9946CDEE3F /* CAPFile.swift */; };
82
+ C4FCC645EEBA52EA564B1FD9C9E505DE /* CapacitorCordova-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C952A4D69DBCCE2638F6E5C212B8762 /* CapacitorCordova-dummy.m */; };
83
+ C5C40B7F30E0061CC79F50441BBE9BE4 /* CAPPluginCall.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4A900546717B888735FB51D96A7114 /* CAPPluginCall.m */; };
84
+ C6F05967DFCD1345F3DFDDE25008F3D6 /* CAPInstanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8876C0B43914B6314AC248A6311CBBB /* CAPInstanceConfiguration.swift */; };
85
+ C77D2DBA412FD352072C7393FE9E99B0 /* JSExport.swift in Sources */ = {isa = PBXBuildFile; fileRef = D66BF842A550B1492599F7E6D5C185B0 /* JSExport.swift */; };
86
+ C9EED324749836D1C2E76F2AB6BBE2DF /* CDVPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F47E276FC7DC9339E5D9173EF1E189CE /* CDVPluginManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
87
+ CAC3A785BFA6CCE692D0C1DDC22D0212 /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D1DF0945D357ED2EA10D082AC49C64B /* NSDictionary+CordovaPreferences.m */; };
88
+ CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
89
+ D0364445F048FA7EB4A15FC598E8B0F0 /* CapacitorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = A081B9FD608B5A0C50E178C0079A9A9E /* CapacitorExtension.swift */; };
90
+ D5826E858DDBA610DFBD18A8F38BF15A /* CAPInstanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF3B817435BE2608A22E43FD86873EBD /* CAPInstanceDescriptor.swift */; };
91
+ D90EF3CF948878D735DC3C98F3F2DA61 /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6907FC8E0B41B73E038746466678C338 /* Console.swift */; };
92
+ D99B5D3A3C8D10487E8BDAFC0B733407 /* CAPPluginCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 25AFAB8D424865B1707C8C39C4C79441 /* CAPPluginCall.h */; settings = {ATTRIBUTES = (Public, ); }; };
93
+ DD1FD4790D8FCFBCC968990AAB7A0061 /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92CA45C1CBEEE670E1C391A710D333A4 /* Router.swift */; };
94
+ DD71D79243DB0AC9852AF9DBAEEDDB6A /* CAPBridgeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EF0FA0AAE2999F4D414522B83730BD7 /* CAPBridgeDelegate.swift */; };
95
+ DE131CBD2B2804DD9FE142BA444F5535 /* AppUUID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15665B7623A52ADA3173588BDF59D886 /* AppUUID.swift */; };
96
+ DEA463BBD9BA0E0B986F6563405E1BB0 /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6734FB5A44C1D96BCA3C6A0079DBF8 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
97
+ DFD31D09B46E6BD8170382449C64A062 /* PluginCallResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BE492C892C49F8B5DE26F97FDA7C40A /* PluginCallResult.swift */; };
98
+ DFDEAE47D8396E34E7BE99191A18DD4C /* DocLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 939207AF8F76A3C9E92A5625F6182B18 /* DocLinks.swift */; };
99
+ E0C19137B14817289D143F78266F5FCA /* NotificationRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70B321155DCC6A26D1D0DF0B8C22F85A /* NotificationRouter.swift */; };
100
+ E843899B972E8B22DFF9924095138612 /* native-bridge.js in Resources */ = {isa = PBXBuildFile; fileRef = 19D4D4A1E6F04CDB952ED944F95F01FE /* native-bridge.js */; };
101
+ E96D3BC44AFCDE9DDBCA31B190C9B10A /* CAPPlugin+LoadInstance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40EC61AD215F5EF87C4E6AF85B4DE94D /* CAPPlugin+LoadInstance.swift */; };
102
+ F0C06339F38B01B7958B7941DDA679EE /* CAPPluginCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E277CFB07502B607D4B70134152125 /* CAPPluginCall.swift */; };
103
+ F2C39115EB320126B61FE694F7F6D2C5 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A9282A708F3DF0F3EF98FB5F61261374 /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
104
+ F3A9441C70B62C2FEDA949D3427C15AA /* Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = E60F74ECF2C4631AF63B9E6837B1CD1A /* Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
105
+ F4153D3964FA80C69DA306DF26AAC6BE /* PluginConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBECABACA6092976EBFCCFE64146586E /* PluginConfig.swift */; };
106
+ F6CF673A9F0313C299DDF96EC67CECD5 /* CAPBridgedJSTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = B01AEE54257ACF02395D3D104F457BAD /* CAPBridgedJSTypes.m */; };
107
+ F912DC8B24E466B52C62AE6981910DAC /* CapacitorHttp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C69DC1B2700AF05E952B72229D385446 /* CapacitorHttp.swift */; };
108
+ FA49B51FCEACCED0EEEC57997E8A5984 /* CAPBridgedPlugin+getMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D225A32B72F5D401041EE5E45BC964D /* CAPBridgedPlugin+getMethod.swift */; };
109
+ FE68C475414EFA73C1F431EA7B5F8D43 /* Data+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E1650DA1C8F3CE002E72E7B1032E704 /* Data+Capacitor.swift */; };
110
+ FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
111
+ /* End PBXBuildFile section */
112
+
113
+ /* Begin PBXContainerItemProxy section */
114
+ 3B7820BC647CC1FE7FDFE72F0528D0ED /* PBXContainerItemProxy */ = {
115
+ isa = PBXContainerItemProxy;
116
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
117
+ proxyType = 1;
118
+ remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
119
+ remoteInfo = CapacitorCordova;
120
+ };
121
+ 3F85B9BCE22ED5FB287C6C188E5FF961 /* PBXContainerItemProxy */ = {
122
+ isa = PBXContainerItemProxy;
123
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
124
+ proxyType = 1;
125
+ remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
126
+ remoteInfo = Capacitor;
127
+ };
128
+ 7610B90C89FE5C9E0F31E3FC3933EFD7 /* PBXContainerItemProxy */ = {
129
+ isa = PBXContainerItemProxy;
130
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
131
+ proxyType = 1;
132
+ remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
133
+ remoteInfo = Capacitor;
134
+ };
135
+ 8151EDBB59446FE4E80948A6201110F7 /* PBXContainerItemProxy */ = {
136
+ isa = PBXContainerItemProxy;
137
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
138
+ proxyType = 1;
139
+ remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
140
+ remoteInfo = CapacitorCordova;
141
+ };
142
+ 8A565F985533ABF19AA2848FE63804B3 /* PBXContainerItemProxy */ = {
143
+ isa = PBXContainerItemProxy;
144
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
145
+ proxyType = 1;
146
+ remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
147
+ remoteInfo = CapacitorCordova;
148
+ };
149
+ /* End PBXContainerItemProxy section */
150
+
151
+ /* Begin PBXFileReference section */
152
+ 004E31D3E5F99F7D836204B6A0FB2E45 /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVInvokedUrlCommand.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVInvokedUrlCommand.m"; sourceTree = "<group>"; };
153
+ 023B56F633AA2B8DD1E24BF87CFE50CD /* CDVURLProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVURLProtocol.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVURLProtocol.h"; sourceTree = "<group>"; };
154
+ 04D8F15891A96869A018B3AC09968C59 /* CAPNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPNotifications.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPNotifications.swift"; sourceTree = "<group>"; };
155
+ 078AD8742E4D5450F10439364D57A9B0 /* CAPBridgeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeViewController.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeViewController.swift"; sourceTree = "<group>"; };
156
+ 0FAD664CD5C9BF402500F3190D11D62A /* Capacitor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Capacitor.podspec; path = "../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
157
+ 1010CE04A4C1899C641EAB8CC84548C8 /* Capacitor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capacitor-Info.plist"; sourceTree = "<group>"; };
158
+ 11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-Info.plist"; sourceTree = "<group>"; };
159
+ 13F98316F19F3E9BE6CE82161EE27DCE /* CAPPluginMethod.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginMethod.m; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginMethod.m"; sourceTree = "<group>"; };
160
+ 1449B8A5C050D4784D678BD396CABD5A /* CDVPluginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVPluginResult.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginResult.h"; sourceTree = "<group>"; };
161
+ 15665B7623A52ADA3173588BDF59D886 /* AppUUID.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppUUID.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/AppUUID.swift"; sourceTree = "<group>"; };
162
+ 18A1FD9F577C45639420EB8302E71241 /* CapacitorCordova.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CapacitorCordova.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/CapacitorCordova.h"; sourceTree = "<group>"; };
163
+ 19D4D4A1E6F04CDB952ED944F95F01FE /* native-bridge.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "native-bridge.js"; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/assets/native-bridge.js"; sourceTree = "<group>"; };
164
+ 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CapacitorCordova; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; };
165
+ 1BE492C892C49F8B5DE26F97FDA7C40A /* PluginCallResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginCallResult.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/PluginCallResult.swift"; sourceTree = "<group>"; };
166
+ 1C4A900546717B888735FB51D96A7114 /* CAPPluginCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginCall.m; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginCall.m"; sourceTree = "<group>"; };
167
+ 1ECFE2805DF3747037D282AD4C4C3663 /* CDVViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVViewController.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVViewController.h"; sourceTree = "<group>"; };
168
+ 1EF0FA0AAE2999F4D414522B83730BD7 /* CAPBridgeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeDelegate.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeDelegate.swift"; sourceTree = "<group>"; };
169
+ 1FF03CF714D436654366360FB2B36BA0 /* CDVConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVConfigParser.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVConfigParser.h"; sourceTree = "<group>"; };
170
+ 21E57AF0E227F36C735EE928B3785A35 /* CapacitorCordova-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CapacitorCordova-Info.plist"; sourceTree = "<group>"; };
171
+ 224A4267EAA41519390593B587556AC5 /* CDVConfigParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVConfigParser.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVConfigParser.m"; sourceTree = "<group>"; };
172
+ 25AFAB8D424865B1707C8C39C4C79441 /* CAPPluginCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginCall.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginCall.h"; sourceTree = "<group>"; };
173
+ 25BD3C6617897D29D0D3858578B03AF4 /* Array+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Capacitor.swift"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Array+Capacitor.swift"; sourceTree = "<group>"; };
174
+ 264BCDF17099FA9C2765AA37BEB8C784 /* CAPInstanceConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceConfiguration.m; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceConfiguration.m"; sourceTree = "<group>"; };
175
+ 270A0DF9428BAAA68F35458170571CD0 /* CapacitorUrlRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorUrlRequest.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorUrlRequest.swift"; sourceTree = "<group>"; };
176
+ 276F63077AE4D5DE36856CAED22C3E8F /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.h"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.h"; sourceTree = "<group>"; };
177
+ 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; };
178
+ 2E1650DA1C8F3CE002E72E7B1032E704 /* Data+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Capacitor.swift"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Data+Capacitor.swift"; sourceTree = "<group>"; };
179
+ 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; };
180
+ 33644B0CC8C1C813B09733833BE32740 /* WKWebView+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Capacitor.swift"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WKWebView+Capacitor.swift"; sourceTree = "<group>"; };
181
+ 33904C6CAB707A104DEF4398DA1564A4 /* HttpRequestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpRequestHandler.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/HttpRequestHandler.swift"; sourceTree = "<group>"; };
182
+ 36001EE7953D909AD39BA6A2FF755AEE /* WebViewDelegationHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewDelegationHandler.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WebViewDelegationHandler.swift"; sourceTree = "<group>"; };
183
+ 39E277CFB07502B607D4B70134152125 /* CAPPluginCall.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPPluginCall.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginCall.swift"; sourceTree = "<group>"; };
184
+ 3DB191BB26C32278D67A2B8D31D6EC5A /* UIStatusBarManager+CAPHandleTapAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStatusBarManager+CAPHandleTapAction.m"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/UIStatusBarManager+CAPHandleTapAction.m"; sourceTree = "<group>"; };
185
+ 3E006CC489970AF279C2B1EB076C8E57 /* CAPBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridge.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridge.swift"; sourceTree = "<group>"; };
186
+ 401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Plugin.modulemap"; sourceTree = "<group>"; };
187
+ 40C060D7D20B076FBAD2F2619C45DA02 /* CAPApplicationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPApplicationDelegateProxy.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPApplicationDelegateProxy.swift"; sourceTree = "<group>"; };
188
+ 40EC61AD215F5EF87C4E6AF85B4DE94D /* CAPPlugin+LoadInstance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPPlugin+LoadInstance.swift"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPlugin+LoadInstance.swift"; sourceTree = "<group>"; };
189
+ 4496F2751733C2677B563A20FAA46B28 /* Capacitor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.debug.xcconfig; sourceTree = "<group>"; };
190
+ 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Capacitor; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
191
+ 45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-acknowledgements.plist"; sourceTree = "<group>"; };
192
+ 45BFC5A5BC9723FE19B0C0A93B2AE5B3 /* CAPWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPWebView.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPWebView.swift"; sourceTree = "<group>"; };
193
+ 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.debug.xcconfig"; sourceTree = "<group>"; };
194
+ 487C291561AAAD57635A64A27CB15AD0 /* CDVPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVPlugin.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m"; sourceTree = "<group>"; };
195
+ 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Plugin"; path = Pods_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
196
+ 50C2B020038175867E7C8FA21EC88904 /* WebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebView.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/WebView.swift"; sourceTree = "<group>"; };
197
+ 535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-acknowledgements.plist"; sourceTree = "<group>"; };
198
+ 542D300EAA11E63EA75016809A9A8A67 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = CapacitorCordova.modulemap; path = "../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap"; sourceTree = "<group>"; };
199
+ 551341F0A4BB7CAD0CE51914991BEA98 /* CDVURLProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVURLProtocol.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVURLProtocol.m"; sourceTree = "<group>"; };
200
+ 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-PluginTests"; path = Pods_PluginTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
201
+ 63F967765518C5C5FD4A5E7AAC5B8196 /* CAPPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPlugin.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPlugin.h"; sourceTree = "<group>"; };
202
+ 6907FC8E0B41B73E038746466678C338 /* Console.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Console.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/Console.swift"; sourceTree = "<group>"; };
203
+ 6BA3DBEF8C2A08E8095C8AE8CF28A22B /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = Capacitor.modulemap; path = "../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Capacitor.modulemap"; sourceTree = "<group>"; };
204
+ 6D225A32B72F5D401041EE5E45BC964D /* CAPBridgedPlugin+getMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPBridgedPlugin+getMethod.swift"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedPlugin+getMethod.swift"; sourceTree = "<group>"; };
205
+ 6DA08E25720523E8D6D44EBFD09A8018 /* CapacitorCordova-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-prefix.pch"; sourceTree = "<group>"; };
206
+ 6E62BBBC5C5E0B3259274713AA52186D /* CAPBridgeProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeProtocol.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeProtocol.swift"; sourceTree = "<group>"; };
207
+ 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.release.xcconfig"; sourceTree = "<group>"; };
208
+ 70B321155DCC6A26D1D0DF0B8C22F85A /* NotificationRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationRouter.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/NotificationRouter.swift"; sourceTree = "<group>"; };
209
+ 73E39ADC8A789923534D4AFC1806B262 /* JSTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSTypes.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/JSTypes.swift"; sourceTree = "<group>"; };
210
+ 76517DD88BB8D8A76E1902E9CD79C127 /* KeyPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPath.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/KeyPath.swift"; sourceTree = "<group>"; };
211
+ 76C32CE04B4D7540769FD576D777B52E /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capacitor.modulemap; sourceTree = "<group>"; };
212
+ 76E93D19C7B9FAA32C2A00874E3E1DF3 /* WebViewAssetHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewAssetHandler.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WebViewAssetHandler.swift"; sourceTree = "<group>"; };
213
+ 77E4C9948090A9C59E161357426E5E39 /* Capacitor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-prefix.pch"; sourceTree = "<group>"; };
214
+ 79D8C635DB9458BA4F43FA1B6CCB80E4 /* CAPPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPlugin.m; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPlugin.m"; sourceTree = "<group>"; };
215
+ 7B27DF8D8DE904B2724E5AE7B3CEE42D /* CapacitorCordova.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = CapacitorCordova.podspec; path = "../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
216
+ 7B543928BEFFAC9470AB2C882F151A1C /* Capacitor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capacitor-dummy.m"; sourceTree = "<group>"; };
217
+ 7D1DF0945D357ED2EA10D082AC49C64B /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+CordovaPreferences.m"; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/NSDictionary+CordovaPreferences.m"; sourceTree = "<group>"; };
218
+ 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.release.xcconfig"; sourceTree = "<group>"; };
219
+ 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PluginTests-dummy.m"; sourceTree = "<group>"; };
220
+ 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Plugin-umbrella.h"; sourceTree = "<group>"; };
221
+ 86F19C3C9EFD9808FDBB55AE0827C0FA /* CAPInstanceDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceDescriptor.m; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceDescriptor.m"; sourceTree = "<group>"; };
222
+ 8954A504D08D1A99C8CD39ED550E4627 /* CapacitorBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorBridge.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CapacitorBridge.swift"; sourceTree = "<group>"; };
223
+ 8A6734FB5A44C1D96BCA3C6A0079DBF8 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVCommandDelegate.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegate.h"; sourceTree = "<group>"; };
224
+ 8A6B4686C158646B5A3EB3D5FF830ADF /* CAPBridgedPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedPlugin.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedPlugin.h"; sourceTree = "<group>"; };
225
+ 8A9631831A7E00D058D6258EBD476BF7 /* Capacitor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.release.xcconfig; sourceTree = "<group>"; };
226
+ 91A0655769CFF591D0CD7DB2C835863B /* CAPInstancePlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstancePlugin.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstancePlugin.swift"; sourceTree = "<group>"; };
227
+ 92CA45C1CBEEE670E1C391A710D333A4 /* Router.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Router.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Router.swift"; sourceTree = "<group>"; };
228
+ 939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-Info.plist"; sourceTree = "<group>"; };
229
+ 939207AF8F76A3C9E92A5625F6182B18 /* DocLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocLinks.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/DocLinks.swift"; sourceTree = "<group>"; };
230
+ 9C952A4D69DBCCE2638F6E5C212B8762 /* CapacitorCordova-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CapacitorCordova-dummy.m"; sourceTree = "<group>"; };
231
+ 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; };
232
+ 9DDA37960B217E450B5926640BA81469 /* CAPPluginMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginMethod.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginMethod.h"; sourceTree = "<group>"; };
233
+ 9DEB18BECD17AB37518D1058AD286E24 /* CapacitorCordova.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.debug.xcconfig; sourceTree = "<group>"; };
234
+ 9FBBAD75484DA8520265766E7A631657 /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVScreenOrientationDelegate.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVScreenOrientationDelegate.h"; sourceTree = "<group>"; };
235
+ A081B9FD608B5A0C50E178C0079A9A9E /* CapacitorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorExtension.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CapacitorExtension.swift"; sourceTree = "<group>"; };
236
+ A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PluginTests-acknowledgements.markdown"; sourceTree = "<group>"; };
237
+ A27E1130BDAA6C2A43A5EA359310CAD2 /* CDVPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVPluginManager.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginManager.m"; sourceTree = "<group>"; };
238
+ A50B96CB5E48960F0392E02CAC464C12 /* CAPBridgedJSTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedJSTypes.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedJSTypes.h"; sourceTree = "<group>"; };
239
+ A5E549BF15FAC4F4CB886B192D5B5735 /* CDVAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVAvailability.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVAvailability.h"; sourceTree = "<group>"; };
240
+ A7D1633AA713692C82C37095537AADDA /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/AppDelegate.m"; sourceTree = "<group>"; };
241
+ A7D9EDBE1E0B87B02A11C2144A0B02F0 /* NotificationHandlerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationHandlerProtocol.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/NotificationHandlerProtocol.swift"; sourceTree = "<group>"; };
242
+ A9282A708F3DF0F3EF98FB5F61261374 /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/AppDelegate.h"; sourceTree = "<group>"; };
243
+ AE96E9BE71972351DFDD17F3D3831502 /* CapacitorCookieManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorCookieManager.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorCookieManager.swift"; sourceTree = "<group>"; };
244
+ B01AEE54257ACF02395D3D104F457BAD /* CAPBridgedJSTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPBridgedJSTypes.m; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedJSTypes.m"; sourceTree = "<group>"; };
245
+ B1C1FD2AB787CF7F6996754BBAA8C2E9 /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVCommandDelegateImpl.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegateImpl.h"; sourceTree = "<group>"; };
246
+ B3DB6F5A28BCED9E369ECD46ADFD6BF0 /* CDV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDV.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDV.h"; sourceTree = "<group>"; };
247
+ B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Plugin-dummy.m"; sourceTree = "<group>"; };
248
+ BABA7BCF797E69D80877BCB06BC48522 /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVInvokedUrlCommand.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVInvokedUrlCommand.h"; sourceTree = "<group>"; };
249
+ BC04122C456DA5D05A25244FF4AB049D /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CapacitorCordova.modulemap; sourceTree = "<group>"; };
250
+ C69DC1B2700AF05E952B72229D385446 /* CapacitorHttp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorHttp.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorHttp.swift"; sourceTree = "<group>"; };
251
+ C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Plugin-acknowledgements.markdown"; sourceTree = "<group>"; };
252
+ CE6AECC1CED309FECEC615C89B136633 /* WKWebView+Capacitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+Capacitor.m"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WKWebView+Capacitor.m"; sourceTree = "<group>"; };
253
+ CEB4D853273CCAD3C3B0BA32CBAA4E5B /* CDVPlugin+Resources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CDVPlugin+Resources.m"; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin+Resources.m"; sourceTree = "<group>"; };
254
+ CF66C00F1A6169D2BD19E5352E1910B7 /* CapacitorCordova.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.release.xcconfig; sourceTree = "<group>"; };
255
+ D251166F5E5B04FDBBB751D02EFFC605 /* CAPLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPLog.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPLog.swift"; sourceTree = "<group>"; };
256
+ D66BF842A550B1492599F7E6D5C185B0 /* JSExport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSExport.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/JSExport.swift"; sourceTree = "<group>"; };
257
+ D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PluginTests-frameworks.sh"; sourceTree = "<group>"; };
258
+ DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.debug.xcconfig"; sourceTree = "<group>"; };
259
+ DAC57FF27D81397E462297624A4EF120 /* DefaultPlugins.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DefaultPlugins.m; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/DefaultPlugins.m"; sourceTree = "<group>"; };
260
+ DDCB0D3E133E916AFFFC0BCEBC5A162E /* CDVViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVViewController.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVViewController.m"; sourceTree = "<group>"; };
261
+ DF3B817435BE2608A22E43FD86873EBD /* CAPInstanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceDescriptor.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceDescriptor.swift"; sourceTree = "<group>"; };
262
+ E1ADA45EF6ABD91A58170D558D28C2E5 /* CAPInstanceConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceConfiguration.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceConfiguration.h"; sourceTree = "<group>"; };
263
+ E34AC1E5B3151ACB4CFAC005A730817D /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.m"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.m"; sourceTree = "<group>"; };
264
+ E48C6A1ADC611A4CCC10283F373E7F32 /* CapacitorCookies.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorCookies.swift; path = "../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorCookies.swift"; sourceTree = "<group>"; };
265
+ E59E5EE3E3D6C8171C474E2FBD96E077 /* WKWebView+Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WKWebView+Capacitor.h"; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WKWebView+Capacitor.h"; sourceTree = "<group>"; };
266
+ E5D7E5A8692B01D55D349686026056ED /* CDVPlugin+Resources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CDVPlugin+Resources.h"; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin+Resources.h"; sourceTree = "<group>"; };
267
+ E60F74ECF2C4631AF63B9E6837B1CD1A /* Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Capacitor.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Capacitor.h"; sourceTree = "<group>"; };
268
+ E6132FD833B3D4AF62AF7D1F4B4AF7F2 /* CDVPluginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVPluginResult.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginResult.m"; sourceTree = "<group>"; };
269
+ E8261F686772F04DC1954F9946CDEE3F /* CAPFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPFile.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPFile.swift"; sourceTree = "<group>"; };
270
+ E84227E578F7621F7748D077EEB9D9FE /* CDVPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVPlugin.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h"; sourceTree = "<group>"; };
271
+ E8876C0B43914B6314AC248A6311CBBB /* CAPInstanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceConfiguration.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceConfiguration.swift"; sourceTree = "<group>"; };
272
+ E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PluginTests.modulemap"; sourceTree = "<group>"; };
273
+ E8F3ECF32771A1A714EB8F7D482BB76D /* JS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JS.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/JS.swift"; sourceTree = "<group>"; };
274
+ EC1AA92708567ABD01894C4B46D9CE0E /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+CordovaPreferences.h"; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/NSDictionary+CordovaPreferences.h"; sourceTree = "<group>"; };
275
+ F0C22DFE3202CB59E9FF1B6FD3E605F1 /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVCommandDelegateImpl.m; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegateImpl.m"; sourceTree = "<group>"; };
276
+ F47E276FC7DC9339E5D9173EF1E189CE /* CDVPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVPluginManager.h; path = "../../../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginManager.h"; sourceTree = "<group>"; };
277
+ F694B9B3630417BC385D779982CFE6A2 /* TmpViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TmpViewController.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/TmpViewController.swift"; sourceTree = "<group>"; };
278
+ F9B5D281FD2C9BE89512C28331F7E606 /* CAPInstanceDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceDescriptor.h; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceDescriptor.h"; sourceTree = "<group>"; };
279
+ FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PluginTests-umbrella.h"; sourceTree = "<group>"; };
280
+ FBECABACA6092976EBFCCFE64146586E /* PluginConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginConfig.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/PluginConfig.swift"; sourceTree = "<group>"; };
281
+ FEDE10F3B1845BD532F4EF4E20FC5F60 /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = "../../../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/UIColor.swift"; sourceTree = "<group>"; };
282
+ /* End PBXFileReference section */
283
+
284
+ /* Begin PBXFrameworksBuildPhase section */
285
+ 020B4637208CC73DFD6E434B177289A2 /* Frameworks */ = {
286
+ isa = PBXFrameworksBuildPhase;
287
+ buildActionMask = 2147483647;
288
+ files = (
289
+ 3A3BB8905F7960A8F70E50D1F1C64429 /* Foundation.framework in Frameworks */,
290
+ 28B23AC44A547FE9856883BF87BF4B46 /* WebKit.framework in Frameworks */,
291
+ );
292
+ runOnlyForDeploymentPostprocessing = 0;
293
+ };
294
+ 05729AFBFB8A784E74F2959F06661750 /* Frameworks */ = {
295
+ isa = PBXFrameworksBuildPhase;
296
+ buildActionMask = 2147483647;
297
+ files = (
298
+ 6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */,
299
+ );
300
+ runOnlyForDeploymentPostprocessing = 0;
301
+ };
302
+ AD9BBAB1DF84DC65D286432842C0B75E /* Frameworks */ = {
303
+ isa = PBXFrameworksBuildPhase;
304
+ buildActionMask = 2147483647;
305
+ files = (
306
+ 015BFD2102D6364AF859D463153D12E1 /* Foundation.framework in Frameworks */,
307
+ );
308
+ runOnlyForDeploymentPostprocessing = 0;
309
+ };
310
+ FFD92798E00A88208723BEFC520C2C9A /* Frameworks */ = {
311
+ isa = PBXFrameworksBuildPhase;
312
+ buildActionMask = 2147483647;
313
+ files = (
314
+ FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */,
315
+ );
316
+ runOnlyForDeploymentPostprocessing = 0;
317
+ };
318
+ /* End PBXFrameworksBuildPhase section */
319
+
320
+ /* Begin PBXGroup section */
321
+ 03C075A6784F0F011CAF4A15B8B0DE2A /* .. */ = {
322
+ isa = PBXGroup;
323
+ children = (
324
+ 15E819AE7881EE070ACB4C238F5E2227 /* .. */,
325
+ );
326
+ name = ..;
327
+ path = ..;
328
+ sourceTree = "<group>";
329
+ };
330
+ 07424CCAFECAD1640B0CF6EFF8FBD379 /* .. */ = {
331
+ isa = PBXGroup;
332
+ children = (
333
+ 26B2F89FE7EF9C0CCA439376DBB4883C /* .. */,
334
+ E1E489D8BE0FBABCF1BCA343491243D2 /* @capacitor */,
335
+ );
336
+ name = ..;
337
+ path = ..;
338
+ sourceTree = "<group>";
339
+ };
340
+ 0B56FA9BDC80914A03FEB0194F1CC04A /* .. */ = {
341
+ isa = PBXGroup;
342
+ children = (
343
+ E741C7DB707CFA1FE3751EDDB5748296 /* .. */,
344
+ );
345
+ name = ..;
346
+ path = "../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/Capacitor";
347
+ sourceTree = "<group>";
348
+ };
349
+ 15E819AE7881EE070ACB4C238F5E2227 /* .. */ = {
350
+ isa = PBXGroup;
351
+ children = (
352
+ AD8B1887DA3B7172A58DAC8CE20877E7 /* .. */,
353
+ );
354
+ name = ..;
355
+ path = ..;
356
+ sourceTree = "<group>";
357
+ };
358
+ 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {
359
+ isa = PBXGroup;
360
+ children = (
361
+ D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */,
362
+ );
363
+ name = Frameworks;
364
+ sourceTree = "<group>";
365
+ };
366
+ 26B2F89FE7EF9C0CCA439376DBB4883C /* .. */ = {
367
+ isa = PBXGroup;
368
+ children = (
369
+ AC865597D0E911AB6FCAD106AC18EE81 /* @capacitor */,
370
+ );
371
+ name = ..;
372
+ path = .;
373
+ sourceTree = "<group>";
374
+ };
375
+ 2E70145FFC85125F23D6B267099DE0FF /* Pod */ = {
376
+ isa = PBXGroup;
377
+ children = (
378
+ 6BA3DBEF8C2A08E8095C8AE8CF28A22B /* Capacitor.modulemap */,
379
+ 0FAD664CD5C9BF402500F3190D11D62A /* Capacitor.podspec */,
380
+ );
381
+ name = Pod;
382
+ sourceTree = "<group>";
383
+ };
384
+ 2EFA0A5B188127A6A8B8CCA5B3A9D896 /* Capacitor */ = {
385
+ isa = PBXGroup;
386
+ children = (
387
+ 15665B7623A52ADA3173588BDF59D886 /* AppUUID.swift */,
388
+ 25BD3C6617897D29D0D3858578B03AF4 /* Array+Capacitor.swift */,
389
+ E60F74ECF2C4631AF63B9E6837B1CD1A /* Capacitor.h */,
390
+ 8954A504D08D1A99C8CD39ED550E4627 /* CapacitorBridge.swift */,
391
+ A081B9FD608B5A0C50E178C0079A9A9E /* CapacitorExtension.swift */,
392
+ 40C060D7D20B076FBAD2F2619C45DA02 /* CAPApplicationDelegateProxy.swift */,
393
+ 3E006CC489970AF279C2B1EB076C8E57 /* CAPBridge.swift */,
394
+ 1EF0FA0AAE2999F4D414522B83730BD7 /* CAPBridgeDelegate.swift */,
395
+ A50B96CB5E48960F0392E02CAC464C12 /* CAPBridgedJSTypes.h */,
396
+ B01AEE54257ACF02395D3D104F457BAD /* CAPBridgedJSTypes.m */,
397
+ 8A6B4686C158646B5A3EB3D5FF830ADF /* CAPBridgedPlugin.h */,
398
+ 6D225A32B72F5D401041EE5E45BC964D /* CAPBridgedPlugin+getMethod.swift */,
399
+ 6E62BBBC5C5E0B3259274713AA52186D /* CAPBridgeProtocol.swift */,
400
+ 078AD8742E4D5450F10439364D57A9B0 /* CAPBridgeViewController.swift */,
401
+ 276F63077AE4D5DE36856CAED22C3E8F /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */,
402
+ E34AC1E5B3151ACB4CFAC005A730817D /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */,
403
+ E8261F686772F04DC1954F9946CDEE3F /* CAPFile.swift */,
404
+ E1ADA45EF6ABD91A58170D558D28C2E5 /* CAPInstanceConfiguration.h */,
405
+ 264BCDF17099FA9C2765AA37BEB8C784 /* CAPInstanceConfiguration.m */,
406
+ E8876C0B43914B6314AC248A6311CBBB /* CAPInstanceConfiguration.swift */,
407
+ F9B5D281FD2C9BE89512C28331F7E606 /* CAPInstanceDescriptor.h */,
408
+ 86F19C3C9EFD9808FDBB55AE0827C0FA /* CAPInstanceDescriptor.m */,
409
+ DF3B817435BE2608A22E43FD86873EBD /* CAPInstanceDescriptor.swift */,
410
+ 91A0655769CFF591D0CD7DB2C835863B /* CAPInstancePlugin.swift */,
411
+ D251166F5E5B04FDBBB751D02EFFC605 /* CAPLog.swift */,
412
+ 04D8F15891A96869A018B3AC09968C59 /* CAPNotifications.swift */,
413
+ 63F967765518C5C5FD4A5E7AAC5B8196 /* CAPPlugin.h */,
414
+ 79D8C635DB9458BA4F43FA1B6CCB80E4 /* CAPPlugin.m */,
415
+ 40EC61AD215F5EF87C4E6AF85B4DE94D /* CAPPlugin+LoadInstance.swift */,
416
+ 25AFAB8D424865B1707C8C39C4C79441 /* CAPPluginCall.h */,
417
+ 1C4A900546717B888735FB51D96A7114 /* CAPPluginCall.m */,
418
+ 39E277CFB07502B607D4B70134152125 /* CAPPluginCall.swift */,
419
+ 9DDA37960B217E450B5926640BA81469 /* CAPPluginMethod.h */,
420
+ 13F98316F19F3E9BE6CE82161EE27DCE /* CAPPluginMethod.m */,
421
+ 45BFC5A5BC9723FE19B0C0A93B2AE5B3 /* CAPWebView.swift */,
422
+ 2E1650DA1C8F3CE002E72E7B1032E704 /* Data+Capacitor.swift */,
423
+ 939207AF8F76A3C9E92A5625F6182B18 /* DocLinks.swift */,
424
+ E8F3ECF32771A1A714EB8F7D482BB76D /* JS.swift */,
425
+ D66BF842A550B1492599F7E6D5C185B0 /* JSExport.swift */,
426
+ 73E39ADC8A789923534D4AFC1806B262 /* JSTypes.swift */,
427
+ 76517DD88BB8D8A76E1902E9CD79C127 /* KeyPath.swift */,
428
+ A7D9EDBE1E0B87B02A11C2144A0B02F0 /* NotificationHandlerProtocol.swift */,
429
+ 70B321155DCC6A26D1D0DF0B8C22F85A /* NotificationRouter.swift */,
430
+ 1BE492C892C49F8B5DE26F97FDA7C40A /* PluginCallResult.swift */,
431
+ FBECABACA6092976EBFCCFE64146586E /* PluginConfig.swift */,
432
+ 92CA45C1CBEEE670E1C391A710D333A4 /* Router.swift */,
433
+ F694B9B3630417BC385D779982CFE6A2 /* TmpViewController.swift */,
434
+ FEDE10F3B1845BD532F4EF4E20FC5F60 /* UIColor.swift */,
435
+ 3DB191BB26C32278D67A2B8D31D6EC5A /* UIStatusBarManager+CAPHandleTapAction.m */,
436
+ 76E93D19C7B9FAA32C2A00874E3E1DF3 /* WebViewAssetHandler.swift */,
437
+ 36001EE7953D909AD39BA6A2FF755AEE /* WebViewDelegationHandler.swift */,
438
+ E59E5EE3E3D6C8171C474E2FBD96E077 /* WKWebView+Capacitor.h */,
439
+ CE6AECC1CED309FECEC615C89B136633 /* WKWebView+Capacitor.m */,
440
+ 33644B0CC8C1C813B09733833BE32740 /* WKWebView+Capacitor.swift */,
441
+ 56F9253D5A5AF4C91FAFEB27C8A314DF /* Plugins */,
442
+ );
443
+ name = Capacitor;
444
+ path = Capacitor;
445
+ sourceTree = "<group>";
446
+ };
447
+ 366FD711395A24B4ABF6238E70E3D422 /* .. */ = {
448
+ isa = PBXGroup;
449
+ children = (
450
+ 07424CCAFECAD1640B0CF6EFF8FBD379 /* .. */,
451
+ );
452
+ name = ..;
453
+ path = ..;
454
+ sourceTree = "<group>";
455
+ };
456
+ 37E948944843E9AD5C21346489B43C10 /* Pod */ = {
457
+ isa = PBXGroup;
458
+ children = (
459
+ 542D300EAA11E63EA75016809A9A8A67 /* CapacitorCordova.modulemap */,
460
+ 7B27DF8D8DE904B2724E5AE7B3CEE42D /* CapacitorCordova.podspec */,
461
+ );
462
+ name = Pod;
463
+ sourceTree = "<group>";
464
+ };
465
+ 3C79EB63CFD7BB7B2CE19F7CCDFA0868 /* .. */ = {
466
+ isa = PBXGroup;
467
+ children = (
468
+ 8A8AF60C353175EA4E7AC4022E85F656 /* .. */,
469
+ );
470
+ name = ..;
471
+ path = ..;
472
+ sourceTree = "<group>";
473
+ };
474
+ 45A568E3D119DEF7314BC4E44A2E22CD /* Public */ = {
475
+ isa = PBXGroup;
476
+ children = (
477
+ A9282A708F3DF0F3EF98FB5F61261374 /* AppDelegate.h */,
478
+ A7D1633AA713692C82C37095537AADDA /* AppDelegate.m */,
479
+ B3DB6F5A28BCED9E369ECD46ADFD6BF0 /* CDV.h */,
480
+ A5E549BF15FAC4F4CB886B192D5B5735 /* CDVAvailability.h */,
481
+ 8A6734FB5A44C1D96BCA3C6A0079DBF8 /* CDVCommandDelegate.h */,
482
+ B1C1FD2AB787CF7F6996754BBAA8C2E9 /* CDVCommandDelegateImpl.h */,
483
+ F0C22DFE3202CB59E9FF1B6FD3E605F1 /* CDVCommandDelegateImpl.m */,
484
+ 1FF03CF714D436654366360FB2B36BA0 /* CDVConfigParser.h */,
485
+ 224A4267EAA41519390593B587556AC5 /* CDVConfigParser.m */,
486
+ BABA7BCF797E69D80877BCB06BC48522 /* CDVInvokedUrlCommand.h */,
487
+ 004E31D3E5F99F7D836204B6A0FB2E45 /* CDVInvokedUrlCommand.m */,
488
+ E84227E578F7621F7748D077EEB9D9FE /* CDVPlugin.h */,
489
+ 487C291561AAAD57635A64A27CB15AD0 /* CDVPlugin.m */,
490
+ E5D7E5A8692B01D55D349686026056ED /* CDVPlugin+Resources.h */,
491
+ CEB4D853273CCAD3C3B0BA32CBAA4E5B /* CDVPlugin+Resources.m */,
492
+ F47E276FC7DC9339E5D9173EF1E189CE /* CDVPluginManager.h */,
493
+ A27E1130BDAA6C2A43A5EA359310CAD2 /* CDVPluginManager.m */,
494
+ 1449B8A5C050D4784D678BD396CABD5A /* CDVPluginResult.h */,
495
+ E6132FD833B3D4AF62AF7D1F4B4AF7F2 /* CDVPluginResult.m */,
496
+ 9FBBAD75484DA8520265766E7A631657 /* CDVScreenOrientationDelegate.h */,
497
+ 023B56F633AA2B8DD1E24BF87CFE50CD /* CDVURLProtocol.h */,
498
+ 551341F0A4BB7CAD0CE51914991BEA98 /* CDVURLProtocol.m */,
499
+ 1ECFE2805DF3747037D282AD4C4C3663 /* CDVViewController.h */,
500
+ DDCB0D3E133E916AFFFC0BCEBC5A162E /* CDVViewController.m */,
501
+ EC1AA92708567ABD01894C4B46D9CE0E /* NSDictionary+CordovaPreferences.h */,
502
+ 7D1DF0945D357ED2EA10D082AC49C64B /* NSDictionary+CordovaPreferences.m */,
503
+ );
504
+ name = Public;
505
+ path = Public;
506
+ sourceTree = "<group>";
507
+ };
508
+ 47CA9AFD00D901825E260D6E0686EC4E /* .. */ = {
509
+ isa = PBXGroup;
510
+ children = (
511
+ 03C075A6784F0F011CAF4A15B8B0DE2A /* .. */,
512
+ );
513
+ name = ..;
514
+ path = "../../.pnpm/@capacitor+ios@5.0.3_@capacitor+core@5.0.0/node_modules/@capacitor/ios/CapacitorCordova";
515
+ sourceTree = "<group>";
516
+ };
517
+ 50D05CB3ADA28825F9D081E472783996 /* Capacitor */ = {
518
+ isa = PBXGroup;
519
+ children = (
520
+ 938BF2FF39CB94D2997E69446157A143 /* assets */,
521
+ );
522
+ name = Capacitor;
523
+ path = Capacitor;
524
+ sourceTree = "<group>";
525
+ };
526
+ 56F9253D5A5AF4C91FAFEB27C8A314DF /* Plugins */ = {
527
+ isa = PBXGroup;
528
+ children = (
529
+ AE96E9BE71972351DFDD17F3D3831502 /* CapacitorCookieManager.swift */,
530
+ E48C6A1ADC611A4CCC10283F373E7F32 /* CapacitorCookies.swift */,
531
+ C69DC1B2700AF05E952B72229D385446 /* CapacitorHttp.swift */,
532
+ 270A0DF9428BAAA68F35458170571CD0 /* CapacitorUrlRequest.swift */,
533
+ 6907FC8E0B41B73E038746466678C338 /* Console.swift */,
534
+ DAC57FF27D81397E462297624A4EF120 /* DefaultPlugins.m */,
535
+ 33904C6CAB707A104DEF4398DA1564A4 /* HttpRequestHandler.swift */,
536
+ 50C2B020038175867E7C8FA21EC88904 /* WebView.swift */,
537
+ );
538
+ name = Plugins;
539
+ path = Plugins;
540
+ sourceTree = "<group>";
541
+ };
542
+ 57FE8C41835FD6BDEC1DD0B86C15FC27 /* Classes */ = {
543
+ isa = PBXGroup;
544
+ children = (
545
+ 45A568E3D119DEF7314BC4E44A2E22CD /* Public */,
546
+ );
547
+ name = Classes;
548
+ path = Classes;
549
+ sourceTree = "<group>";
550
+ };
551
+ 582DCD0FC2CD56CEB1464D026CDAB4B3 /* CapacitorCordova */ = {
552
+ isa = PBXGroup;
553
+ children = (
554
+ 47CA9AFD00D901825E260D6E0686EC4E /* .. */,
555
+ 37E948944843E9AD5C21346489B43C10 /* Pod */,
556
+ A21FD9A0D036345FB661C4DB9EE66C62 /* Support Files */,
557
+ );
558
+ name = CapacitorCordova;
559
+ path = "../../node_modules/@capacitor/ios";
560
+ sourceTree = "<group>";
561
+ };
562
+ 5E9DDE4B208ED7F761DA38D47DCF8B1F /* .. */ = {
563
+ isa = PBXGroup;
564
+ children = (
565
+ C52B67223A259BA651DEE2DA72D1763D /* .. */,
566
+ );
567
+ name = ..;
568
+ path = ..;
569
+ sourceTree = "<group>";
570
+ };
571
+ 5EBFF43903BF2062286337540F1E9D7A /* Capacitor */ = {
572
+ isa = PBXGroup;
573
+ children = (
574
+ 50D05CB3ADA28825F9D081E472783996 /* Capacitor */,
575
+ );
576
+ name = Capacitor;
577
+ path = Capacitor;
578
+ sourceTree = "<group>";
579
+ };
580
+ 6145061A354B53004E56DAA560979AA5 /* @capacitor */ = {
581
+ isa = PBXGroup;
582
+ children = (
583
+ 754837772933F7E6C57B6E746210EBCD /* ios */,
584
+ );
585
+ name = "@capacitor";
586
+ path = "@capacitor";
587
+ sourceTree = "<group>";
588
+ };
589
+ 6547CCF9723B2E957649828E443A767E /* .. */ = {
590
+ isa = PBXGroup;
591
+ children = (
592
+ 366FD711395A24B4ABF6238E70E3D422 /* .. */,
593
+ );
594
+ name = ..;
595
+ path = ..;
596
+ sourceTree = "<group>";
597
+ };
598
+ 739D47DFDC01ACB543292EBCA6378CE6 /* Capacitor */ = {
599
+ isa = PBXGroup;
600
+ children = (
601
+ 0B56FA9BDC80914A03FEB0194F1CC04A /* .. */,
602
+ 2E70145FFC85125F23D6B267099DE0FF /* Pod */,
603
+ ABF58862F93351B2E80E491DD2C152A9 /* Support Files */,
604
+ );
605
+ name = Capacitor;
606
+ path = "../../node_modules/@capacitor/ios";
607
+ sourceTree = "<group>";
608
+ };
609
+ 740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */ = {
610
+ isa = PBXGroup;
611
+ children = (
612
+ 8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */,
613
+ F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */,
614
+ );
615
+ name = "Targets Support Files";
616
+ sourceTree = "<group>";
617
+ };
618
+ 754837772933F7E6C57B6E746210EBCD /* ios */ = {
619
+ isa = PBXGroup;
620
+ children = (
621
+ FD1719B79EC2BEBB15FB021A23D8600F /* CapacitorCordova */,
622
+ );
623
+ name = ios;
624
+ path = ios;
625
+ sourceTree = "<group>";
626
+ };
627
+ 8A8AF60C353175EA4E7AC4022E85F656 /* .. */ = {
628
+ isa = PBXGroup;
629
+ children = (
630
+ 6145061A354B53004E56DAA560979AA5 /* @capacitor */,
631
+ );
632
+ name = ..;
633
+ path = ..;
634
+ sourceTree = "<group>";
635
+ };
636
+ 8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */ = {
637
+ isa = PBXGroup;
638
+ children = (
639
+ 401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */,
640
+ C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */,
641
+ 535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */,
642
+ B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */,
643
+ 11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */,
644
+ 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */,
645
+ DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */,
646
+ 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */,
647
+ );
648
+ name = "Pods-Plugin";
649
+ path = "Target Support Files/Pods-Plugin";
650
+ sourceTree = "<group>";
651
+ };
652
+ 938BF2FF39CB94D2997E69446157A143 /* assets */ = {
653
+ isa = PBXGroup;
654
+ children = (
655
+ 19D4D4A1E6F04CDB952ED944F95F01FE /* native-bridge.js */,
656
+ );
657
+ name = assets;
658
+ path = assets;
659
+ sourceTree = "<group>";
660
+ };
661
+ A21FD9A0D036345FB661C4DB9EE66C62 /* Support Files */ = {
662
+ isa = PBXGroup;
663
+ children = (
664
+ BC04122C456DA5D05A25244FF4AB049D /* CapacitorCordova.modulemap */,
665
+ 9C952A4D69DBCCE2638F6E5C212B8762 /* CapacitorCordova-dummy.m */,
666
+ 21E57AF0E227F36C735EE928B3785A35 /* CapacitorCordova-Info.plist */,
667
+ 6DA08E25720523E8D6D44EBFD09A8018 /* CapacitorCordova-prefix.pch */,
668
+ 9DEB18BECD17AB37518D1058AD286E24 /* CapacitorCordova.debug.xcconfig */,
669
+ CF66C00F1A6169D2BD19E5352E1910B7 /* CapacitorCordova.release.xcconfig */,
670
+ );
671
+ name = "Support Files";
672
+ path = "../../../ios/Pods/Target Support Files/CapacitorCordova";
673
+ sourceTree = "<group>";
674
+ };
675
+ A22E5D42D03F74F8177910C1889BE871 /* .. */ = {
676
+ isa = PBXGroup;
677
+ children = (
678
+ 3C79EB63CFD7BB7B2CE19F7CCDFA0868 /* .. */,
679
+ );
680
+ name = ..;
681
+ path = ..;
682
+ sourceTree = "<group>";
683
+ };
684
+ ABF58862F93351B2E80E491DD2C152A9 /* Support Files */ = {
685
+ isa = PBXGroup;
686
+ children = (
687
+ 76C32CE04B4D7540769FD576D777B52E /* Capacitor.modulemap */,
688
+ 7B543928BEFFAC9470AB2C882F151A1C /* Capacitor-dummy.m */,
689
+ 1010CE04A4C1899C641EAB8CC84548C8 /* Capacitor-Info.plist */,
690
+ 77E4C9948090A9C59E161357426E5E39 /* Capacitor-prefix.pch */,
691
+ 4496F2751733C2677B563A20FAA46B28 /* Capacitor.debug.xcconfig */,
692
+ 8A9631831A7E00D058D6258EBD476BF7 /* Capacitor.release.xcconfig */,
693
+ );
694
+ name = "Support Files";
695
+ path = "../../../ios/Pods/Target Support Files/Capacitor";
696
+ sourceTree = "<group>";
697
+ };
698
+ AC865597D0E911AB6FCAD106AC18EE81 /* @capacitor */ = {
699
+ isa = PBXGroup;
700
+ children = (
701
+ B92946586A373AB4335CD166866ACB63 /* ios */,
702
+ );
703
+ name = "@capacitor";
704
+ path = "@capacitor";
705
+ sourceTree = "<group>";
706
+ };
707
+ AD8B1887DA3B7172A58DAC8CE20877E7 /* .. */ = {
708
+ isa = PBXGroup;
709
+ children = (
710
+ A22E5D42D03F74F8177910C1889BE871 /* .. */,
711
+ );
712
+ name = ..;
713
+ path = ..;
714
+ sourceTree = "<group>";
715
+ };
716
+ B3980E189C38C15F294BF73C91266808 /* ios */ = {
717
+ isa = PBXGroup;
718
+ children = (
719
+ E47AD507716A397D80E76BF05E45D35B /* Capacitor */,
720
+ );
721
+ name = ios;
722
+ path = ios;
723
+ sourceTree = "<group>";
724
+ };
725
+ B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */ = {
726
+ isa = PBXGroup;
727
+ children = (
728
+ 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */,
729
+ 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */,
730
+ 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */,
731
+ 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */,
732
+ );
733
+ name = Products;
734
+ sourceTree = "<group>";
735
+ };
736
+ B92946586A373AB4335CD166866ACB63 /* ios */ = {
737
+ isa = PBXGroup;
738
+ children = (
739
+ 5EBFF43903BF2062286337540F1E9D7A /* Capacitor */,
740
+ );
741
+ name = ios;
742
+ path = ios;
743
+ sourceTree = "<group>";
744
+ };
745
+ C52B67223A259BA651DEE2DA72D1763D /* .. */ = {
746
+ isa = PBXGroup;
747
+ children = (
748
+ 6547CCF9723B2E957649828E443A767E /* .. */,
749
+ );
750
+ name = ..;
751
+ path = ..;
752
+ sourceTree = "<group>";
753
+ };
754
+ CF1408CF629C7361332E53B88F7BD30C = {
755
+ isa = PBXGroup;
756
+ children = (
757
+ 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
758
+ F1A18ADB90E2C3418E3E1D2C299819BE /* Development Pods */,
759
+ 1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,
760
+ B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */,
761
+ 740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */,
762
+ );
763
+ sourceTree = "<group>";
764
+ };
765
+ D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */ = {
766
+ isa = PBXGroup;
767
+ children = (
768
+ 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */,
769
+ 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */,
770
+ );
771
+ name = iOS;
772
+ sourceTree = "<group>";
773
+ };
774
+ E1E489D8BE0FBABCF1BCA343491243D2 /* @capacitor */ = {
775
+ isa = PBXGroup;
776
+ children = (
777
+ B3980E189C38C15F294BF73C91266808 /* ios */,
778
+ );
779
+ name = "@capacitor";
780
+ path = "@capacitor";
781
+ sourceTree = "<group>";
782
+ };
783
+ E47AD507716A397D80E76BF05E45D35B /* Capacitor */ = {
784
+ isa = PBXGroup;
785
+ children = (
786
+ 2EFA0A5B188127A6A8B8CCA5B3A9D896 /* Capacitor */,
787
+ );
788
+ name = Capacitor;
789
+ path = Capacitor;
790
+ sourceTree = "<group>";
791
+ };
792
+ E741C7DB707CFA1FE3751EDDB5748296 /* .. */ = {
793
+ isa = PBXGroup;
794
+ children = (
795
+ 5E9DDE4B208ED7F761DA38D47DCF8B1F /* .. */,
796
+ );
797
+ name = ..;
798
+ path = ..;
799
+ sourceTree = "<group>";
800
+ };
801
+ E8EE7400D4C7761377717DA81DDA9ADC /* CapacitorCordova */ = {
802
+ isa = PBXGroup;
803
+ children = (
804
+ 18A1FD9F577C45639420EB8302E71241 /* CapacitorCordova.h */,
805
+ 57FE8C41835FD6BDEC1DD0B86C15FC27 /* Classes */,
806
+ );
807
+ name = CapacitorCordova;
808
+ path = CapacitorCordova;
809
+ sourceTree = "<group>";
810
+ };
811
+ F1A18ADB90E2C3418E3E1D2C299819BE /* Development Pods */ = {
812
+ isa = PBXGroup;
813
+ children = (
814
+ 739D47DFDC01ACB543292EBCA6378CE6 /* Capacitor */,
815
+ 582DCD0FC2CD56CEB1464D026CDAB4B3 /* CapacitorCordova */,
816
+ );
817
+ name = "Development Pods";
818
+ sourceTree = "<group>";
819
+ };
820
+ F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */ = {
821
+ isa = PBXGroup;
822
+ children = (
823
+ E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */,
824
+ A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */,
825
+ 45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */,
826
+ 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */,
827
+ D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */,
828
+ 939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */,
829
+ FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */,
830
+ 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */,
831
+ 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */,
832
+ );
833
+ name = "Pods-PluginTests";
834
+ path = "Target Support Files/Pods-PluginTests";
835
+ sourceTree = "<group>";
836
+ };
837
+ FD1719B79EC2BEBB15FB021A23D8600F /* CapacitorCordova */ = {
838
+ isa = PBXGroup;
839
+ children = (
840
+ E8EE7400D4C7761377717DA81DDA9ADC /* CapacitorCordova */,
841
+ );
842
+ name = CapacitorCordova;
843
+ path = CapacitorCordova;
844
+ sourceTree = "<group>";
845
+ };
846
+ /* End PBXGroup section */
847
+
848
+ /* Begin PBXHeadersBuildPhase section */
849
+ 357AD0DC2A6B38717F8E766B14F7B904 /* Headers */ = {
850
+ isa = PBXHeadersBuildPhase;
851
+ buildActionMask = 2147483647;
852
+ files = (
853
+ CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */,
854
+ );
855
+ runOnlyForDeploymentPostprocessing = 0;
856
+ };
857
+ 60B117377A27FF6152F03B39E784DA60 /* Headers */ = {
858
+ isa = PBXHeadersBuildPhase;
859
+ buildActionMask = 2147483647;
860
+ files = (
861
+ F2C39115EB320126B61FE694F7F6D2C5 /* AppDelegate.h in Headers */,
862
+ B996F9F4877F7FAF9C3C64D7DB21B080 /* CapacitorCordova.h in Headers */,
863
+ 9D575A9008C8F3C98ACCF8E79FD435A1 /* CDV.h in Headers */,
864
+ 8B01A91F3FD8E545FDFDBA63A64FB785 /* CDVAvailability.h in Headers */,
865
+ DEA463BBD9BA0E0B986F6563405E1BB0 /* CDVCommandDelegate.h in Headers */,
866
+ 5537DC38558167582AF40617B59C8941 /* CDVCommandDelegateImpl.h in Headers */,
867
+ 2D95A648FCBF2C9BB9913514D15E91AD /* CDVConfigParser.h in Headers */,
868
+ 5D3296F04BB4763F1448263230042148 /* CDVInvokedUrlCommand.h in Headers */,
869
+ 3CF844B81A1F0F607DD2570559885A81 /* CDVPlugin.h in Headers */,
870
+ 8A23C01DED155488ADFA2956B88D42DA /* CDVPlugin+Resources.h in Headers */,
871
+ C9EED324749836D1C2E76F2AB6BBE2DF /* CDVPluginManager.h in Headers */,
872
+ 8F3BCA2E0E498E2FC43F764420542BC4 /* CDVPluginResult.h in Headers */,
873
+ 9F4B7923A5489BF6F20BC7E44B7B869F /* CDVScreenOrientationDelegate.h in Headers */,
874
+ 2E3A8DF3F696BE29607DD482742F4FF6 /* CDVURLProtocol.h in Headers */,
875
+ 98C03553E629B5B49B75D570A431EB6F /* CDVViewController.h in Headers */,
876
+ BD30342679A3A01E6CA6E10F885A0362 /* NSDictionary+CordovaPreferences.h in Headers */,
877
+ );
878
+ runOnlyForDeploymentPostprocessing = 0;
879
+ };
880
+ CD0146D9209B52D85411E99B60EE90BD /* Headers */ = {
881
+ isa = PBXHeadersBuildPhase;
882
+ buildActionMask = 2147483647;
883
+ files = (
884
+ 107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */,
885
+ );
886
+ runOnlyForDeploymentPostprocessing = 0;
887
+ };
888
+ DA1AA6C3D71C7CC4F1856F235512FB98 /* Headers */ = {
889
+ isa = PBXHeadersBuildPhase;
890
+ buildActionMask = 2147483647;
891
+ files = (
892
+ F3A9441C70B62C2FEDA949D3427C15AA /* Capacitor.h in Headers */,
893
+ 3433CB2052D2D9AD3025A04F6948C4A2 /* CAPBridgedJSTypes.h in Headers */,
894
+ 97384EF88502D8E4378ECBCA4CCE6A90 /* CAPBridgedPlugin.h in Headers */,
895
+ 7EF334FAE119BA8DD8156358BDF5CD96 /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */,
896
+ A2536E1508B0B1A6FC0D1B7FB5AFADC7 /* CAPInstanceConfiguration.h in Headers */,
897
+ 70C21D411602FDFA4E5389A9564912B1 /* CAPInstanceDescriptor.h in Headers */,
898
+ 92D3A48FAE586919987423312843E8D3 /* CAPPlugin.h in Headers */,
899
+ D99B5D3A3C8D10487E8BDAFC0B733407 /* CAPPluginCall.h in Headers */,
900
+ 15C7C8168D952828555A0C3E8C6BFE50 /* CAPPluginMethod.h in Headers */,
901
+ 96F46A5154E2185B13DBD22CC4DA9A09 /* WKWebView+Capacitor.h in Headers */,
902
+ );
903
+ runOnlyForDeploymentPostprocessing = 0;
904
+ };
905
+ /* End PBXHeadersBuildPhase section */
906
+
907
+ /* Begin PBXNativeTarget section */
908
+ 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */ = {
909
+ isa = PBXNativeTarget;
910
+ buildConfigurationList = B199849C64840E0A9456B3139423B266 /* Build configuration list for PBXNativeTarget "Capacitor" */;
911
+ buildPhases = (
912
+ DA1AA6C3D71C7CC4F1856F235512FB98 /* Headers */,
913
+ 2D48F627781AD03E922A33FC14A99A64 /* Sources */,
914
+ AD9BBAB1DF84DC65D286432842C0B75E /* Frameworks */,
915
+ 3A97EFA7B71B3FFD86BAC45D5F6918B9 /* Resources */,
916
+ );
917
+ buildRules = (
918
+ );
919
+ dependencies = (
920
+ D0D960E9D87FF5792E20FF69129D64B6 /* PBXTargetDependency */,
921
+ );
922
+ name = Capacitor;
923
+ productName = Capacitor;
924
+ productReference = 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */;
925
+ productType = "com.apple.product-type.framework";
926
+ };
927
+ 10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */ = {
928
+ isa = PBXNativeTarget;
929
+ buildConfigurationList = 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */;
930
+ buildPhases = (
931
+ 357AD0DC2A6B38717F8E766B14F7B904 /* Headers */,
932
+ CE7D9667E8CB083330F25DBA1A121614 /* Sources */,
933
+ 05729AFBFB8A784E74F2959F06661750 /* Frameworks */,
934
+ 66F8DAFC08A88AE635AABEADC89F9782 /* Resources */,
935
+ );
936
+ buildRules = (
937
+ );
938
+ dependencies = (
939
+ 79F3006A2268F65033A7E93E23F19980 /* PBXTargetDependency */,
940
+ 9BF6F161FECF5463565D78C17133E5F7 /* PBXTargetDependency */,
941
+ );
942
+ name = "Pods-Plugin";
943
+ productName = Pods_Plugin;
944
+ productReference = 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */;
945
+ productType = "com.apple.product-type.framework";
946
+ };
947
+ 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */ = {
948
+ isa = PBXNativeTarget;
949
+ buildConfigurationList = 4176B4DDA034BB21A84BC59E7186AB6D /* Build configuration list for PBXNativeTarget "CapacitorCordova" */;
950
+ buildPhases = (
951
+ 60B117377A27FF6152F03B39E784DA60 /* Headers */,
952
+ 2FF7471149041FFE11A793B09B9794C6 /* Sources */,
953
+ 020B4637208CC73DFD6E434B177289A2 /* Frameworks */,
954
+ D83EB9346E09FD648178670BDECEE217 /* Resources */,
955
+ );
956
+ buildRules = (
957
+ );
958
+ dependencies = (
959
+ );
960
+ name = CapacitorCordova;
961
+ productName = Cordova;
962
+ productReference = 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */;
963
+ productType = "com.apple.product-type.framework";
964
+ };
965
+ 401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */ = {
966
+ isa = PBXNativeTarget;
967
+ buildConfigurationList = 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */;
968
+ buildPhases = (
969
+ CD0146D9209B52D85411E99B60EE90BD /* Headers */,
970
+ CFFDE113260979B402C1E4C5B825B6C1 /* Sources */,
971
+ FFD92798E00A88208723BEFC520C2C9A /* Frameworks */,
972
+ 35B229A540F02FD5EB6A4690A3C8F305 /* Resources */,
973
+ );
974
+ buildRules = (
975
+ );
976
+ dependencies = (
977
+ 4FA308F928E7CDCEBA8CAB4E0DE13B70 /* PBXTargetDependency */,
978
+ 25C74AEBAA7E9DA72BE5E665AD5DF018 /* PBXTargetDependency */,
979
+ );
980
+ name = "Pods-PluginTests";
981
+ productName = Pods_PluginTests;
982
+ productReference = 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */;
983
+ productType = "com.apple.product-type.framework";
984
+ };
985
+ /* End PBXNativeTarget section */
986
+
987
+ /* Begin PBXProject section */
988
+ BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
989
+ isa = PBXProject;
990
+ attributes = {
991
+ LastSwiftUpdateCheck = 1300;
992
+ LastUpgradeCheck = 1300;
993
+ };
994
+ buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
995
+ compatibilityVersion = "Xcode 8.0";
996
+ developmentRegion = en;
997
+ hasScannedForEncodings = 0;
998
+ knownRegions = (
999
+ Base,
1000
+ en,
1001
+ );
1002
+ mainGroup = CF1408CF629C7361332E53B88F7BD30C;
1003
+ productRefGroup = B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */;
1004
+ projectDirPath = "";
1005
+ projectRoot = "";
1006
+ targets = (
1007
+ 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */,
1008
+ 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */,
1009
+ 10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */,
1010
+ 401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */,
1011
+ );
1012
+ };
1013
+ /* End PBXProject section */
1014
+
1015
+ /* Begin PBXResourcesBuildPhase section */
1016
+ 35B229A540F02FD5EB6A4690A3C8F305 /* Resources */ = {
1017
+ isa = PBXResourcesBuildPhase;
1018
+ buildActionMask = 2147483647;
1019
+ files = (
1020
+ );
1021
+ runOnlyForDeploymentPostprocessing = 0;
1022
+ };
1023
+ 3A97EFA7B71B3FFD86BAC45D5F6918B9 /* Resources */ = {
1024
+ isa = PBXResourcesBuildPhase;
1025
+ buildActionMask = 2147483647;
1026
+ files = (
1027
+ E843899B972E8B22DFF9924095138612 /* native-bridge.js in Resources */,
1028
+ );
1029
+ runOnlyForDeploymentPostprocessing = 0;
1030
+ };
1031
+ 66F8DAFC08A88AE635AABEADC89F9782 /* Resources */ = {
1032
+ isa = PBXResourcesBuildPhase;
1033
+ buildActionMask = 2147483647;
1034
+ files = (
1035
+ );
1036
+ runOnlyForDeploymentPostprocessing = 0;
1037
+ };
1038
+ D83EB9346E09FD648178670BDECEE217 /* Resources */ = {
1039
+ isa = PBXResourcesBuildPhase;
1040
+ buildActionMask = 2147483647;
1041
+ files = (
1042
+ );
1043
+ runOnlyForDeploymentPostprocessing = 0;
1044
+ };
1045
+ /* End PBXResourcesBuildPhase section */
1046
+
1047
+ /* Begin PBXSourcesBuildPhase section */
1048
+ 2D48F627781AD03E922A33FC14A99A64 /* Sources */ = {
1049
+ isa = PBXSourcesBuildPhase;
1050
+ buildActionMask = 2147483647;
1051
+ files = (
1052
+ DE131CBD2B2804DD9FE142BA444F5535 /* AppUUID.swift in Sources */,
1053
+ C049135893F587AB48DF7D3FFF78B11F /* Array+Capacitor.swift in Sources */,
1054
+ 8F3C06AC6E1F2973690132AA831A974E /* Capacitor-dummy.m in Sources */,
1055
+ 6499571DA08D1657FF4D41DA9C787B40 /* CapacitorBridge.swift in Sources */,
1056
+ 6E2B0431D0C00D806D6C429EC24775D2 /* CapacitorCookieManager.swift in Sources */,
1057
+ 8A0D9F3CA8A61AF53C4CB21392997B96 /* CapacitorCookies.swift in Sources */,
1058
+ D0364445F048FA7EB4A15FC598E8B0F0 /* CapacitorExtension.swift in Sources */,
1059
+ F912DC8B24E466B52C62AE6981910DAC /* CapacitorHttp.swift in Sources */,
1060
+ 92B3C0621B5FCC4E2AA158476D39FDA7 /* CapacitorUrlRequest.swift in Sources */,
1061
+ 47562D9B2EFE41268C755F3D94009B33 /* CAPApplicationDelegateProxy.swift in Sources */,
1062
+ 6C98CF0222C4E34A32D15D78EB9828C3 /* CAPBridge.swift in Sources */,
1063
+ DD71D79243DB0AC9852AF9DBAEEDDB6A /* CAPBridgeDelegate.swift in Sources */,
1064
+ F6CF673A9F0313C299DDF96EC67CECD5 /* CAPBridgedJSTypes.m in Sources */,
1065
+ FA49B51FCEACCED0EEEC57997E8A5984 /* CAPBridgedPlugin+getMethod.swift in Sources */,
1066
+ 2E3FE4D334B21F8AD44BFEBC334C8711 /* CAPBridgeProtocol.swift in Sources */,
1067
+ 04ED6686FF99CEF3EFC06506E603C7DB /* CAPBridgeViewController.swift in Sources */,
1068
+ 63692AC9254B95E528681B2098F12F5B /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */,
1069
+ C0887A614BFA78960706323F3C18648C /* CAPFile.swift in Sources */,
1070
+ 04C8F6EE0AE0097D1E5EF7138CB5C602 /* CAPInstanceConfiguration.m in Sources */,
1071
+ C6F05967DFCD1345F3DFDDE25008F3D6 /* CAPInstanceConfiguration.swift in Sources */,
1072
+ A4A9B81722D01803C34BB5C26840DA87 /* CAPInstanceDescriptor.m in Sources */,
1073
+ D5826E858DDBA610DFBD18A8F38BF15A /* CAPInstanceDescriptor.swift in Sources */,
1074
+ 0C824753EA92B2155D9D256B7390410A /* CAPInstancePlugin.swift in Sources */,
1075
+ 95E8ECD893DFC8AC691F8E25CFAE0AC9 /* CAPLog.swift in Sources */,
1076
+ 60ED69AC187EA3786EA6983657D13342 /* CAPNotifications.swift in Sources */,
1077
+ 2666D052ED1ACC69CA5AE55D795DB2D6 /* CAPPlugin.m in Sources */,
1078
+ E96D3BC44AFCDE9DDBCA31B190C9B10A /* CAPPlugin+LoadInstance.swift in Sources */,
1079
+ C5C40B7F30E0061CC79F50441BBE9BE4 /* CAPPluginCall.m in Sources */,
1080
+ F0C06339F38B01B7958B7941DDA679EE /* CAPPluginCall.swift in Sources */,
1081
+ 1D8FD4E431D83E6C7A6468D68BD684C7 /* CAPPluginMethod.m in Sources */,
1082
+ 1F3D8CD431080C25445AD53417327E53 /* CAPWebView.swift in Sources */,
1083
+ D90EF3CF948878D735DC3C98F3F2DA61 /* Console.swift in Sources */,
1084
+ FE68C475414EFA73C1F431EA7B5F8D43 /* Data+Capacitor.swift in Sources */,
1085
+ 58AFAC623F150C2650A824210D205C0E /* DefaultPlugins.m in Sources */,
1086
+ DFDEAE47D8396E34E7BE99191A18DD4C /* DocLinks.swift in Sources */,
1087
+ 781B096C68F781D1D3FAAA493ED00BAB /* HttpRequestHandler.swift in Sources */,
1088
+ 5109C695E142158E00CC99CE02E4966D /* JS.swift in Sources */,
1089
+ C77D2DBA412FD352072C7393FE9E99B0 /* JSExport.swift in Sources */,
1090
+ 8D7ECA6FB27823AC4471E0AFA5BE2428 /* JSTypes.swift in Sources */,
1091
+ 74E7035E31FD80AE4F65C84D808B9475 /* KeyPath.swift in Sources */,
1092
+ 64F3B9141F5592DDCB81BCDA4923F5F4 /* NotificationHandlerProtocol.swift in Sources */,
1093
+ E0C19137B14817289D143F78266F5FCA /* NotificationRouter.swift in Sources */,
1094
+ DFD31D09B46E6BD8170382449C64A062 /* PluginCallResult.swift in Sources */,
1095
+ F4153D3964FA80C69DA306DF26AAC6BE /* PluginConfig.swift in Sources */,
1096
+ DD1FD4790D8FCFBCC968990AAB7A0061 /* Router.swift in Sources */,
1097
+ 5BECD856456C34ABA7806879EFF70620 /* TmpViewController.swift in Sources */,
1098
+ 7A276E06363281276A4E7EC42F512E07 /* UIColor.swift in Sources */,
1099
+ A6FF56343D91D58ACFC083015F543694 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */,
1100
+ 19E6B8278858D042D00307838E9DC1E3 /* WebView.swift in Sources */,
1101
+ 21B885CA26C98185EC77AC450856D952 /* WebViewAssetHandler.swift in Sources */,
1102
+ 30994691338389464506782A75511734 /* WebViewDelegationHandler.swift in Sources */,
1103
+ A9909A61EE87B8D4DB239EFE718FD2AC /* WKWebView+Capacitor.m in Sources */,
1104
+ 7C4C4386F48B530E01883C9E82A5E1BC /* WKWebView+Capacitor.swift in Sources */,
1105
+ );
1106
+ runOnlyForDeploymentPostprocessing = 0;
1107
+ };
1108
+ 2FF7471149041FFE11A793B09B9794C6 /* Sources */ = {
1109
+ isa = PBXSourcesBuildPhase;
1110
+ buildActionMask = 2147483647;
1111
+ files = (
1112
+ 41760722298D63A8B3BFD1EC2C87DFDF /* AppDelegate.m in Sources */,
1113
+ C4FCC645EEBA52EA564B1FD9C9E505DE /* CapacitorCordova-dummy.m in Sources */,
1114
+ 56ED9886950EB4F956295CEB44BF5305 /* CDVCommandDelegateImpl.m in Sources */,
1115
+ 9A4884032CD3DA7965C72C1D3174244C /* CDVConfigParser.m in Sources */,
1116
+ A4FD82AB39EE4040BE1AB21A85E8292E /* CDVInvokedUrlCommand.m in Sources */,
1117
+ 86DF20E9C841585776C2606FD0EA2616 /* CDVPlugin.m in Sources */,
1118
+ 6466F8DCE6B85C80E07082A01EC2CEAA /* CDVPlugin+Resources.m in Sources */,
1119
+ 70597D12171CD7BCD9F231A738830A89 /* CDVPluginManager.m in Sources */,
1120
+ 9CE38BD2235488F36ECB04B38B7B9CB2 /* CDVPluginResult.m in Sources */,
1121
+ B773CF6F31D74A7B063C4AE5B270EE72 /* CDVURLProtocol.m in Sources */,
1122
+ 81BC2F35B328D904C7314AC3B63EED81 /* CDVViewController.m in Sources */,
1123
+ CAC3A785BFA6CCE692D0C1DDC22D0212 /* NSDictionary+CordovaPreferences.m in Sources */,
1124
+ );
1125
+ runOnlyForDeploymentPostprocessing = 0;
1126
+ };
1127
+ CE7D9667E8CB083330F25DBA1A121614 /* Sources */ = {
1128
+ isa = PBXSourcesBuildPhase;
1129
+ buildActionMask = 2147483647;
1130
+ files = (
1131
+ 8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */,
1132
+ );
1133
+ runOnlyForDeploymentPostprocessing = 0;
1134
+ };
1135
+ CFFDE113260979B402C1E4C5B825B6C1 /* Sources */ = {
1136
+ isa = PBXSourcesBuildPhase;
1137
+ buildActionMask = 2147483647;
1138
+ files = (
1139
+ 164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */,
1140
+ );
1141
+ runOnlyForDeploymentPostprocessing = 0;
1142
+ };
1143
+ /* End PBXSourcesBuildPhase section */
1144
+
1145
+ /* Begin PBXTargetDependency section */
1146
+ 25C74AEBAA7E9DA72BE5E665AD5DF018 /* PBXTargetDependency */ = {
1147
+ isa = PBXTargetDependency;
1148
+ name = CapacitorCordova;
1149
+ target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
1150
+ targetProxy = 8151EDBB59446FE4E80948A6201110F7 /* PBXContainerItemProxy */;
1151
+ };
1152
+ 4FA308F928E7CDCEBA8CAB4E0DE13B70 /* PBXTargetDependency */ = {
1153
+ isa = PBXTargetDependency;
1154
+ name = Capacitor;
1155
+ target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
1156
+ targetProxy = 7610B90C89FE5C9E0F31E3FC3933EFD7 /* PBXContainerItemProxy */;
1157
+ };
1158
+ 79F3006A2268F65033A7E93E23F19980 /* PBXTargetDependency */ = {
1159
+ isa = PBXTargetDependency;
1160
+ name = Capacitor;
1161
+ target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
1162
+ targetProxy = 3F85B9BCE22ED5FB287C6C188E5FF961 /* PBXContainerItemProxy */;
1163
+ };
1164
+ 9BF6F161FECF5463565D78C17133E5F7 /* PBXTargetDependency */ = {
1165
+ isa = PBXTargetDependency;
1166
+ name = CapacitorCordova;
1167
+ target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
1168
+ targetProxy = 8A565F985533ABF19AA2848FE63804B3 /* PBXContainerItemProxy */;
1169
+ };
1170
+ D0D960E9D87FF5792E20FF69129D64B6 /* PBXTargetDependency */ = {
1171
+ isa = PBXTargetDependency;
1172
+ name = CapacitorCordova;
1173
+ target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
1174
+ targetProxy = 3B7820BC647CC1FE7FDFE72F0528D0ED /* PBXContainerItemProxy */;
1175
+ };
1176
+ /* End PBXTargetDependency section */
1177
+
1178
+ /* Begin XCBuildConfiguration section */
1179
+ 25C9C7BE983775E895ED3117240BC7EB /* Debug */ = {
1180
+ isa = XCBuildConfiguration;
1181
+ baseConfigurationReference = DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */;
1182
+ buildSettings = {
1183
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
1184
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1185
+ CLANG_ENABLE_OBJC_WEAK = NO;
1186
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1187
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1188
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1189
+ CURRENT_PROJECT_VERSION = 1;
1190
+ DEFINES_MODULE = YES;
1191
+ DYLIB_COMPATIBILITY_VERSION = 1;
1192
+ DYLIB_CURRENT_VERSION = 1;
1193
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1194
+ INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
1195
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1196
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1197
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1198
+ MACH_O_TYPE = staticlib;
1199
+ MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
1200
+ OTHER_LDFLAGS = "";
1201
+ OTHER_LIBTOOLFLAGS = "";
1202
+ PODS_ROOT = "$(SRCROOT)";
1203
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
1204
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1205
+ SDKROOT = iphoneos;
1206
+ SKIP_INSTALL = YES;
1207
+ TARGETED_DEVICE_FAMILY = "1,2";
1208
+ VERSIONING_SYSTEM = "apple-generic";
1209
+ VERSION_INFO_PREFIX = "";
1210
+ };
1211
+ name = Debug;
1212
+ };
1213
+ 309D957383FEEAC378D72FE7543F57D6 /* Release */ = {
1214
+ isa = XCBuildConfiguration;
1215
+ baseConfigurationReference = CF66C00F1A6169D2BD19E5352E1910B7 /* CapacitorCordova.release.xcconfig */;
1216
+ buildSettings = {
1217
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1218
+ CLANG_ENABLE_OBJC_WEAK = NO;
1219
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1220
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1221
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1222
+ CURRENT_PROJECT_VERSION = 1;
1223
+ DEFINES_MODULE = YES;
1224
+ DYLIB_COMPATIBILITY_VERSION = 1;
1225
+ DYLIB_CURRENT_VERSION = 1;
1226
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1227
+ GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
1228
+ INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
1229
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1230
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1231
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1232
+ MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
1233
+ PRODUCT_MODULE_NAME = Cordova;
1234
+ PRODUCT_NAME = Cordova;
1235
+ SDKROOT = iphoneos;
1236
+ SKIP_INSTALL = YES;
1237
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
1238
+ SWIFT_VERSION = 5.0;
1239
+ TARGETED_DEVICE_FAMILY = "1,2";
1240
+ VALIDATE_PRODUCT = YES;
1241
+ VERSIONING_SYSTEM = "apple-generic";
1242
+ VERSION_INFO_PREFIX = "";
1243
+ };
1244
+ name = Release;
1245
+ };
1246
+ 84AC07D1B967FA01542DA3AB71BC3C47 /* Release */ = {
1247
+ isa = XCBuildConfiguration;
1248
+ baseConfigurationReference = 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */;
1249
+ buildSettings = {
1250
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
1251
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1252
+ CLANG_ENABLE_OBJC_WEAK = NO;
1253
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1254
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1255
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1256
+ CURRENT_PROJECT_VERSION = 1;
1257
+ DEFINES_MODULE = YES;
1258
+ DYLIB_COMPATIBILITY_VERSION = 1;
1259
+ DYLIB_CURRENT_VERSION = 1;
1260
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1261
+ INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
1262
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1263
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1264
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1265
+ MACH_O_TYPE = staticlib;
1266
+ MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
1267
+ OTHER_LDFLAGS = "";
1268
+ OTHER_LIBTOOLFLAGS = "";
1269
+ PODS_ROOT = "$(SRCROOT)";
1270
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
1271
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1272
+ SDKROOT = iphoneos;
1273
+ SKIP_INSTALL = YES;
1274
+ TARGETED_DEVICE_FAMILY = "1,2";
1275
+ VALIDATE_PRODUCT = YES;
1276
+ VERSIONING_SYSTEM = "apple-generic";
1277
+ VERSION_INFO_PREFIX = "";
1278
+ };
1279
+ name = Release;
1280
+ };
1281
+ 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = {
1282
+ isa = XCBuildConfiguration;
1283
+ buildSettings = {
1284
+ ALWAYS_SEARCH_USER_PATHS = NO;
1285
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
1286
+ CLANG_ANALYZER_NONNULL = YES;
1287
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1288
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
1289
+ CLANG_CXX_LIBRARY = "libc++";
1290
+ CLANG_ENABLE_MODULES = YES;
1291
+ CLANG_ENABLE_OBJC_ARC = YES;
1292
+ CLANG_ENABLE_OBJC_WEAK = YES;
1293
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1294
+ CLANG_WARN_BOOL_CONVERSION = YES;
1295
+ CLANG_WARN_COMMA = YES;
1296
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
1297
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1298
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1299
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1300
+ CLANG_WARN_EMPTY_BODY = YES;
1301
+ CLANG_WARN_ENUM_CONVERSION = YES;
1302
+ CLANG_WARN_INFINITE_RECURSION = YES;
1303
+ CLANG_WARN_INT_CONVERSION = YES;
1304
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1305
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1306
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1307
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1308
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1309
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1310
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
1311
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
1312
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
1313
+ CLANG_WARN_UNREACHABLE_CODE = YES;
1314
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1315
+ COPY_PHASE_STRIP = NO;
1316
+ DEBUG_INFORMATION_FORMAT = dwarf;
1317
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
1318
+ ENABLE_TESTABILITY = YES;
1319
+ GCC_C_LANGUAGE_STANDARD = gnu11;
1320
+ GCC_DYNAMIC_NO_PIC = NO;
1321
+ GCC_NO_COMMON_BLOCKS = YES;
1322
+ GCC_OPTIMIZATION_LEVEL = 0;
1323
+ GCC_PREPROCESSOR_DEFINITIONS = (
1324
+ "POD_CONFIGURATION_DEBUG=1",
1325
+ "DEBUG=1",
1326
+ "$(inherited)",
1327
+ );
1328
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1329
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1330
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
1331
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1332
+ GCC_WARN_UNUSED_FUNCTION = YES;
1333
+ GCC_WARN_UNUSED_VARIABLE = YES;
1334
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1335
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
1336
+ MTL_FAST_MATH = YES;
1337
+ ONLY_ACTIVE_ARCH = YES;
1338
+ PRODUCT_NAME = "$(TARGET_NAME)";
1339
+ STRIP_INSTALLED_PRODUCT = NO;
1340
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
1341
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1342
+ SWIFT_VERSION = 5.0;
1343
+ SYMROOT = "${SRCROOT}/../build";
1344
+ };
1345
+ name = Debug;
1346
+ };
1347
+ 9972596614DF03AC70123A2F5CB84AEA /* Debug */ = {
1348
+ isa = XCBuildConfiguration;
1349
+ baseConfigurationReference = 4496F2751733C2677B563A20FAA46B28 /* Capacitor.debug.xcconfig */;
1350
+ buildSettings = {
1351
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1352
+ CLANG_ENABLE_OBJC_WEAK = NO;
1353
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1354
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1355
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1356
+ CURRENT_PROJECT_VERSION = 1;
1357
+ DEFINES_MODULE = YES;
1358
+ DYLIB_COMPATIBILITY_VERSION = 1;
1359
+ DYLIB_CURRENT_VERSION = 1;
1360
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1361
+ GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
1362
+ INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
1363
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1364
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1365
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1366
+ MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
1367
+ PRODUCT_MODULE_NAME = Capacitor;
1368
+ PRODUCT_NAME = Capacitor;
1369
+ SDKROOT = iphoneos;
1370
+ SKIP_INSTALL = YES;
1371
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
1372
+ SWIFT_VERSION = 5.1;
1373
+ TARGETED_DEVICE_FAMILY = "1,2";
1374
+ VERSIONING_SYSTEM = "apple-generic";
1375
+ VERSION_INFO_PREFIX = "";
1376
+ };
1377
+ name = Debug;
1378
+ };
1379
+ 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = {
1380
+ isa = XCBuildConfiguration;
1381
+ buildSettings = {
1382
+ ALWAYS_SEARCH_USER_PATHS = NO;
1383
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
1384
+ CLANG_ANALYZER_NONNULL = YES;
1385
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1386
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
1387
+ CLANG_CXX_LIBRARY = "libc++";
1388
+ CLANG_ENABLE_MODULES = YES;
1389
+ CLANG_ENABLE_OBJC_ARC = YES;
1390
+ CLANG_ENABLE_OBJC_WEAK = YES;
1391
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1392
+ CLANG_WARN_BOOL_CONVERSION = YES;
1393
+ CLANG_WARN_COMMA = YES;
1394
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
1395
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1396
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1397
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1398
+ CLANG_WARN_EMPTY_BODY = YES;
1399
+ CLANG_WARN_ENUM_CONVERSION = YES;
1400
+ CLANG_WARN_INFINITE_RECURSION = YES;
1401
+ CLANG_WARN_INT_CONVERSION = YES;
1402
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1403
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1404
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1405
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1406
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1407
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1408
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
1409
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
1410
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
1411
+ CLANG_WARN_UNREACHABLE_CODE = YES;
1412
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1413
+ COPY_PHASE_STRIP = NO;
1414
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1415
+ ENABLE_NS_ASSERTIONS = NO;
1416
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
1417
+ GCC_C_LANGUAGE_STANDARD = gnu11;
1418
+ GCC_NO_COMMON_BLOCKS = YES;
1419
+ GCC_PREPROCESSOR_DEFINITIONS = (
1420
+ "POD_CONFIGURATION_RELEASE=1",
1421
+ "$(inherited)",
1422
+ );
1423
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1424
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1425
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
1426
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1427
+ GCC_WARN_UNUSED_FUNCTION = YES;
1428
+ GCC_WARN_UNUSED_VARIABLE = YES;
1429
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1430
+ MTL_ENABLE_DEBUG_INFO = NO;
1431
+ MTL_FAST_MATH = YES;
1432
+ PRODUCT_NAME = "$(TARGET_NAME)";
1433
+ STRIP_INSTALLED_PRODUCT = NO;
1434
+ SWIFT_COMPILATION_MODE = wholemodule;
1435
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
1436
+ SWIFT_VERSION = 5.0;
1437
+ SYMROOT = "${SRCROOT}/../build";
1438
+ };
1439
+ name = Release;
1440
+ };
1441
+ A8FB62F5F674B0930639DEC59B1C764B /* Release */ = {
1442
+ isa = XCBuildConfiguration;
1443
+ baseConfigurationReference = 8A9631831A7E00D058D6258EBD476BF7 /* Capacitor.release.xcconfig */;
1444
+ buildSettings = {
1445
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1446
+ CLANG_ENABLE_OBJC_WEAK = NO;
1447
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1448
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1449
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1450
+ CURRENT_PROJECT_VERSION = 1;
1451
+ DEFINES_MODULE = YES;
1452
+ DYLIB_COMPATIBILITY_VERSION = 1;
1453
+ DYLIB_CURRENT_VERSION = 1;
1454
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1455
+ GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
1456
+ INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
1457
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1458
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1459
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1460
+ MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
1461
+ PRODUCT_MODULE_NAME = Capacitor;
1462
+ PRODUCT_NAME = Capacitor;
1463
+ SDKROOT = iphoneos;
1464
+ SKIP_INSTALL = YES;
1465
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
1466
+ SWIFT_VERSION = 5.1;
1467
+ TARGETED_DEVICE_FAMILY = "1,2";
1468
+ VALIDATE_PRODUCT = YES;
1469
+ VERSIONING_SYSTEM = "apple-generic";
1470
+ VERSION_INFO_PREFIX = "";
1471
+ };
1472
+ name = Release;
1473
+ };
1474
+ C6A1C00DF92684BB667F98E7E274025C /* Release */ = {
1475
+ isa = XCBuildConfiguration;
1476
+ baseConfigurationReference = 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */;
1477
+ buildSettings = {
1478
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
1479
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1480
+ CLANG_ENABLE_OBJC_WEAK = NO;
1481
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1482
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1483
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1484
+ CURRENT_PROJECT_VERSION = 1;
1485
+ DEFINES_MODULE = YES;
1486
+ DYLIB_COMPATIBILITY_VERSION = 1;
1487
+ DYLIB_CURRENT_VERSION = 1;
1488
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1489
+ INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
1490
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1491
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1492
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1493
+ MACH_O_TYPE = staticlib;
1494
+ MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
1495
+ OTHER_LDFLAGS = "";
1496
+ OTHER_LIBTOOLFLAGS = "";
1497
+ PODS_ROOT = "$(SRCROOT)";
1498
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
1499
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1500
+ SDKROOT = iphoneos;
1501
+ SKIP_INSTALL = YES;
1502
+ TARGETED_DEVICE_FAMILY = "1,2";
1503
+ VALIDATE_PRODUCT = YES;
1504
+ VERSIONING_SYSTEM = "apple-generic";
1505
+ VERSION_INFO_PREFIX = "";
1506
+ };
1507
+ name = Release;
1508
+ };
1509
+ D6EC18C94E9BD0ACE4D077AEA7ACAB8F /* Debug */ = {
1510
+ isa = XCBuildConfiguration;
1511
+ baseConfigurationReference = 9DEB18BECD17AB37518D1058AD286E24 /* CapacitorCordova.debug.xcconfig */;
1512
+ buildSettings = {
1513
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1514
+ CLANG_ENABLE_OBJC_WEAK = NO;
1515
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1516
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1517
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1518
+ CURRENT_PROJECT_VERSION = 1;
1519
+ DEFINES_MODULE = YES;
1520
+ DYLIB_COMPATIBILITY_VERSION = 1;
1521
+ DYLIB_CURRENT_VERSION = 1;
1522
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1523
+ GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
1524
+ INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
1525
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1526
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1527
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1528
+ MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
1529
+ PRODUCT_MODULE_NAME = Cordova;
1530
+ PRODUCT_NAME = Cordova;
1531
+ SDKROOT = iphoneos;
1532
+ SKIP_INSTALL = YES;
1533
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
1534
+ SWIFT_VERSION = 5.0;
1535
+ TARGETED_DEVICE_FAMILY = "1,2";
1536
+ VERSIONING_SYSTEM = "apple-generic";
1537
+ VERSION_INFO_PREFIX = "";
1538
+ };
1539
+ name = Debug;
1540
+ };
1541
+ ED2378E15E9E9D668017ADE06F20D86F /* Debug */ = {
1542
+ isa = XCBuildConfiguration;
1543
+ baseConfigurationReference = 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */;
1544
+ buildSettings = {
1545
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
1546
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1547
+ CLANG_ENABLE_OBJC_WEAK = NO;
1548
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
1549
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
1550
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
1551
+ CURRENT_PROJECT_VERSION = 1;
1552
+ DEFINES_MODULE = YES;
1553
+ DYLIB_COMPATIBILITY_VERSION = 1;
1554
+ DYLIB_CURRENT_VERSION = 1;
1555
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
1556
+ INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
1557
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1558
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
1559
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1560
+ MACH_O_TYPE = staticlib;
1561
+ MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
1562
+ OTHER_LDFLAGS = "";
1563
+ OTHER_LIBTOOLFLAGS = "";
1564
+ PODS_ROOT = "$(SRCROOT)";
1565
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
1566
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
1567
+ SDKROOT = iphoneos;
1568
+ SKIP_INSTALL = YES;
1569
+ TARGETED_DEVICE_FAMILY = "1,2";
1570
+ VERSIONING_SYSTEM = "apple-generic";
1571
+ VERSION_INFO_PREFIX = "";
1572
+ };
1573
+ name = Debug;
1574
+ };
1575
+ /* End XCBuildConfiguration section */
1576
+
1577
+ /* Begin XCConfigurationList section */
1578
+ 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */ = {
1579
+ isa = XCConfigurationList;
1580
+ buildConfigurations = (
1581
+ ED2378E15E9E9D668017ADE06F20D86F /* Debug */,
1582
+ C6A1C00DF92684BB667F98E7E274025C /* Release */,
1583
+ );
1584
+ defaultConfigurationIsVisible = 0;
1585
+ defaultConfigurationName = Release;
1586
+ };
1587
+ 4176B4DDA034BB21A84BC59E7186AB6D /* Build configuration list for PBXNativeTarget "CapacitorCordova" */ = {
1588
+ isa = XCConfigurationList;
1589
+ buildConfigurations = (
1590
+ D6EC18C94E9BD0ACE4D077AEA7ACAB8F /* Debug */,
1591
+ 309D957383FEEAC378D72FE7543F57D6 /* Release */,
1592
+ );
1593
+ defaultConfigurationIsVisible = 0;
1594
+ defaultConfigurationName = Release;
1595
+ };
1596
+ 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
1597
+ isa = XCConfigurationList;
1598
+ buildConfigurations = (
1599
+ 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */,
1600
+ 9E406C6AAF85E580207CD97B0044DEAB /* Release */,
1601
+ );
1602
+ defaultConfigurationIsVisible = 0;
1603
+ defaultConfigurationName = Release;
1604
+ };
1605
+ 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */ = {
1606
+ isa = XCConfigurationList;
1607
+ buildConfigurations = (
1608
+ 25C9C7BE983775E895ED3117240BC7EB /* Debug */,
1609
+ 84AC07D1B967FA01542DA3AB71BC3C47 /* Release */,
1610
+ );
1611
+ defaultConfigurationIsVisible = 0;
1612
+ defaultConfigurationName = Release;
1613
+ };
1614
+ B199849C64840E0A9456B3139423B266 /* Build configuration list for PBXNativeTarget "Capacitor" */ = {
1615
+ isa = XCConfigurationList;
1616
+ buildConfigurations = (
1617
+ 9972596614DF03AC70123A2F5CB84AEA /* Debug */,
1618
+ A8FB62F5F674B0930639DEC59B1C764B /* Release */,
1619
+ );
1620
+ defaultConfigurationIsVisible = 0;
1621
+ defaultConfigurationName = Release;
1622
+ };
1623
+ /* End XCConfigurationList section */
1624
+ };
1625
+ rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
1626
+ }