@capgo/camera-preview 5.0.0 → 5.0.2
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.
- package/README.md +22 -30
- package/android/.gradle/8.0.2/checksums/checksums.lock +0 -0
- package/android/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.0.2/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.0.2/executionHistory/executionHistory.bin +0 -0
- package/android/.gradle/8.0.2/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/8.0.2/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.0.2/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/8.0.2/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.0.2/fileHashes/resourceHashesCache.bin +0 -0
- package/android/.gradle/8.0.2/gc.properties +0 -0
- package/android/.gradle/8.2.1/checksums/checksums.lock +0 -0
- package/android/.gradle/8.2.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.2.1/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.2.1/executionHistory/executionHistory.bin +0 -0
- package/android/.gradle/8.2.1/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/8.2.1/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.2.1/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/8.2.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.2.1/gc.properties +0 -0
- package/android/.gradle/8.7/checksums/checksums.lock +0 -0
- package/android/.gradle/8.7/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.7/executionHistory/executionHistory.bin +0 -0
- package/android/.gradle/8.7/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/8.7/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.7/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/8.7/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.7/fileHashes/resourceHashesCache.bin +0 -0
- package/android/.gradle/8.7/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/android/.gradle/file-system.probe +0 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/build.gradle +1 -1
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +1 -0
- package/android/gradlew +17 -12
- package/android/gradlew.bat +10 -10
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CameraActivity.java +219 -219
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CameraPreview.java +108 -85
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CustomSurfaceView.java +4 -3
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CustomTextureView.java +5 -5
- package/android/src/main/java/com/ahm/capacitor/camera/preview/Preview.java +44 -23
- package/dist/docs.json +29 -22
- package/dist/esm/definitions.d.ts +6 -2
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/web.d.ts +2 -2
- package/dist/esm/web.js +44 -45
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +45 -46
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +45 -46
- package/dist/plugin.js.map +1 -1
- package/ios/Plugin/CameraController.swift +35 -14
- package/ios/Plugin/Plugin.swift +25 -26
- package/ios/Plugin.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/Plugin.xcworkspace/xcuserdata/martindonadieu.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/PluginTests/PluginTests.swift +61 -13
- package/ios/Podfile.lock +3 -3
- package/ios/Pods/CapacitorCordova/LICENSE +23 -0
- package/ios/Pods/CapacitorCordova/README.md +39 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/CapacitorCordova.h +21 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/AppDelegate.h +8 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/AppDelegate.m +5 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDV.h +28 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVAvailability.h +109 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegate.h +51 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegateImpl.h +39 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegateImpl.m +154 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVConfigParser.h +31 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVConfigParser.m +81 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVInvokedUrlCommand.h +52 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVInvokedUrlCommand.m +116 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h +81 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m +154 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginManager.h +25 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginManager.m +77 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginResult.h +82 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginResult.m +216 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVScreenOrientationDelegate.h +33 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUIWebViewDelegate.h +41 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUIWebViewDelegate.m +399 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVURLProtocol.h +27 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVURLProtocol.m +74 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUserAgentUtil.h +27 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUserAgentUtil.m +156 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVViewController.h +30 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVViewController.m +34 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/NSDictionary+CordovaPreferences.h +35 -0
- package/ios/Pods/CapacitorCordova/ios/CapacitorCordova/CapacitorCordova/Classes/Public/NSDictionary+CordovaPreferences.m +63 -0
- package/ios/Pods/Local Podspecs/Capacitor.podspec.json +31 -0
- package/ios/Pods/Manifest.lock +23 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +1489 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/martindonadieu.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +8 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +32 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +55 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +93 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +14 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +14 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +55 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +93 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +15 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +15 -0
- package/package.json +41 -48
|
@@ -0,0 +1,1489 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 48;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
00BA576AE58FA6174C6E64D1A29B08AC /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A84069CFFC44FF6E6A2A9F98B8F1628A /* CDVViewController.m */; };
|
|
11
|
+
028059F3211CD10A29EC6950590D5783 /* CAPInstanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1F09C6B2E192BAD892E64FD64866425 /* CAPInstanceConfiguration.swift */; };
|
|
12
|
+
04FD2A8F315ECFEB419E3F6831347DD7 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FDA5A61A5C5ED90A3C50C5567D0A611 /* CDVCommandDelegateImpl.m */; };
|
|
13
|
+
09B84BC1AF4D7AE04D8EBE026F62D02B /* NotificationRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41E09D3704CC6AECB0C4DC356EC2999D /* NotificationRouter.swift */; };
|
|
14
|
+
0A5E9D204DA705EC842AD01E0E038923 /* CapacitorCookies.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5968082F2BA9AB9BF3245E124617AB6 /* CapacitorCookies.swift */; };
|
|
15
|
+
0C72045BB060F68A50A5550747AF2F48 /* CAPBridgeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6978163FF36A7572AF68A8F85751C292 /* CAPBridgeViewController.swift */; };
|
|
16
|
+
0E38692635AA47EF8BB01E39B18DE631 /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BAD829595D44AEBEEC361B49BC5C7CF /* CDVConfigParser.m */; };
|
|
17
|
+
0EBEA0461B0A27EC29659D0D2853C53C /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4BA18A7AAA1ED35AAE027D4A977EB8 /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
18
|
+
0EE475DF2D4D6CF8E877045BEF50C4A8 /* CAPInstanceConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A9CD5B03AEE5DB760F7B6FE2071A11 /* CAPInstanceConfiguration.m */; };
|
|
19
|
+
0F8D3BFC2360ED865A30CD7EC440F103 /* CAPInstanceDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D547A62C68F0B3E73102375BC5F680E6 /* CAPInstanceDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
20
|
+
104ED59A0B9B425F12D79C3A5F14BB04 /* Data+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F367B5795E9FCE3B8A0DE436060DF5C /* Data+Capacitor.swift */; };
|
|
21
|
+
107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
22
|
+
11050E99111839879B8FFEBBD8C7D9CA /* CapacitorHttp.swift in Sources */ = {isa = PBXBuildFile; fileRef = A495418BBE21292B021C0ECDC0CCE371 /* CapacitorHttp.swift */; };
|
|
23
|
+
164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */; };
|
|
24
|
+
16F88CC2C416B1322C2A5D475CD6AEF8 /* JS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0841C14855875C792E71C7374445CEE4 /* JS.swift */; };
|
|
25
|
+
17E254D84DD4E1FDC71D1CE49ED3FEC1 /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 76E2AA65C3786D65A07FF4105AADA0AC /* CDVInvokedUrlCommand.m */; };
|
|
26
|
+
18B762421B752D3739B4F959482EEDBB /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E0FFCEF34027A15206CCB255276D03A4 /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
27
|
+
21CAFB964B2E36E634B23FA618D2708A /* HttpRequestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688C22C9B587223133CC6BF141A48B38 /* HttpRequestHandler.swift */; };
|
|
28
|
+
229F379C9A281A3BAEE34E10B39C60E8 /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 9116DFD87AA99C3985074852E848FC89 /* CDVURLProtocol.m */; };
|
|
29
|
+
230005F99F3479B72F72915B1388FDA3 /* CAPPluginCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 4431A88BC62C23AEDF00E216013669B5 /* CAPPluginCall.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
30
|
+
24B91C6CDA4A93AD263C7FA6B00D7E48 /* JSExport.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD5F1F6EA75DEDE5553999BAE0A4F694 /* JSExport.swift */; };
|
|
31
|
+
251AD6413846E46469CB8A0A525F2764 /* CAPInstanceDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B317879DA2134BDD09F796FAEF798FF /* CAPInstanceDescriptor.m */; };
|
|
32
|
+
2637C93E31A8343175B8100BCF0A6629 /* CapacitorCordova-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E9A1ED8601F61FAA497CF26F8619FC1 /* CapacitorCordova-dummy.m */; };
|
|
33
|
+
28B914BA807E734346AAAD9B6F961E8E /* CDVPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CF708EC88E33DE867B5B6592B08396 /* CDVPluginManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
34
|
+
2D04BC2987255113EC340B7533B2097C /* CapacitorCordova-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A17722E52A9E955604211C0D027A01 /* CapacitorCordova-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
35
|
+
30610FD412C70F00B4D3C231DAE510DB /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F32BE3FF664609EC5741ACBA1C6195 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
36
|
+
33EEE005C90A7E25E3F1DEBAD85BFEFF /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B808E73BADFE09911D0546AE7EA6AE0A /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
37
|
+
3472DB1E34A7483011FB55A9C15D64F1 /* CAPBridgedJSTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8408B8ADF461A6891AF3D239A4D4A63D /* CAPBridgedJSTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
38
|
+
35EF9BA60C9CA8303FF8F4EB139575B9 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72854A8521C345D84979F89E2923BB93 /* UIColor.swift */; };
|
|
39
|
+
36576E4631346E101EBE33A5B4BF6E72 /* TmpViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7957F4F57ADB594206A30914949A14FE /* TmpViewController.swift */; };
|
|
40
|
+
370339B6138BA03BE133E415B4AC312D /* CDVPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D88B36EB445D8F1A370ED0635E4CEBD6 /* CDVPluginManager.m */; };
|
|
41
|
+
38D9E26AE66DB410CF2F99B147346F9A /* AppUUID.swift in Sources */ = {isa = PBXBuildFile; fileRef = E70B9060FD4634A48B9ED58CD547F0C3 /* AppUUID.swift */; };
|
|
42
|
+
3D01AC7C1CA793317AB16617A9DD11BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
43
|
+
3D8CFD46A18FE857FDF750071BCD8428 /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3A62026C067114267EB53AC19FF2A1D /* Console.swift */; };
|
|
44
|
+
3DF44EDD2FB4AFE98D0EEAA6216341A8 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03D83CB75DE1F253F70DE120A30B1D57 /* WebView.swift */; };
|
|
45
|
+
408FFF8CC8322F6EFDD7FD015E6EFD8B /* CapacitorBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 078748AFAC5D85F6906635FC460C81AF /* CapacitorBridge.swift */; };
|
|
46
|
+
424ECC1271F7DB089ED332AD2DB37031 /* CAPPluginCall.m in Sources */ = {isa = PBXBuildFile; fileRef = F75D1E0A48BEEB35971340AB38D20328 /* CAPPluginCall.m */; };
|
|
47
|
+
43A962AE7A4F7CC386447BD12B04DDA1 /* WebViewAssetHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D5D3245520672087AF516A5F107BD31 /* WebViewAssetHandler.swift */; };
|
|
48
|
+
44EEE63FD850CE5BC8DE39D56CC1E494 /* CAPInstanceConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 294961B5A796D986CDA20A7B4CAB6640 /* CAPInstanceConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
49
|
+
4FB5C13EE6F1D6D2975B675CC6E0F9A7 /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BA8C1572A52DC718FF0FEBD24816107 /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
50
|
+
52AAF80F1C5B6D7F24A1A0D57E64BD19 /* CAPPluginMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 33E50F9567BA624A3555409DF950F4DA /* CAPPluginMethod.m */; };
|
|
51
|
+
53B5990A61C5C1920E0E1F832CCD085B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E9D5B2B39095A70D08792227E3B786C7 /* PrivacyInfo.xcprivacy */; };
|
|
52
|
+
5963E6CC0CF35266A284468617B0CDDB /* native-bridge.js in Resources */ = {isa = PBXBuildFile; fileRef = 3E87B70A799E7510A4A086DD977CB74B /* native-bridge.js */; };
|
|
53
|
+
5ACFDC60EE2520F1FB90F57DF7E257EF /* DocLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C08BE43DB432FCD59CD477CC583F24A /* DocLinks.swift */; };
|
|
54
|
+
5AE8F94F6601B1770CCD0C58A1391073 /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA2368528C07B5E2ADE79A6582B47EB /* CDVPlugin.m */; };
|
|
55
|
+
5BF0C2015F79C03536B665C1207A0D92 /* CAPPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D2399A8CE87B39CA26E160F2B2B986 /* CAPPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
56
|
+
622B89CC214F02105A39F0A426FFFB3A /* CDVUIWebViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D968F77B9B2E093D09986DEA4535EC3 /* CDVUIWebViewDelegate.m */; };
|
|
57
|
+
627B54C197F2FB29EC3649DC56922E1E /* NotificationHandlerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF251F8DFBE58313A0499E6D0D49D8AF /* NotificationHandlerProtocol.swift */; };
|
|
58
|
+
65B779F017438A7C6A31F898B532E8CB /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFB60E79395B988C007794DE9711175 /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */; };
|
|
59
|
+
6627A50D08FB0975BF67BBDA364BB314 /* CAPBridgedJSTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CB85642A2EBD74197AD30D048F1993E /* CAPBridgedJSTypes.m */; };
|
|
60
|
+
6754E201FEA181C079871B0E6F0C4C94 /* CDVUIWebViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B08C0C1589E6B9F21753FF0A711B0653 /* CDVUIWebViewDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
61
|
+
6E6FCDE2667C28A91129029906427769 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B432CCF4E3EC42E605A3BACFCDD67A /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
62
|
+
6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
63
|
+
746758DDA6BF683A8E48FAD7AB4B29DB /* Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E97FF6ACD02FAD4DC22DD5BD7FBD2B /* Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
64
|
+
74B26D2A70A56BB581D05BD67E789501 /* CapacitorCookieManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED5A0978BA440E7EAC6EE3B23132330C /* CapacitorCookieManager.swift */; };
|
|
65
|
+
75673F34BACB93E8BBE9B19E14780655 /* WKWebView+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE451C964BF99C4D27B84A49CB89F08 /* WKWebView+Capacitor.swift */; };
|
|
66
|
+
76E16C14EE701056C1604F92DFA4DA63 /* WebViewDelegationHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66C2B9EDFC10ADD477B17EBAB9211A09 /* WebViewDelegationHandler.swift */; };
|
|
67
|
+
77B575B74252223F319D3A9E96C8404B /* CDVUserAgentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD0A3C27BC98667256912FEC4C0BF1A /* CDVUserAgentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
68
|
+
77F0D41E41AD3AF71481B7280F0DD523 /* JSValueDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B47699B64A63B6A560D68255CD04301 /* JSValueDecoder.swift */; };
|
|
69
|
+
7AD69F087B467867019A906E591E9FFF /* CDVUserAgentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 61427FD540519F0BE0832FE722C9032A /* CDVUserAgentUtil.m */; };
|
|
70
|
+
7C079F79163536C982EAA9E9291D4B95 /* CAPPlugin+LoadInstance.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD86DDDC56B606EBD896E9BD121C540D /* CAPPlugin+LoadInstance.swift */; };
|
|
71
|
+
7FCEA47EF83776D7D94EEA8FF098ABAC /* UIStatusBarManager+CAPHandleTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AB67CF49DD281CCF48C2E88B535011 /* UIStatusBarManager+CAPHandleTapAction.m */; };
|
|
72
|
+
82330CC062E2EABA3F8543076121FF4C /* CAPInstancePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5686FA91A532F4E8380A5F0A4ACEC18 /* CAPInstancePlugin.swift */; };
|
|
73
|
+
8449D872DEBC6730EAF4CEC47963440D /* CAPNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E8BCD32748244289C48FC5F8FE039D7 /* CAPNotifications.swift */; };
|
|
74
|
+
849457714F77A0F860592DD54C79F87E /* KeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09C1626A6D676A7543072C263AD4AE8A /* KeyPath.swift */; };
|
|
75
|
+
87A13D0A96A8EA60827C83FC86A5181E /* CAPBridgedPlugin+getMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 521C3F08CCAA1497F407B6A13D50187E /* CAPBridgedPlugin+getMethod.swift */; };
|
|
76
|
+
893CA017D4D0C72A818651C821DE67B4 /* CAPBridgeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEA1C0CC475B3337F0A0D7AA65610F4E /* CAPBridgeDelegate.swift */; };
|
|
77
|
+
8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */; };
|
|
78
|
+
8E6698C4F66860A5E9C3D8EF2A63E856 /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E2A76D528AAAC07B97FD8C79E93A19CD /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
79
|
+
9155C059841C277041B223569AC0FD05 /* CapacitorCordova.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D39FB23A34D0613F4F06145A2DE9A1 /* CapacitorCordova.h */; settings = {ATTRIBUTES = (Project, ); }; };
|
|
80
|
+
9C3067B37709DE001D06D6A5481DF7ED /* CAPLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F87AE2C00221C7FFFBA396BAE7BE1C3 /* CAPLog.swift */; };
|
|
81
|
+
9CB54853C7B9FDF8578939EEF6C4F99E /* DefaultPlugins.m in Sources */ = {isa = PBXBuildFile; fileRef = CA3A0F2EB1022E1F4B1226902F750809 /* DefaultPlugins.m */; };
|
|
82
|
+
A19F78585C3C42F7C465AA224609809B /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B89855F39CEF3B724753AAA7DF6E40F /* Router.swift */; };
|
|
83
|
+
A85E34B502613C34C51B68A4B47F61DF /* KeyValueStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB400AA9747D775F3F5CB4E79F39979B /* KeyValueStore.swift */; };
|
|
84
|
+
AD0BDFBC5C2795F7BF128EFF013EE2DC /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B714A280EAD086A2C1B0303471B473 /* NSDictionary+CordovaPreferences.m */; };
|
|
85
|
+
AD3B1A73EDA403F214D36813F1BC83DE /* CAPPluginMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 946A91966E8FFC4AA97CBA75061FD4FE /* CAPPluginMethod.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
86
|
+
AF34D4751B43BC7467E59E58B0055136 /* PluginCallResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52A8F64A42B3C1EC2FE950FA01B65DB7 /* PluginCallResult.swift */; };
|
|
87
|
+
AF597AE567F66C9B3B6CF67205BF5925 /* Array+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA9C9473EA5F513C7153F4FD7A0755D7 /* Array+Capacitor.swift */; };
|
|
88
|
+
B0B86A84340918A9F55DA4CA2AB79096 /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3F6668FC4E98150A32DFE1DE045D67 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
89
|
+
B35E123C07BF77E46295D8CBD76049FB /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */; };
|
|
90
|
+
B66BD7C959E925C69A793B20CBC9C54A /* CAPApplicationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 513C37B9DEDB4F8D2E143D064A2CBBED /* CAPApplicationDelegateProxy.swift */; };
|
|
91
|
+
BA777E373171622ACE8987E14C813216 /* CAPBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FED00DECA9FA789DE40E000F4AEA434 /* CAPBridge.swift */; };
|
|
92
|
+
BBA6A49961A383667EC5DA0447D92DB8 /* JSValueEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1FD6A89D1B3C1C8F19808AFE29CEBCF /* JSValueEncoder.swift */; };
|
|
93
|
+
BE76885E050FE8531DC030C3410A6229 /* CAPFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F19874752025C1A3279E3F6CC8837735 /* CAPFile.swift */; };
|
|
94
|
+
BFB3EFF8FCA13AF4B3AB1CB40D399EEA /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 44CDE2F2ADF159FD645D70AC9E4896C2 /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
95
|
+
C449E2FA8E60D82A9FBFA16B2F79E674 /* CAPBridgedPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FB474961171F026524B17B6EF0AEDD08 /* CAPBridgedPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
96
|
+
C838097BA683BB08F96CD848C8EEC6CC /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C3F74AF58BE9F268ADEE0236A874C54 /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
97
|
+
CB0CC4056273A20036C21A6959E773A1 /* CapacitorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF71364655022CFB8A883161311767DE /* CapacitorExtension.swift */; };
|
|
98
|
+
CB40684EB87F8E6C0BE240C13A7FC1D1 /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D30D5207E6257483F4B2439B398C93 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
99
|
+
CE19930AA8EE63E2125632C09BF06723 /* JSTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89D8BE029C6E637B7F79A0FD0842B90F /* JSTypes.swift */; };
|
|
100
|
+
CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
101
|
+
CFD2260F9F1246AE490E350EE00A17CA /* WKWebView+Capacitor.m in Sources */ = {isa = PBXBuildFile; fileRef = F311CA0C189F6C3AE851A1FD179D265D /* WKWebView+Capacitor.m */; };
|
|
102
|
+
D75D5BAD0D10BED0CA8A59F9AFEFB837 /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF1273851CD381988A982A43005EB15 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
103
|
+
D79333A4DB303713F95542F68D25853C /* CAPPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AA3493D1DAEA2625347D8D0E7492940 /* CAPPlugin.m */; };
|
|
104
|
+
D9C167C921D66F9FFB550BD8744BF3FC /* CapacitorUrlRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5318044BAE18D246CA20CF428CE6FF0 /* CapacitorUrlRequest.swift */; };
|
|
105
|
+
DBC8762DA7014C2F62E00E5147E43221 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 099A5B8F62B49C6D0126F0B9A3A10BE8 /* AppDelegate.m */; };
|
|
106
|
+
DEB4FADC80E5E4F78E7A045D9FC9ACA3 /* Capacitor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8745B3392E1F2BC8CAAC4A9E53294A82 /* Capacitor-dummy.m */; };
|
|
107
|
+
EAF9FA3FF77FA0F2E99EBCCF04F27973 /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BBB0703AD5EA66C0D3C543ADFF2D0C6 /* CDVPluginResult.m */; };
|
|
108
|
+
EB9E3E4B90676004F7725AE8252AA5DF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
109
|
+
EBD971EFA7FA79F6FDFC6C6F2F838406 /* PluginConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3314A2D5BF586D854F9E8EA170C9F6BE /* PluginConfig.swift */; };
|
|
110
|
+
EC466687F213CFA8CEE2BA1E5C4D66B4 /* CAPInstanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 891E031EC6D13E48514CBD5B4FF63324 /* CAPInstanceDescriptor.swift */; };
|
|
111
|
+
EEE14435EEC95A2FDFF33692B3AA0C80 /* CAPBridgeProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE9F8EDB1FD97829809DE0869247CB98 /* CAPBridgeProtocol.swift */; };
|
|
112
|
+
F11419431F06A3BC1529B9BDB9328786 /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3385CB20900A46AD63E4032884E9A88C /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
113
|
+
F51B8EA42598260CB48FAF362D7ED758 /* CAPPluginCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63BE4E69F34C8FFDC893E6D376A248AD /* CAPPluginCall.swift */; };
|
|
114
|
+
FBE27B3389112F2FA1C2E127F3B32D6B /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B885FE514D819E010D64E1517D0873B /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
115
|
+
FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
116
|
+
/* End PBXBuildFile section */
|
|
117
|
+
|
|
118
|
+
/* Begin PBXContainerItemProxy section */
|
|
119
|
+
0E4616C505F68880947C43D74572D350 /* PBXContainerItemProxy */ = {
|
|
120
|
+
isa = PBXContainerItemProxy;
|
|
121
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
122
|
+
proxyType = 1;
|
|
123
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
124
|
+
remoteInfo = CapacitorCordova;
|
|
125
|
+
};
|
|
126
|
+
2F6FC894281F67E18387A6B73D633ECC /* PBXContainerItemProxy */ = {
|
|
127
|
+
isa = PBXContainerItemProxy;
|
|
128
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
129
|
+
proxyType = 1;
|
|
130
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
131
|
+
remoteInfo = CapacitorCordova;
|
|
132
|
+
};
|
|
133
|
+
460F2781C8D6F2F1478E7FF15BB9FADF /* PBXContainerItemProxy */ = {
|
|
134
|
+
isa = PBXContainerItemProxy;
|
|
135
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
136
|
+
proxyType = 1;
|
|
137
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
138
|
+
remoteInfo = CapacitorCordova;
|
|
139
|
+
};
|
|
140
|
+
6FDC33A286D0BDAE889048B5AE6064F2 /* PBXContainerItemProxy */ = {
|
|
141
|
+
isa = PBXContainerItemProxy;
|
|
142
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
143
|
+
proxyType = 1;
|
|
144
|
+
remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
|
|
145
|
+
remoteInfo = Capacitor;
|
|
146
|
+
};
|
|
147
|
+
9A1A52497CB724CDB862EE754C90C973 /* PBXContainerItemProxy */ = {
|
|
148
|
+
isa = PBXContainerItemProxy;
|
|
149
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
150
|
+
proxyType = 1;
|
|
151
|
+
remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
|
|
152
|
+
remoteInfo = Capacitor;
|
|
153
|
+
};
|
|
154
|
+
/* End PBXContainerItemProxy section */
|
|
155
|
+
|
|
156
|
+
/* Begin PBXFileReference section */
|
|
157
|
+
00D30D5207E6257483F4B2439B398C93 /* CDVPluginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVPluginResult.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginResult.h; sourceTree = "<group>"; };
|
|
158
|
+
03D83CB75DE1F253F70DE120A30B1D57 /* WebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebView.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/WebView.swift"; sourceTree = "<group>"; };
|
|
159
|
+
05FF62EF673EA5438F49708D573A32AF /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = Capacitor.modulemap; path = "../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Capacitor.modulemap"; sourceTree = "<group>"; };
|
|
160
|
+
078748AFAC5D85F6906635FC460C81AF /* CapacitorBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorBridge.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CapacitorBridge.swift"; sourceTree = "<group>"; };
|
|
161
|
+
0841C14855875C792E71C7374445CEE4 /* JS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JS.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/JS.swift"; sourceTree = "<group>"; };
|
|
162
|
+
099A5B8F62B49C6D0126F0B9A3A10BE8 /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/AppDelegate.m; sourceTree = "<group>"; };
|
|
163
|
+
09C1626A6D676A7543072C263AD4AE8A /* KeyPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPath.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/KeyPath.swift"; sourceTree = "<group>"; };
|
|
164
|
+
0B47699B64A63B6A560D68255CD04301 /* JSValueDecoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSValueDecoder.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Codable/JSValueDecoder.swift"; sourceTree = "<group>"; };
|
|
165
|
+
0B885FE514D819E010D64E1517D0873B /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+CordovaPreferences.h"; path = "ios/CapacitorCordova/CapacitorCordova/Classes/Public/NSDictionary+CordovaPreferences.h"; sourceTree = "<group>"; };
|
|
166
|
+
0C3F6668FC4E98150A32DFE1DE045D67 /* CDVAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVAvailability.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVAvailability.h; sourceTree = "<group>"; };
|
|
167
|
+
0F367B5795E9FCE3B8A0DE436060DF5C /* Data+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Capacitor.swift"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Data+Capacitor.swift"; sourceTree = "<group>"; };
|
|
168
|
+
0FD0A3C27BC98667256912FEC4C0BF1A /* CDVUserAgentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVUserAgentUtil.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUserAgentUtil.h; sourceTree = "<group>"; };
|
|
169
|
+
11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-Info.plist"; sourceTree = "<group>"; };
|
|
170
|
+
1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CapacitorCordova; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
171
|
+
1BA8C1572A52DC718FF0FEBD24816107 /* CDV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDV.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDV.h; sourceTree = "<group>"; };
|
|
172
|
+
1FED00DECA9FA789DE40E000F4AEA434 /* CAPBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridge.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridge.swift"; sourceTree = "<group>"; };
|
|
173
|
+
27A9CD5B03AEE5DB760F7B6FE2071A11 /* CAPInstanceConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceConfiguration.m; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceConfiguration.m"; sourceTree = "<group>"; };
|
|
174
|
+
294961B5A796D986CDA20A7B4CAB6640 /* CAPInstanceConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceConfiguration.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceConfiguration.h"; sourceTree = "<group>"; };
|
|
175
|
+
2B89855F39CEF3B724753AAA7DF6E40F /* Router.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Router.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Router.swift"; sourceTree = "<group>"; };
|
|
176
|
+
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; };
|
|
177
|
+
2F87AE2C00221C7FFFBA396BAE7BE1C3 /* CAPLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPLog.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPLog.swift"; sourceTree = "<group>"; };
|
|
178
|
+
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; };
|
|
179
|
+
3314A2D5BF586D854F9E8EA170C9F6BE /* PluginConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginConfig.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/PluginConfig.swift"; sourceTree = "<group>"; };
|
|
180
|
+
3385CB20900A46AD63E4032884E9A88C /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.h"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.h"; sourceTree = "<group>"; };
|
|
181
|
+
33E50F9567BA624A3555409DF950F4DA /* CAPPluginMethod.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginMethod.m; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginMethod.m"; sourceTree = "<group>"; };
|
|
182
|
+
3E87B70A799E7510A4A086DD977CB74B /* native-bridge.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "native-bridge.js"; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/assets/native-bridge.js"; sourceTree = "<group>"; };
|
|
183
|
+
3F4BA18A7AAA1ED35AAE027D4A977EB8 /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVCommandDelegateImpl.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegateImpl.h; sourceTree = "<group>"; };
|
|
184
|
+
3FDA5A61A5C5ED90A3C50C5567D0A611 /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVCommandDelegateImpl.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegateImpl.m; sourceTree = "<group>"; };
|
|
185
|
+
401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Plugin.modulemap"; sourceTree = "<group>"; };
|
|
186
|
+
41E09D3704CC6AECB0C4DC356EC2999D /* NotificationRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationRouter.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/NotificationRouter.swift"; sourceTree = "<group>"; };
|
|
187
|
+
4431A88BC62C23AEDF00E216013669B5 /* CAPPluginCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginCall.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginCall.h"; sourceTree = "<group>"; };
|
|
188
|
+
44CDE2F2ADF159FD645D70AC9E4896C2 /* CDVPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVPlugin.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h; sourceTree = "<group>"; };
|
|
189
|
+
44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Capacitor; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
190
|
+
45710AFD1331FB7370F319AC90A65684 /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capacitor.modulemap; sourceTree = "<group>"; };
|
|
191
|
+
45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
192
|
+
45CA3FEBB42A4B8778CB820AEE3A0871 /* CapacitorCordova.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.release.xcconfig; sourceTree = "<group>"; };
|
|
193
|
+
47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
194
|
+
4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Plugin"; path = Pods_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
195
|
+
4C08BE43DB432FCD59CD477CC583F24A /* DocLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocLinks.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/DocLinks.swift"; sourceTree = "<group>"; };
|
|
196
|
+
513C37B9DEDB4F8D2E143D064A2CBBED /* CAPApplicationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPApplicationDelegateProxy.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPApplicationDelegateProxy.swift"; sourceTree = "<group>"; };
|
|
197
|
+
521C3F08CCAA1497F407B6A13D50187E /* CAPBridgedPlugin+getMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPBridgedPlugin+getMethod.swift"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedPlugin+getMethod.swift"; sourceTree = "<group>"; };
|
|
198
|
+
52A8F64A42B3C1EC2FE950FA01B65DB7 /* PluginCallResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginCallResult.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/PluginCallResult.swift"; sourceTree = "<group>"; };
|
|
199
|
+
5300B310B216A9BD7D6FB50BCFFD15B5 /* Capacitor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capacitor-Info.plist"; sourceTree = "<group>"; };
|
|
200
|
+
535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
201
|
+
58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-PluginTests"; path = Pods_PluginTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
202
|
+
5C3F74AF58BE9F268ADEE0236A874C54 /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVScreenOrientationDelegate.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVScreenOrientationDelegate.h; sourceTree = "<group>"; };
|
|
203
|
+
5CB85642A2EBD74197AD30D048F1993E /* CAPBridgedJSTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPBridgedJSTypes.m; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedJSTypes.m"; sourceTree = "<group>"; };
|
|
204
|
+
5D5D3245520672087AF516A5F107BD31 /* WebViewAssetHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewAssetHandler.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WebViewAssetHandler.swift"; sourceTree = "<group>"; };
|
|
205
|
+
5E9A1ED8601F61FAA497CF26F8619FC1 /* CapacitorCordova-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CapacitorCordova-dummy.m"; sourceTree = "<group>"; };
|
|
206
|
+
61427FD540519F0BE0832FE722C9032A /* CDVUserAgentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVUserAgentUtil.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUserAgentUtil.m; sourceTree = "<group>"; };
|
|
207
|
+
62CF708EC88E33DE867B5B6592B08396 /* CDVPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVPluginManager.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginManager.h; sourceTree = "<group>"; };
|
|
208
|
+
62F32BE3FF664609EC5741ACBA1C6195 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVCommandDelegate.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVCommandDelegate.h; sourceTree = "<group>"; };
|
|
209
|
+
63BE4E69F34C8FFDC893E6D376A248AD /* CAPPluginCall.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPPluginCall.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginCall.swift"; sourceTree = "<group>"; };
|
|
210
|
+
66C2B9EDFC10ADD477B17EBAB9211A09 /* WebViewDelegationHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewDelegationHandler.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WebViewDelegationHandler.swift"; sourceTree = "<group>"; };
|
|
211
|
+
688C22C9B587223133CC6BF141A48B38 /* HttpRequestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpRequestHandler.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/HttpRequestHandler.swift"; sourceTree = "<group>"; };
|
|
212
|
+
6978163FF36A7572AF68A8F85751C292 /* CAPBridgeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeViewController.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeViewController.swift"; sourceTree = "<group>"; };
|
|
213
|
+
6B317879DA2134BDD09F796FAEF798FF /* CAPInstanceDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceDescriptor.m; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceDescriptor.m"; sourceTree = "<group>"; };
|
|
214
|
+
6DE921F4699DD8FBE9521D6531D0CB4B /* Capacitor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Capacitor.podspec; path = "../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
215
|
+
6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.release.xcconfig"; sourceTree = "<group>"; };
|
|
216
|
+
72854A8521C345D84979F89E2923BB93 /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/UIColor.swift"; sourceTree = "<group>"; };
|
|
217
|
+
734D3E6C923AB14796A693DEBDB60E7C /* CapacitorCordova-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-prefix.pch"; sourceTree = "<group>"; };
|
|
218
|
+
74D2399A8CE87B39CA26E160F2B2B986 /* CAPPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPlugin.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPlugin.h"; sourceTree = "<group>"; };
|
|
219
|
+
76E2AA65C3786D65A07FF4105AADA0AC /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVInvokedUrlCommand.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVInvokedUrlCommand.m; sourceTree = "<group>"; };
|
|
220
|
+
7957F4F57ADB594206A30914949A14FE /* TmpViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TmpViewController.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/TmpViewController.swift"; sourceTree = "<group>"; };
|
|
221
|
+
7AFB60E79395B988C007794DE9711175 /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.m"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.m"; sourceTree = "<group>"; };
|
|
222
|
+
7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
223
|
+
7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PluginTests-dummy.m"; sourceTree = "<group>"; };
|
|
224
|
+
7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Plugin-umbrella.h"; sourceTree = "<group>"; };
|
|
225
|
+
80B432CCF4E3EC42E605A3BACFCDD67A /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVInvokedUrlCommand.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVInvokedUrlCommand.h; sourceTree = "<group>"; };
|
|
226
|
+
8408B8ADF461A6891AF3D239A4D4A63D /* CAPBridgedJSTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedJSTypes.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedJSTypes.h"; sourceTree = "<group>"; };
|
|
227
|
+
8745B3392E1F2BC8CAAC4A9E53294A82 /* Capacitor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capacitor-dummy.m"; sourceTree = "<group>"; };
|
|
228
|
+
891E031EC6D13E48514CBD5B4FF63324 /* CAPInstanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceDescriptor.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceDescriptor.swift"; sourceTree = "<group>"; };
|
|
229
|
+
89D8BE029C6E637B7F79A0FD0842B90F /* JSTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSTypes.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/JSTypes.swift"; sourceTree = "<group>"; };
|
|
230
|
+
8AA3493D1DAEA2625347D8D0E7492940 /* CAPPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPlugin.m; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPlugin.m"; sourceTree = "<group>"; };
|
|
231
|
+
8BAD829595D44AEBEEC361B49BC5C7CF /* CDVConfigParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVConfigParser.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVConfigParser.m; sourceTree = "<group>"; };
|
|
232
|
+
8BBB0703AD5EA66C0D3C543ADFF2D0C6 /* CDVPluginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVPluginResult.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginResult.m; sourceTree = "<group>"; };
|
|
233
|
+
8D968F77B9B2E093D09986DEA4535EC3 /* CDVUIWebViewDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVUIWebViewDelegate.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUIWebViewDelegate.m; sourceTree = "<group>"; };
|
|
234
|
+
9116DFD87AA99C3985074852E848FC89 /* CDVURLProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVURLProtocol.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVURLProtocol.m; sourceTree = "<group>"; };
|
|
235
|
+
939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-Info.plist"; sourceTree = "<group>"; };
|
|
236
|
+
93D39FB23A34D0613F4F06145A2DE9A1 /* CapacitorCordova.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CapacitorCordova.h; path = ios/CapacitorCordova/CapacitorCordova/CapacitorCordova.h; sourceTree = "<group>"; };
|
|
237
|
+
946A91966E8FFC4AA97CBA75061FD4FE /* CAPPluginMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginMethod.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginMethod.h"; sourceTree = "<group>"; };
|
|
238
|
+
94B714A280EAD086A2C1B0303471B473 /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+CordovaPreferences.m"; path = "ios/CapacitorCordova/CapacitorCordova/Classes/Public/NSDictionary+CordovaPreferences.m"; sourceTree = "<group>"; };
|
|
239
|
+
97A17722E52A9E955604211C0D027A01 /* CapacitorCordova-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-umbrella.h"; sourceTree = "<group>"; };
|
|
240
|
+
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; };
|
|
241
|
+
9E8BCD32748244289C48FC5F8FE039D7 /* CAPNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPNotifications.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPNotifications.swift"; sourceTree = "<group>"; };
|
|
242
|
+
A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PluginTests-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
243
|
+
A495418BBE21292B021C0ECDC0CCE371 /* CapacitorHttp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorHttp.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorHttp.swift"; sourceTree = "<group>"; };
|
|
244
|
+
A5968082F2BA9AB9BF3245E124617AB6 /* CapacitorCookies.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorCookies.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorCookies.swift"; sourceTree = "<group>"; };
|
|
245
|
+
A84069CFFC44FF6E6A2A9F98B8F1628A /* CDVViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVViewController.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVViewController.m; sourceTree = "<group>"; };
|
|
246
|
+
AB0A5135E355DD812F3BD1CFDE1737A7 /* Capacitor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.debug.xcconfig; sourceTree = "<group>"; };
|
|
247
|
+
AD5F1F6EA75DEDE5553999BAE0A4F694 /* JSExport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSExport.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/JSExport.swift"; sourceTree = "<group>"; };
|
|
248
|
+
ADE1DA37D3E5BCD5F8DB49B8A395BB69 /* CapacitorCordova.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.debug.xcconfig; sourceTree = "<group>"; };
|
|
249
|
+
AF71364655022CFB8A883161311767DE /* CapacitorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorExtension.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CapacitorExtension.swift"; sourceTree = "<group>"; };
|
|
250
|
+
B08C0C1589E6B9F21753FF0A711B0653 /* CDVUIWebViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVUIWebViewDelegate.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVUIWebViewDelegate.h; sourceTree = "<group>"; };
|
|
251
|
+
B59A21E4D3BFC7A5BE8BA70C443E34A7 /* CapacitorCordova-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CapacitorCordova-Info.plist"; sourceTree = "<group>"; };
|
|
252
|
+
B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Plugin-dummy.m"; sourceTree = "<group>"; };
|
|
253
|
+
B808E73BADFE09911D0546AE7EA6AE0A /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/AppDelegate.h; sourceTree = "<group>"; };
|
|
254
|
+
BEA2368528C07B5E2ADE79A6582B47EB /* CDVPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVPlugin.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m; sourceTree = "<group>"; };
|
|
255
|
+
BF251F8DFBE58313A0499E6D0D49D8AF /* NotificationHandlerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationHandlerProtocol.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/NotificationHandlerProtocol.swift"; sourceTree = "<group>"; };
|
|
256
|
+
C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Plugin-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
257
|
+
CA3A0F2EB1022E1F4B1226902F750809 /* DefaultPlugins.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DefaultPlugins.m; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/DefaultPlugins.m"; sourceTree = "<group>"; };
|
|
258
|
+
CB400AA9747D775F3F5CB4E79F39979B /* KeyValueStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyValueStore.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/KeyValueStore.swift"; sourceTree = "<group>"; };
|
|
259
|
+
CD86DDDC56B606EBD896E9BD121C540D /* CAPPlugin+LoadInstance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPPlugin+LoadInstance.swift"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPlugin+LoadInstance.swift"; sourceTree = "<group>"; };
|
|
260
|
+
CDE451C964BF99C4D27B84A49CB89F08 /* WKWebView+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Capacitor.swift"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WKWebView+Capacitor.swift"; sourceTree = "<group>"; };
|
|
261
|
+
D1F09C6B2E192BAD892E64FD64866425 /* CAPInstanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceConfiguration.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceConfiguration.swift"; sourceTree = "<group>"; };
|
|
262
|
+
D5318044BAE18D246CA20CF428CE6FF0 /* CapacitorUrlRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorUrlRequest.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorUrlRequest.swift"; sourceTree = "<group>"; };
|
|
263
|
+
D547A62C68F0B3E73102375BC5F680E6 /* CAPInstanceDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceDescriptor.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstanceDescriptor.h"; sourceTree = "<group>"; };
|
|
264
|
+
D5AB67CF49DD281CCF48C2E88B535011 /* UIStatusBarManager+CAPHandleTapAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStatusBarManager+CAPHandleTapAction.m"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/UIStatusBarManager+CAPHandleTapAction.m"; sourceTree = "<group>"; };
|
|
265
|
+
D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PluginTests-frameworks.sh"; sourceTree = "<group>"; };
|
|
266
|
+
D7E97FF6ACD02FAD4DC22DD5BD7FBD2B /* Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Capacitor.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Capacitor.h"; sourceTree = "<group>"; };
|
|
267
|
+
D88B36EB445D8F1A370ED0635E4CEBD6 /* CDVPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CDVPluginManager.m; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPluginManager.m; sourceTree = "<group>"; };
|
|
268
|
+
DA9C9473EA5F513C7153F4FD7A0755D7 /* Array+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Capacitor.swift"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Array+Capacitor.swift"; sourceTree = "<group>"; };
|
|
269
|
+
DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.debug.xcconfig"; sourceTree = "<group>"; };
|
|
270
|
+
DAF1273851CD381988A982A43005EB15 /* CDVConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVConfigParser.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVConfigParser.h; sourceTree = "<group>"; };
|
|
271
|
+
DE9F8EDB1FD97829809DE0869247CB98 /* CAPBridgeProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeProtocol.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeProtocol.swift"; sourceTree = "<group>"; };
|
|
272
|
+
E0FFCEF34027A15206CCB255276D03A4 /* CDVViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVViewController.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVViewController.h; sourceTree = "<group>"; };
|
|
273
|
+
E1FD6A89D1B3C1C8F19808AFE29CEBCF /* JSValueEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSValueEncoder.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Codable/JSValueEncoder.swift"; sourceTree = "<group>"; };
|
|
274
|
+
E2A76D528AAAC07B97FD8C79E93A19CD /* CDVURLProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CDVURLProtocol.h; path = ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVURLProtocol.h; sourceTree = "<group>"; };
|
|
275
|
+
E3910D66CDD6B6A86502831EB0FE51C8 /* Capacitor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.release.xcconfig; sourceTree = "<group>"; };
|
|
276
|
+
E70B9060FD4634A48B9ED58CD547F0C3 /* AppUUID.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppUUID.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/AppUUID.swift"; sourceTree = "<group>"; };
|
|
277
|
+
E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PluginTests.modulemap"; sourceTree = "<group>"; };
|
|
278
|
+
E8E7F912183663D2F7DFCBC8B7C08CA4 /* Capacitor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-prefix.pch"; sourceTree = "<group>"; };
|
|
279
|
+
E9661DF0C46E3B22B562485E6BFE1933 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CapacitorCordova.modulemap; sourceTree = "<group>"; };
|
|
280
|
+
E9D5B2B39095A70D08792227E3B786C7 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/PrivacyInfo.xcprivacy"; sourceTree = "<group>"; };
|
|
281
|
+
ED5A0978BA440E7EAC6EE3B23132330C /* CapacitorCookieManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorCookieManager.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/CapacitorCookieManager.swift"; sourceTree = "<group>"; };
|
|
282
|
+
EEA1C0CC475B3337F0A0D7AA65610F4E /* CAPBridgeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeDelegate.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgeDelegate.swift"; sourceTree = "<group>"; };
|
|
283
|
+
F19874752025C1A3279E3F6CC8837735 /* CAPFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPFile.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPFile.swift"; sourceTree = "<group>"; };
|
|
284
|
+
F311CA0C189F6C3AE851A1FD179D265D /* WKWebView+Capacitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+Capacitor.m"; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/WKWebView+Capacitor.m"; sourceTree = "<group>"; };
|
|
285
|
+
F3A62026C067114267EB53AC19FF2A1D /* Console.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Console.swift; path = "../../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/Plugins/Console.swift"; sourceTree = "<group>"; };
|
|
286
|
+
F5686FA91A532F4E8380A5F0A4ACEC18 /* CAPInstancePlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstancePlugin.swift; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPInstancePlugin.swift"; sourceTree = "<group>"; };
|
|
287
|
+
F75D1E0A48BEEB35971340AB38D20328 /* CAPPluginCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginCall.m; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPPluginCall.m"; sourceTree = "<group>"; };
|
|
288
|
+
FB474961171F026524B17B6EF0AEDD08 /* CAPBridgedPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedPlugin.h; path = "../../../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor/Capacitor/CAPBridgedPlugin.h"; sourceTree = "<group>"; };
|
|
289
|
+
FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PluginTests-umbrella.h"; sourceTree = "<group>"; };
|
|
290
|
+
/* End PBXFileReference section */
|
|
291
|
+
|
|
292
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
293
|
+
05729AFBFB8A784E74F2959F06661750 /* Frameworks */ = {
|
|
294
|
+
isa = PBXFrameworksBuildPhase;
|
|
295
|
+
buildActionMask = 2147483647;
|
|
296
|
+
files = (
|
|
297
|
+
6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */,
|
|
298
|
+
);
|
|
299
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
300
|
+
};
|
|
301
|
+
2475EFD012C96C2FD58AC581A3DFB101 /* Frameworks */ = {
|
|
302
|
+
isa = PBXFrameworksBuildPhase;
|
|
303
|
+
buildActionMask = 2147483647;
|
|
304
|
+
files = (
|
|
305
|
+
3D01AC7C1CA793317AB16617A9DD11BB /* Foundation.framework in Frameworks */,
|
|
306
|
+
);
|
|
307
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
308
|
+
};
|
|
309
|
+
95453911476E60F0E7CB6DB21E6C18FA /* Frameworks */ = {
|
|
310
|
+
isa = PBXFrameworksBuildPhase;
|
|
311
|
+
buildActionMask = 2147483647;
|
|
312
|
+
files = (
|
|
313
|
+
EB9E3E4B90676004F7725AE8252AA5DF /* Foundation.framework in Frameworks */,
|
|
314
|
+
B35E123C07BF77E46295D8CBD76049FB /* WebKit.framework in Frameworks */,
|
|
315
|
+
);
|
|
316
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
317
|
+
};
|
|
318
|
+
FFD92798E00A88208723BEFC520C2C9A /* Frameworks */ = {
|
|
319
|
+
isa = PBXFrameworksBuildPhase;
|
|
320
|
+
buildActionMask = 2147483647;
|
|
321
|
+
files = (
|
|
322
|
+
FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */,
|
|
323
|
+
);
|
|
324
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
325
|
+
};
|
|
326
|
+
/* End PBXFrameworksBuildPhase section */
|
|
327
|
+
|
|
328
|
+
/* Begin PBXGroup section */
|
|
329
|
+
1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {
|
|
330
|
+
isa = PBXGroup;
|
|
331
|
+
children = (
|
|
332
|
+
D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */,
|
|
333
|
+
);
|
|
334
|
+
name = Frameworks;
|
|
335
|
+
sourceTree = "<group>";
|
|
336
|
+
};
|
|
337
|
+
1F5437FFA381E9E767196AFB06E4E43B /* @capacitor */ = {
|
|
338
|
+
isa = PBXGroup;
|
|
339
|
+
children = (
|
|
340
|
+
20427582AD506215C44259FB6DD18ACF /* ios */,
|
|
341
|
+
);
|
|
342
|
+
name = "@capacitor";
|
|
343
|
+
path = "@capacitor";
|
|
344
|
+
sourceTree = "<group>";
|
|
345
|
+
};
|
|
346
|
+
20427582AD506215C44259FB6DD18ACF /* ios */ = {
|
|
347
|
+
isa = PBXGroup;
|
|
348
|
+
children = (
|
|
349
|
+
34971D21B75763495B92BC9BAB3A3A8B /* Capacitor */,
|
|
350
|
+
);
|
|
351
|
+
name = ios;
|
|
352
|
+
path = ios;
|
|
353
|
+
sourceTree = "<group>";
|
|
354
|
+
};
|
|
355
|
+
20A37725AFD3BC0BA36006570BF181EA /* assets */ = {
|
|
356
|
+
isa = PBXGroup;
|
|
357
|
+
children = (
|
|
358
|
+
3E87B70A799E7510A4A086DD977CB74B /* native-bridge.js */,
|
|
359
|
+
);
|
|
360
|
+
name = assets;
|
|
361
|
+
path = assets;
|
|
362
|
+
sourceTree = "<group>";
|
|
363
|
+
};
|
|
364
|
+
30ADF72A247C60243FB65791BCBF03C0 /* .. */ = {
|
|
365
|
+
isa = PBXGroup;
|
|
366
|
+
children = (
|
|
367
|
+
BD85EF236EC6C6B1428A6C894734956E /* .. */,
|
|
368
|
+
);
|
|
369
|
+
name = ..;
|
|
370
|
+
path = ..;
|
|
371
|
+
sourceTree = "<group>";
|
|
372
|
+
};
|
|
373
|
+
32AA7444753EC1184E2C878B231ACC36 /* Codable */ = {
|
|
374
|
+
isa = PBXGroup;
|
|
375
|
+
children = (
|
|
376
|
+
0B47699B64A63B6A560D68255CD04301 /* JSValueDecoder.swift */,
|
|
377
|
+
E1FD6A89D1B3C1C8F19808AFE29CEBCF /* JSValueEncoder.swift */,
|
|
378
|
+
);
|
|
379
|
+
name = Codable;
|
|
380
|
+
path = Codable;
|
|
381
|
+
sourceTree = "<group>";
|
|
382
|
+
};
|
|
383
|
+
34971D21B75763495B92BC9BAB3A3A8B /* Capacitor */ = {
|
|
384
|
+
isa = PBXGroup;
|
|
385
|
+
children = (
|
|
386
|
+
A3B57B4F83306D0E1979E6FFD9F26A4F /* Capacitor */,
|
|
387
|
+
);
|
|
388
|
+
name = Capacitor;
|
|
389
|
+
path = Capacitor;
|
|
390
|
+
sourceTree = "<group>";
|
|
391
|
+
};
|
|
392
|
+
3819CE299453FAA79383872EDDCD4CE1 /* Capacitor */ = {
|
|
393
|
+
isa = PBXGroup;
|
|
394
|
+
children = (
|
|
395
|
+
41613131DEDC4F628531176B95556FE5 /* .. */,
|
|
396
|
+
52322662D4E35F77CAE494C063B4812E /* Pod */,
|
|
397
|
+
6805A7506DC379C4F8A530AD51FA080E /* Support Files */,
|
|
398
|
+
);
|
|
399
|
+
name = Capacitor;
|
|
400
|
+
path = "../../node_modules/@capacitor/ios";
|
|
401
|
+
sourceTree = "<group>";
|
|
402
|
+
};
|
|
403
|
+
41613131DEDC4F628531176B95556FE5 /* .. */ = {
|
|
404
|
+
isa = PBXGroup;
|
|
405
|
+
children = (
|
|
406
|
+
703C1E91E3577A689960A296BD84D8F8 /* .. */,
|
|
407
|
+
);
|
|
408
|
+
name = ..;
|
|
409
|
+
path = "../../.pnpm/@capacitor+ios@6.0.0_@capacitor+core@6.0.0/node_modules/@capacitor/ios/Capacitor";
|
|
410
|
+
sourceTree = "<group>";
|
|
411
|
+
};
|
|
412
|
+
52322662D4E35F77CAE494C063B4812E /* Pod */ = {
|
|
413
|
+
isa = PBXGroup;
|
|
414
|
+
children = (
|
|
415
|
+
05FF62EF673EA5438F49708D573A32AF /* Capacitor.modulemap */,
|
|
416
|
+
6DE921F4699DD8FBE9521D6531D0CB4B /* Capacitor.podspec */,
|
|
417
|
+
);
|
|
418
|
+
name = Pod;
|
|
419
|
+
sourceTree = "<group>";
|
|
420
|
+
};
|
|
421
|
+
53EA214A1068DF5BC9EF5DA5C8F342D0 /* Plugins */ = {
|
|
422
|
+
isa = PBXGroup;
|
|
423
|
+
children = (
|
|
424
|
+
ED5A0978BA440E7EAC6EE3B23132330C /* CapacitorCookieManager.swift */,
|
|
425
|
+
A5968082F2BA9AB9BF3245E124617AB6 /* CapacitorCookies.swift */,
|
|
426
|
+
A495418BBE21292B021C0ECDC0CCE371 /* CapacitorHttp.swift */,
|
|
427
|
+
D5318044BAE18D246CA20CF428CE6FF0 /* CapacitorUrlRequest.swift */,
|
|
428
|
+
F3A62026C067114267EB53AC19FF2A1D /* Console.swift */,
|
|
429
|
+
CA3A0F2EB1022E1F4B1226902F750809 /* DefaultPlugins.m */,
|
|
430
|
+
688C22C9B587223133CC6BF141A48B38 /* HttpRequestHandler.swift */,
|
|
431
|
+
03D83CB75DE1F253F70DE120A30B1D57 /* WebView.swift */,
|
|
432
|
+
);
|
|
433
|
+
name = Plugins;
|
|
434
|
+
path = Plugins;
|
|
435
|
+
sourceTree = "<group>";
|
|
436
|
+
};
|
|
437
|
+
5B9FA6364E4FA6CDC56651E8211EA3F1 /* .. */ = {
|
|
438
|
+
isa = PBXGroup;
|
|
439
|
+
children = (
|
|
440
|
+
30ADF72A247C60243FB65791BCBF03C0 /* .. */,
|
|
441
|
+
);
|
|
442
|
+
name = ..;
|
|
443
|
+
path = ..;
|
|
444
|
+
sourceTree = "<group>";
|
|
445
|
+
};
|
|
446
|
+
6169797CD310019533482459606673F6 /* CapacitorCordova */ = {
|
|
447
|
+
isa = PBXGroup;
|
|
448
|
+
children = (
|
|
449
|
+
B808E73BADFE09911D0546AE7EA6AE0A /* AppDelegate.h */,
|
|
450
|
+
099A5B8F62B49C6D0126F0B9A3A10BE8 /* AppDelegate.m */,
|
|
451
|
+
93D39FB23A34D0613F4F06145A2DE9A1 /* CapacitorCordova.h */,
|
|
452
|
+
1BA8C1572A52DC718FF0FEBD24816107 /* CDV.h */,
|
|
453
|
+
0C3F6668FC4E98150A32DFE1DE045D67 /* CDVAvailability.h */,
|
|
454
|
+
62F32BE3FF664609EC5741ACBA1C6195 /* CDVCommandDelegate.h */,
|
|
455
|
+
3F4BA18A7AAA1ED35AAE027D4A977EB8 /* CDVCommandDelegateImpl.h */,
|
|
456
|
+
3FDA5A61A5C5ED90A3C50C5567D0A611 /* CDVCommandDelegateImpl.m */,
|
|
457
|
+
DAF1273851CD381988A982A43005EB15 /* CDVConfigParser.h */,
|
|
458
|
+
8BAD829595D44AEBEEC361B49BC5C7CF /* CDVConfigParser.m */,
|
|
459
|
+
80B432CCF4E3EC42E605A3BACFCDD67A /* CDVInvokedUrlCommand.h */,
|
|
460
|
+
76E2AA65C3786D65A07FF4105AADA0AC /* CDVInvokedUrlCommand.m */,
|
|
461
|
+
44CDE2F2ADF159FD645D70AC9E4896C2 /* CDVPlugin.h */,
|
|
462
|
+
BEA2368528C07B5E2ADE79A6582B47EB /* CDVPlugin.m */,
|
|
463
|
+
62CF708EC88E33DE867B5B6592B08396 /* CDVPluginManager.h */,
|
|
464
|
+
D88B36EB445D8F1A370ED0635E4CEBD6 /* CDVPluginManager.m */,
|
|
465
|
+
00D30D5207E6257483F4B2439B398C93 /* CDVPluginResult.h */,
|
|
466
|
+
8BBB0703AD5EA66C0D3C543ADFF2D0C6 /* CDVPluginResult.m */,
|
|
467
|
+
5C3F74AF58BE9F268ADEE0236A874C54 /* CDVScreenOrientationDelegate.h */,
|
|
468
|
+
B08C0C1589E6B9F21753FF0A711B0653 /* CDVUIWebViewDelegate.h */,
|
|
469
|
+
8D968F77B9B2E093D09986DEA4535EC3 /* CDVUIWebViewDelegate.m */,
|
|
470
|
+
E2A76D528AAAC07B97FD8C79E93A19CD /* CDVURLProtocol.h */,
|
|
471
|
+
9116DFD87AA99C3985074852E848FC89 /* CDVURLProtocol.m */,
|
|
472
|
+
0FD0A3C27BC98667256912FEC4C0BF1A /* CDVUserAgentUtil.h */,
|
|
473
|
+
61427FD540519F0BE0832FE722C9032A /* CDVUserAgentUtil.m */,
|
|
474
|
+
E0FFCEF34027A15206CCB255276D03A4 /* CDVViewController.h */,
|
|
475
|
+
A84069CFFC44FF6E6A2A9F98B8F1628A /* CDVViewController.m */,
|
|
476
|
+
0B885FE514D819E010D64E1517D0873B /* NSDictionary+CordovaPreferences.h */,
|
|
477
|
+
94B714A280EAD086A2C1B0303471B473 /* NSDictionary+CordovaPreferences.m */,
|
|
478
|
+
75D4A0FD56A331EF885C118416CBCE7D /* Support Files */,
|
|
479
|
+
);
|
|
480
|
+
name = CapacitorCordova;
|
|
481
|
+
path = CapacitorCordova;
|
|
482
|
+
sourceTree = "<group>";
|
|
483
|
+
};
|
|
484
|
+
6805A7506DC379C4F8A530AD51FA080E /* Support Files */ = {
|
|
485
|
+
isa = PBXGroup;
|
|
486
|
+
children = (
|
|
487
|
+
45710AFD1331FB7370F319AC90A65684 /* Capacitor.modulemap */,
|
|
488
|
+
8745B3392E1F2BC8CAAC4A9E53294A82 /* Capacitor-dummy.m */,
|
|
489
|
+
5300B310B216A9BD7D6FB50BCFFD15B5 /* Capacitor-Info.plist */,
|
|
490
|
+
E8E7F912183663D2F7DFCBC8B7C08CA4 /* Capacitor-prefix.pch */,
|
|
491
|
+
AB0A5135E355DD812F3BD1CFDE1737A7 /* Capacitor.debug.xcconfig */,
|
|
492
|
+
E3910D66CDD6B6A86502831EB0FE51C8 /* Capacitor.release.xcconfig */,
|
|
493
|
+
);
|
|
494
|
+
name = "Support Files";
|
|
495
|
+
path = "../../../ios/Pods/Target Support Files/Capacitor";
|
|
496
|
+
sourceTree = "<group>";
|
|
497
|
+
};
|
|
498
|
+
703C1E91E3577A689960A296BD84D8F8 /* .. */ = {
|
|
499
|
+
isa = PBXGroup;
|
|
500
|
+
children = (
|
|
501
|
+
E79290EF9E37531795DB32AD952D10E6 /* .. */,
|
|
502
|
+
);
|
|
503
|
+
name = ..;
|
|
504
|
+
path = ..;
|
|
505
|
+
sourceTree = "<group>";
|
|
506
|
+
};
|
|
507
|
+
740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */ = {
|
|
508
|
+
isa = PBXGroup;
|
|
509
|
+
children = (
|
|
510
|
+
8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */,
|
|
511
|
+
F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */,
|
|
512
|
+
);
|
|
513
|
+
name = "Targets Support Files";
|
|
514
|
+
sourceTree = "<group>";
|
|
515
|
+
};
|
|
516
|
+
75D4A0FD56A331EF885C118416CBCE7D /* Support Files */ = {
|
|
517
|
+
isa = PBXGroup;
|
|
518
|
+
children = (
|
|
519
|
+
E9661DF0C46E3B22B562485E6BFE1933 /* CapacitorCordova.modulemap */,
|
|
520
|
+
5E9A1ED8601F61FAA497CF26F8619FC1 /* CapacitorCordova-dummy.m */,
|
|
521
|
+
B59A21E4D3BFC7A5BE8BA70C443E34A7 /* CapacitorCordova-Info.plist */,
|
|
522
|
+
734D3E6C923AB14796A693DEBDB60E7C /* CapacitorCordova-prefix.pch */,
|
|
523
|
+
97A17722E52A9E955604211C0D027A01 /* CapacitorCordova-umbrella.h */,
|
|
524
|
+
ADE1DA37D3E5BCD5F8DB49B8A395BB69 /* CapacitorCordova.debug.xcconfig */,
|
|
525
|
+
45CA3FEBB42A4B8778CB820AEE3A0871 /* CapacitorCordova.release.xcconfig */,
|
|
526
|
+
);
|
|
527
|
+
name = "Support Files";
|
|
528
|
+
path = "../Target Support Files/CapacitorCordova";
|
|
529
|
+
sourceTree = "<group>";
|
|
530
|
+
};
|
|
531
|
+
8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */ = {
|
|
532
|
+
isa = PBXGroup;
|
|
533
|
+
children = (
|
|
534
|
+
401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */,
|
|
535
|
+
C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */,
|
|
536
|
+
535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */,
|
|
537
|
+
B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */,
|
|
538
|
+
11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */,
|
|
539
|
+
7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */,
|
|
540
|
+
DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */,
|
|
541
|
+
6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */,
|
|
542
|
+
);
|
|
543
|
+
name = "Pods-Plugin";
|
|
544
|
+
path = "Target Support Files/Pods-Plugin";
|
|
545
|
+
sourceTree = "<group>";
|
|
546
|
+
};
|
|
547
|
+
9DDD95834040A3CB9C8ABEB1704C784B /* .. */ = {
|
|
548
|
+
isa = PBXGroup;
|
|
549
|
+
children = (
|
|
550
|
+
5B9FA6364E4FA6CDC56651E8211EA3F1 /* .. */,
|
|
551
|
+
);
|
|
552
|
+
name = ..;
|
|
553
|
+
path = ..;
|
|
554
|
+
sourceTree = "<group>";
|
|
555
|
+
};
|
|
556
|
+
A3B57B4F83306D0E1979E6FFD9F26A4F /* Capacitor */ = {
|
|
557
|
+
isa = PBXGroup;
|
|
558
|
+
children = (
|
|
559
|
+
E70B9060FD4634A48B9ED58CD547F0C3 /* AppUUID.swift */,
|
|
560
|
+
DA9C9473EA5F513C7153F4FD7A0755D7 /* Array+Capacitor.swift */,
|
|
561
|
+
D7E97FF6ACD02FAD4DC22DD5BD7FBD2B /* Capacitor.h */,
|
|
562
|
+
078748AFAC5D85F6906635FC460C81AF /* CapacitorBridge.swift */,
|
|
563
|
+
AF71364655022CFB8A883161311767DE /* CapacitorExtension.swift */,
|
|
564
|
+
513C37B9DEDB4F8D2E143D064A2CBBED /* CAPApplicationDelegateProxy.swift */,
|
|
565
|
+
1FED00DECA9FA789DE40E000F4AEA434 /* CAPBridge.swift */,
|
|
566
|
+
EEA1C0CC475B3337F0A0D7AA65610F4E /* CAPBridgeDelegate.swift */,
|
|
567
|
+
8408B8ADF461A6891AF3D239A4D4A63D /* CAPBridgedJSTypes.h */,
|
|
568
|
+
5CB85642A2EBD74197AD30D048F1993E /* CAPBridgedJSTypes.m */,
|
|
569
|
+
FB474961171F026524B17B6EF0AEDD08 /* CAPBridgedPlugin.h */,
|
|
570
|
+
521C3F08CCAA1497F407B6A13D50187E /* CAPBridgedPlugin+getMethod.swift */,
|
|
571
|
+
DE9F8EDB1FD97829809DE0869247CB98 /* CAPBridgeProtocol.swift */,
|
|
572
|
+
6978163FF36A7572AF68A8F85751C292 /* CAPBridgeViewController.swift */,
|
|
573
|
+
3385CB20900A46AD63E4032884E9A88C /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */,
|
|
574
|
+
7AFB60E79395B988C007794DE9711175 /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */,
|
|
575
|
+
F19874752025C1A3279E3F6CC8837735 /* CAPFile.swift */,
|
|
576
|
+
294961B5A796D986CDA20A7B4CAB6640 /* CAPInstanceConfiguration.h */,
|
|
577
|
+
27A9CD5B03AEE5DB760F7B6FE2071A11 /* CAPInstanceConfiguration.m */,
|
|
578
|
+
D1F09C6B2E192BAD892E64FD64866425 /* CAPInstanceConfiguration.swift */,
|
|
579
|
+
D547A62C68F0B3E73102375BC5F680E6 /* CAPInstanceDescriptor.h */,
|
|
580
|
+
6B317879DA2134BDD09F796FAEF798FF /* CAPInstanceDescriptor.m */,
|
|
581
|
+
891E031EC6D13E48514CBD5B4FF63324 /* CAPInstanceDescriptor.swift */,
|
|
582
|
+
F5686FA91A532F4E8380A5F0A4ACEC18 /* CAPInstancePlugin.swift */,
|
|
583
|
+
2F87AE2C00221C7FFFBA396BAE7BE1C3 /* CAPLog.swift */,
|
|
584
|
+
9E8BCD32748244289C48FC5F8FE039D7 /* CAPNotifications.swift */,
|
|
585
|
+
74D2399A8CE87B39CA26E160F2B2B986 /* CAPPlugin.h */,
|
|
586
|
+
8AA3493D1DAEA2625347D8D0E7492940 /* CAPPlugin.m */,
|
|
587
|
+
CD86DDDC56B606EBD896E9BD121C540D /* CAPPlugin+LoadInstance.swift */,
|
|
588
|
+
4431A88BC62C23AEDF00E216013669B5 /* CAPPluginCall.h */,
|
|
589
|
+
F75D1E0A48BEEB35971340AB38D20328 /* CAPPluginCall.m */,
|
|
590
|
+
63BE4E69F34C8FFDC893E6D376A248AD /* CAPPluginCall.swift */,
|
|
591
|
+
946A91966E8FFC4AA97CBA75061FD4FE /* CAPPluginMethod.h */,
|
|
592
|
+
33E50F9567BA624A3555409DF950F4DA /* CAPPluginMethod.m */,
|
|
593
|
+
0F367B5795E9FCE3B8A0DE436060DF5C /* Data+Capacitor.swift */,
|
|
594
|
+
4C08BE43DB432FCD59CD477CC583F24A /* DocLinks.swift */,
|
|
595
|
+
0841C14855875C792E71C7374445CEE4 /* JS.swift */,
|
|
596
|
+
AD5F1F6EA75DEDE5553999BAE0A4F694 /* JSExport.swift */,
|
|
597
|
+
89D8BE029C6E637B7F79A0FD0842B90F /* JSTypes.swift */,
|
|
598
|
+
09C1626A6D676A7543072C263AD4AE8A /* KeyPath.swift */,
|
|
599
|
+
CB400AA9747D775F3F5CB4E79F39979B /* KeyValueStore.swift */,
|
|
600
|
+
BF251F8DFBE58313A0499E6D0D49D8AF /* NotificationHandlerProtocol.swift */,
|
|
601
|
+
41E09D3704CC6AECB0C4DC356EC2999D /* NotificationRouter.swift */,
|
|
602
|
+
52A8F64A42B3C1EC2FE950FA01B65DB7 /* PluginCallResult.swift */,
|
|
603
|
+
3314A2D5BF586D854F9E8EA170C9F6BE /* PluginConfig.swift */,
|
|
604
|
+
E9D5B2B39095A70D08792227E3B786C7 /* PrivacyInfo.xcprivacy */,
|
|
605
|
+
2B89855F39CEF3B724753AAA7DF6E40F /* Router.swift */,
|
|
606
|
+
7957F4F57ADB594206A30914949A14FE /* TmpViewController.swift */,
|
|
607
|
+
72854A8521C345D84979F89E2923BB93 /* UIColor.swift */,
|
|
608
|
+
D5AB67CF49DD281CCF48C2E88B535011 /* UIStatusBarManager+CAPHandleTapAction.m */,
|
|
609
|
+
5D5D3245520672087AF516A5F107BD31 /* WebViewAssetHandler.swift */,
|
|
610
|
+
66C2B9EDFC10ADD477B17EBAB9211A09 /* WebViewDelegationHandler.swift */,
|
|
611
|
+
F311CA0C189F6C3AE851A1FD179D265D /* WKWebView+Capacitor.m */,
|
|
612
|
+
CDE451C964BF99C4D27B84A49CB89F08 /* WKWebView+Capacitor.swift */,
|
|
613
|
+
20A37725AFD3BC0BA36006570BF181EA /* assets */,
|
|
614
|
+
32AA7444753EC1184E2C878B231ACC36 /* Codable */,
|
|
615
|
+
53EA214A1068DF5BC9EF5DA5C8F342D0 /* Plugins */,
|
|
616
|
+
);
|
|
617
|
+
name = Capacitor;
|
|
618
|
+
path = Capacitor;
|
|
619
|
+
sourceTree = "<group>";
|
|
620
|
+
};
|
|
621
|
+
B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */ = {
|
|
622
|
+
isa = PBXGroup;
|
|
623
|
+
children = (
|
|
624
|
+
44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */,
|
|
625
|
+
1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */,
|
|
626
|
+
4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */,
|
|
627
|
+
58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */,
|
|
628
|
+
);
|
|
629
|
+
name = Products;
|
|
630
|
+
sourceTree = "<group>";
|
|
631
|
+
};
|
|
632
|
+
BD85EF236EC6C6B1428A6C894734956E /* .. */ = {
|
|
633
|
+
isa = PBXGroup;
|
|
634
|
+
children = (
|
|
635
|
+
1F5437FFA381E9E767196AFB06E4E43B /* @capacitor */,
|
|
636
|
+
);
|
|
637
|
+
name = ..;
|
|
638
|
+
path = ..;
|
|
639
|
+
sourceTree = "<group>";
|
|
640
|
+
};
|
|
641
|
+
C9F0C4BC7F10248D1C578ADD30C0BD8E /* Pods */ = {
|
|
642
|
+
isa = PBXGroup;
|
|
643
|
+
children = (
|
|
644
|
+
6169797CD310019533482459606673F6 /* CapacitorCordova */,
|
|
645
|
+
);
|
|
646
|
+
name = Pods;
|
|
647
|
+
sourceTree = "<group>";
|
|
648
|
+
};
|
|
649
|
+
CF1408CF629C7361332E53B88F7BD30C = {
|
|
650
|
+
isa = PBXGroup;
|
|
651
|
+
children = (
|
|
652
|
+
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
|
|
653
|
+
D303204E4E52B98D1DD5EC2AEC0F259D /* Development Pods */,
|
|
654
|
+
1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,
|
|
655
|
+
C9F0C4BC7F10248D1C578ADD30C0BD8E /* Pods */,
|
|
656
|
+
B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */,
|
|
657
|
+
740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */,
|
|
658
|
+
);
|
|
659
|
+
sourceTree = "<group>";
|
|
660
|
+
};
|
|
661
|
+
D303204E4E52B98D1DD5EC2AEC0F259D /* Development Pods */ = {
|
|
662
|
+
isa = PBXGroup;
|
|
663
|
+
children = (
|
|
664
|
+
3819CE299453FAA79383872EDDCD4CE1 /* Capacitor */,
|
|
665
|
+
);
|
|
666
|
+
name = "Development Pods";
|
|
667
|
+
sourceTree = "<group>";
|
|
668
|
+
};
|
|
669
|
+
D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */ = {
|
|
670
|
+
isa = PBXGroup;
|
|
671
|
+
children = (
|
|
672
|
+
32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */,
|
|
673
|
+
2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */,
|
|
674
|
+
);
|
|
675
|
+
name = iOS;
|
|
676
|
+
sourceTree = "<group>";
|
|
677
|
+
};
|
|
678
|
+
E79290EF9E37531795DB32AD952D10E6 /* .. */ = {
|
|
679
|
+
isa = PBXGroup;
|
|
680
|
+
children = (
|
|
681
|
+
9DDD95834040A3CB9C8ABEB1704C784B /* .. */,
|
|
682
|
+
);
|
|
683
|
+
name = ..;
|
|
684
|
+
path = ..;
|
|
685
|
+
sourceTree = "<group>";
|
|
686
|
+
};
|
|
687
|
+
F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */ = {
|
|
688
|
+
isa = PBXGroup;
|
|
689
|
+
children = (
|
|
690
|
+
E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */,
|
|
691
|
+
A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */,
|
|
692
|
+
45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */,
|
|
693
|
+
7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */,
|
|
694
|
+
D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */,
|
|
695
|
+
939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */,
|
|
696
|
+
FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */,
|
|
697
|
+
47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */,
|
|
698
|
+
7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */,
|
|
699
|
+
);
|
|
700
|
+
name = "Pods-PluginTests";
|
|
701
|
+
path = "Target Support Files/Pods-PluginTests";
|
|
702
|
+
sourceTree = "<group>";
|
|
703
|
+
};
|
|
704
|
+
/* End PBXGroup section */
|
|
705
|
+
|
|
706
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
707
|
+
357AD0DC2A6B38717F8E766B14F7B904 /* Headers */ = {
|
|
708
|
+
isa = PBXHeadersBuildPhase;
|
|
709
|
+
buildActionMask = 2147483647;
|
|
710
|
+
files = (
|
|
711
|
+
CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */,
|
|
712
|
+
);
|
|
713
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
714
|
+
};
|
|
715
|
+
5B76843AC2211CFD3C4CA49D7B066789 /* Headers */ = {
|
|
716
|
+
isa = PBXHeadersBuildPhase;
|
|
717
|
+
buildActionMask = 2147483647;
|
|
718
|
+
files = (
|
|
719
|
+
746758DDA6BF683A8E48FAD7AB4B29DB /* Capacitor.h in Headers */,
|
|
720
|
+
3472DB1E34A7483011FB55A9C15D64F1 /* CAPBridgedJSTypes.h in Headers */,
|
|
721
|
+
C449E2FA8E60D82A9FBFA16B2F79E674 /* CAPBridgedPlugin.h in Headers */,
|
|
722
|
+
F11419431F06A3BC1529B9BDB9328786 /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */,
|
|
723
|
+
44EEE63FD850CE5BC8DE39D56CC1E494 /* CAPInstanceConfiguration.h in Headers */,
|
|
724
|
+
0F8D3BFC2360ED865A30CD7EC440F103 /* CAPInstanceDescriptor.h in Headers */,
|
|
725
|
+
5BF0C2015F79C03536B665C1207A0D92 /* CAPPlugin.h in Headers */,
|
|
726
|
+
230005F99F3479B72F72915B1388FDA3 /* CAPPluginCall.h in Headers */,
|
|
727
|
+
AD3B1A73EDA403F214D36813F1BC83DE /* CAPPluginMethod.h in Headers */,
|
|
728
|
+
);
|
|
729
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
730
|
+
};
|
|
731
|
+
CD0146D9209B52D85411E99B60EE90BD /* Headers */ = {
|
|
732
|
+
isa = PBXHeadersBuildPhase;
|
|
733
|
+
buildActionMask = 2147483647;
|
|
734
|
+
files = (
|
|
735
|
+
107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */,
|
|
736
|
+
);
|
|
737
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
738
|
+
};
|
|
739
|
+
D2F08B074C613A47EA32A0A27764DF01 /* Headers */ = {
|
|
740
|
+
isa = PBXHeadersBuildPhase;
|
|
741
|
+
buildActionMask = 2147483647;
|
|
742
|
+
files = (
|
|
743
|
+
33EEE005C90A7E25E3F1DEBAD85BFEFF /* AppDelegate.h in Headers */,
|
|
744
|
+
9155C059841C277041B223569AC0FD05 /* CapacitorCordova.h in Headers */,
|
|
745
|
+
2D04BC2987255113EC340B7533B2097C /* CapacitorCordova-umbrella.h in Headers */,
|
|
746
|
+
4FB5C13EE6F1D6D2975B675CC6E0F9A7 /* CDV.h in Headers */,
|
|
747
|
+
B0B86A84340918A9F55DA4CA2AB79096 /* CDVAvailability.h in Headers */,
|
|
748
|
+
30610FD412C70F00B4D3C231DAE510DB /* CDVCommandDelegate.h in Headers */,
|
|
749
|
+
0EBEA0461B0A27EC29659D0D2853C53C /* CDVCommandDelegateImpl.h in Headers */,
|
|
750
|
+
D75D5BAD0D10BED0CA8A59F9AFEFB837 /* CDVConfigParser.h in Headers */,
|
|
751
|
+
6E6FCDE2667C28A91129029906427769 /* CDVInvokedUrlCommand.h in Headers */,
|
|
752
|
+
BFB3EFF8FCA13AF4B3AB1CB40D399EEA /* CDVPlugin.h in Headers */,
|
|
753
|
+
28B914BA807E734346AAAD9B6F961E8E /* CDVPluginManager.h in Headers */,
|
|
754
|
+
CB40684EB87F8E6C0BE240C13A7FC1D1 /* CDVPluginResult.h in Headers */,
|
|
755
|
+
C838097BA683BB08F96CD848C8EEC6CC /* CDVScreenOrientationDelegate.h in Headers */,
|
|
756
|
+
6754E201FEA181C079871B0E6F0C4C94 /* CDVUIWebViewDelegate.h in Headers */,
|
|
757
|
+
8E6698C4F66860A5E9C3D8EF2A63E856 /* CDVURLProtocol.h in Headers */,
|
|
758
|
+
77B575B74252223F319D3A9E96C8404B /* CDVUserAgentUtil.h in Headers */,
|
|
759
|
+
18B762421B752D3739B4F959482EEDBB /* CDVViewController.h in Headers */,
|
|
760
|
+
FBE27B3389112F2FA1C2E127F3B32D6B /* NSDictionary+CordovaPreferences.h in Headers */,
|
|
761
|
+
);
|
|
762
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
763
|
+
};
|
|
764
|
+
/* End PBXHeadersBuildPhase section */
|
|
765
|
+
|
|
766
|
+
/* Begin PBXNativeTarget section */
|
|
767
|
+
0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */ = {
|
|
768
|
+
isa = PBXNativeTarget;
|
|
769
|
+
buildConfigurationList = 50BDF9FF4E97C44A6D53189007395F6E /* Build configuration list for PBXNativeTarget "Capacitor" */;
|
|
770
|
+
buildPhases = (
|
|
771
|
+
5B76843AC2211CFD3C4CA49D7B066789 /* Headers */,
|
|
772
|
+
20AC87B3CF301B171FB5FA2B65590D72 /* Sources */,
|
|
773
|
+
2475EFD012C96C2FD58AC581A3DFB101 /* Frameworks */,
|
|
774
|
+
3DFB26DAB43D7AAD804B61E3224197FE /* Resources */,
|
|
775
|
+
);
|
|
776
|
+
buildRules = (
|
|
777
|
+
);
|
|
778
|
+
dependencies = (
|
|
779
|
+
B79D7525A92AD8D0E9ECC3501081EE10 /* PBXTargetDependency */,
|
|
780
|
+
);
|
|
781
|
+
name = Capacitor;
|
|
782
|
+
productName = Capacitor;
|
|
783
|
+
productReference = 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */;
|
|
784
|
+
productType = "com.apple.product-type.framework";
|
|
785
|
+
};
|
|
786
|
+
10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */ = {
|
|
787
|
+
isa = PBXNativeTarget;
|
|
788
|
+
buildConfigurationList = 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */;
|
|
789
|
+
buildPhases = (
|
|
790
|
+
357AD0DC2A6B38717F8E766B14F7B904 /* Headers */,
|
|
791
|
+
CE7D9667E8CB083330F25DBA1A121614 /* Sources */,
|
|
792
|
+
05729AFBFB8A784E74F2959F06661750 /* Frameworks */,
|
|
793
|
+
66F8DAFC08A88AE635AABEADC89F9782 /* Resources */,
|
|
794
|
+
);
|
|
795
|
+
buildRules = (
|
|
796
|
+
);
|
|
797
|
+
dependencies = (
|
|
798
|
+
B2FD0B2DF2F98977454C10EB4534D20F /* PBXTargetDependency */,
|
|
799
|
+
8525D06BD25259B27FF6E9F1A8799592 /* PBXTargetDependency */,
|
|
800
|
+
);
|
|
801
|
+
name = "Pods-Plugin";
|
|
802
|
+
productName = Pods_Plugin;
|
|
803
|
+
productReference = 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */;
|
|
804
|
+
productType = "com.apple.product-type.framework";
|
|
805
|
+
};
|
|
806
|
+
400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */ = {
|
|
807
|
+
isa = PBXNativeTarget;
|
|
808
|
+
buildConfigurationList = 69177F6DF128C885EDCD1D0164C304C3 /* Build configuration list for PBXNativeTarget "CapacitorCordova" */;
|
|
809
|
+
buildPhases = (
|
|
810
|
+
D2F08B074C613A47EA32A0A27764DF01 /* Headers */,
|
|
811
|
+
4324DB0A89F611818A0F4D29DD6BA944 /* Sources */,
|
|
812
|
+
95453911476E60F0E7CB6DB21E6C18FA /* Frameworks */,
|
|
813
|
+
21420D71B75DA9AE4AB7D8EB3598E1C3 /* Resources */,
|
|
814
|
+
);
|
|
815
|
+
buildRules = (
|
|
816
|
+
);
|
|
817
|
+
dependencies = (
|
|
818
|
+
);
|
|
819
|
+
name = CapacitorCordova;
|
|
820
|
+
productName = Cordova;
|
|
821
|
+
productReference = 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */;
|
|
822
|
+
productType = "com.apple.product-type.framework";
|
|
823
|
+
};
|
|
824
|
+
401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */ = {
|
|
825
|
+
isa = PBXNativeTarget;
|
|
826
|
+
buildConfigurationList = 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */;
|
|
827
|
+
buildPhases = (
|
|
828
|
+
CD0146D9209B52D85411E99B60EE90BD /* Headers */,
|
|
829
|
+
CFFDE113260979B402C1E4C5B825B6C1 /* Sources */,
|
|
830
|
+
FFD92798E00A88208723BEFC520C2C9A /* Frameworks */,
|
|
831
|
+
35B229A540F02FD5EB6A4690A3C8F305 /* Resources */,
|
|
832
|
+
);
|
|
833
|
+
buildRules = (
|
|
834
|
+
);
|
|
835
|
+
dependencies = (
|
|
836
|
+
9786C4246C5CC21B87F8FDBA48AB7F5A /* PBXTargetDependency */,
|
|
837
|
+
1F751F677375E45AD1FF3BD863C79E6C /* PBXTargetDependency */,
|
|
838
|
+
);
|
|
839
|
+
name = "Pods-PluginTests";
|
|
840
|
+
productName = Pods_PluginTests;
|
|
841
|
+
productReference = 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */;
|
|
842
|
+
productType = "com.apple.product-type.framework";
|
|
843
|
+
};
|
|
844
|
+
/* End PBXNativeTarget section */
|
|
845
|
+
|
|
846
|
+
/* Begin PBXProject section */
|
|
847
|
+
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
|
|
848
|
+
isa = PBXProject;
|
|
849
|
+
attributes = {
|
|
850
|
+
LastSwiftUpdateCheck = 1500;
|
|
851
|
+
LastUpgradeCheck = 1500;
|
|
852
|
+
};
|
|
853
|
+
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
|
|
854
|
+
compatibilityVersion = "Xcode 8.0";
|
|
855
|
+
developmentRegion = en;
|
|
856
|
+
hasScannedForEncodings = 0;
|
|
857
|
+
knownRegions = (
|
|
858
|
+
Base,
|
|
859
|
+
en,
|
|
860
|
+
);
|
|
861
|
+
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
|
|
862
|
+
productRefGroup = B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */;
|
|
863
|
+
projectDirPath = "";
|
|
864
|
+
projectRoot = "";
|
|
865
|
+
targets = (
|
|
866
|
+
0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */,
|
|
867
|
+
400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */,
|
|
868
|
+
10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */,
|
|
869
|
+
401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */,
|
|
870
|
+
);
|
|
871
|
+
};
|
|
872
|
+
/* End PBXProject section */
|
|
873
|
+
|
|
874
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
875
|
+
21420D71B75DA9AE4AB7D8EB3598E1C3 /* Resources */ = {
|
|
876
|
+
isa = PBXResourcesBuildPhase;
|
|
877
|
+
buildActionMask = 2147483647;
|
|
878
|
+
files = (
|
|
879
|
+
);
|
|
880
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
881
|
+
};
|
|
882
|
+
35B229A540F02FD5EB6A4690A3C8F305 /* Resources */ = {
|
|
883
|
+
isa = PBXResourcesBuildPhase;
|
|
884
|
+
buildActionMask = 2147483647;
|
|
885
|
+
files = (
|
|
886
|
+
);
|
|
887
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
888
|
+
};
|
|
889
|
+
3DFB26DAB43D7AAD804B61E3224197FE /* Resources */ = {
|
|
890
|
+
isa = PBXResourcesBuildPhase;
|
|
891
|
+
buildActionMask = 2147483647;
|
|
892
|
+
files = (
|
|
893
|
+
5963E6CC0CF35266A284468617B0CDDB /* native-bridge.js in Resources */,
|
|
894
|
+
53B5990A61C5C1920E0E1F832CCD085B /* PrivacyInfo.xcprivacy in Resources */,
|
|
895
|
+
);
|
|
896
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
897
|
+
};
|
|
898
|
+
66F8DAFC08A88AE635AABEADC89F9782 /* Resources */ = {
|
|
899
|
+
isa = PBXResourcesBuildPhase;
|
|
900
|
+
buildActionMask = 2147483647;
|
|
901
|
+
files = (
|
|
902
|
+
);
|
|
903
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
904
|
+
};
|
|
905
|
+
/* End PBXResourcesBuildPhase section */
|
|
906
|
+
|
|
907
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
908
|
+
20AC87B3CF301B171FB5FA2B65590D72 /* Sources */ = {
|
|
909
|
+
isa = PBXSourcesBuildPhase;
|
|
910
|
+
buildActionMask = 2147483647;
|
|
911
|
+
files = (
|
|
912
|
+
38D9E26AE66DB410CF2F99B147346F9A /* AppUUID.swift in Sources */,
|
|
913
|
+
AF597AE567F66C9B3B6CF67205BF5925 /* Array+Capacitor.swift in Sources */,
|
|
914
|
+
DEB4FADC80E5E4F78E7A045D9FC9ACA3 /* Capacitor-dummy.m in Sources */,
|
|
915
|
+
408FFF8CC8322F6EFDD7FD015E6EFD8B /* CapacitorBridge.swift in Sources */,
|
|
916
|
+
74B26D2A70A56BB581D05BD67E789501 /* CapacitorCookieManager.swift in Sources */,
|
|
917
|
+
0A5E9D204DA705EC842AD01E0E038923 /* CapacitorCookies.swift in Sources */,
|
|
918
|
+
CB0CC4056273A20036C21A6959E773A1 /* CapacitorExtension.swift in Sources */,
|
|
919
|
+
11050E99111839879B8FFEBBD8C7D9CA /* CapacitorHttp.swift in Sources */,
|
|
920
|
+
D9C167C921D66F9FFB550BD8744BF3FC /* CapacitorUrlRequest.swift in Sources */,
|
|
921
|
+
B66BD7C959E925C69A793B20CBC9C54A /* CAPApplicationDelegateProxy.swift in Sources */,
|
|
922
|
+
BA777E373171622ACE8987E14C813216 /* CAPBridge.swift in Sources */,
|
|
923
|
+
893CA017D4D0C72A818651C821DE67B4 /* CAPBridgeDelegate.swift in Sources */,
|
|
924
|
+
6627A50D08FB0975BF67BBDA364BB314 /* CAPBridgedJSTypes.m in Sources */,
|
|
925
|
+
87A13D0A96A8EA60827C83FC86A5181E /* CAPBridgedPlugin+getMethod.swift in Sources */,
|
|
926
|
+
EEE14435EEC95A2FDFF33692B3AA0C80 /* CAPBridgeProtocol.swift in Sources */,
|
|
927
|
+
0C72045BB060F68A50A5550747AF2F48 /* CAPBridgeViewController.swift in Sources */,
|
|
928
|
+
65B779F017438A7C6A31F898B532E8CB /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */,
|
|
929
|
+
BE76885E050FE8531DC030C3410A6229 /* CAPFile.swift in Sources */,
|
|
930
|
+
0EE475DF2D4D6CF8E877045BEF50C4A8 /* CAPInstanceConfiguration.m in Sources */,
|
|
931
|
+
028059F3211CD10A29EC6950590D5783 /* CAPInstanceConfiguration.swift in Sources */,
|
|
932
|
+
251AD6413846E46469CB8A0A525F2764 /* CAPInstanceDescriptor.m in Sources */,
|
|
933
|
+
EC466687F213CFA8CEE2BA1E5C4D66B4 /* CAPInstanceDescriptor.swift in Sources */,
|
|
934
|
+
82330CC062E2EABA3F8543076121FF4C /* CAPInstancePlugin.swift in Sources */,
|
|
935
|
+
9C3067B37709DE001D06D6A5481DF7ED /* CAPLog.swift in Sources */,
|
|
936
|
+
8449D872DEBC6730EAF4CEC47963440D /* CAPNotifications.swift in Sources */,
|
|
937
|
+
D79333A4DB303713F95542F68D25853C /* CAPPlugin.m in Sources */,
|
|
938
|
+
7C079F79163536C982EAA9E9291D4B95 /* CAPPlugin+LoadInstance.swift in Sources */,
|
|
939
|
+
424ECC1271F7DB089ED332AD2DB37031 /* CAPPluginCall.m in Sources */,
|
|
940
|
+
F51B8EA42598260CB48FAF362D7ED758 /* CAPPluginCall.swift in Sources */,
|
|
941
|
+
52AAF80F1C5B6D7F24A1A0D57E64BD19 /* CAPPluginMethod.m in Sources */,
|
|
942
|
+
3D8CFD46A18FE857FDF750071BCD8428 /* Console.swift in Sources */,
|
|
943
|
+
104ED59A0B9B425F12D79C3A5F14BB04 /* Data+Capacitor.swift in Sources */,
|
|
944
|
+
9CB54853C7B9FDF8578939EEF6C4F99E /* DefaultPlugins.m in Sources */,
|
|
945
|
+
5ACFDC60EE2520F1FB90F57DF7E257EF /* DocLinks.swift in Sources */,
|
|
946
|
+
21CAFB964B2E36E634B23FA618D2708A /* HttpRequestHandler.swift in Sources */,
|
|
947
|
+
16F88CC2C416B1322C2A5D475CD6AEF8 /* JS.swift in Sources */,
|
|
948
|
+
24B91C6CDA4A93AD263C7FA6B00D7E48 /* JSExport.swift in Sources */,
|
|
949
|
+
CE19930AA8EE63E2125632C09BF06723 /* JSTypes.swift in Sources */,
|
|
950
|
+
77F0D41E41AD3AF71481B7280F0DD523 /* JSValueDecoder.swift in Sources */,
|
|
951
|
+
BBA6A49961A383667EC5DA0447D92DB8 /* JSValueEncoder.swift in Sources */,
|
|
952
|
+
849457714F77A0F860592DD54C79F87E /* KeyPath.swift in Sources */,
|
|
953
|
+
A85E34B502613C34C51B68A4B47F61DF /* KeyValueStore.swift in Sources */,
|
|
954
|
+
627B54C197F2FB29EC3649DC56922E1E /* NotificationHandlerProtocol.swift in Sources */,
|
|
955
|
+
09B84BC1AF4D7AE04D8EBE026F62D02B /* NotificationRouter.swift in Sources */,
|
|
956
|
+
AF34D4751B43BC7467E59E58B0055136 /* PluginCallResult.swift in Sources */,
|
|
957
|
+
EBD971EFA7FA79F6FDFC6C6F2F838406 /* PluginConfig.swift in Sources */,
|
|
958
|
+
A19F78585C3C42F7C465AA224609809B /* Router.swift in Sources */,
|
|
959
|
+
36576E4631346E101EBE33A5B4BF6E72 /* TmpViewController.swift in Sources */,
|
|
960
|
+
35EF9BA60C9CA8303FF8F4EB139575B9 /* UIColor.swift in Sources */,
|
|
961
|
+
7FCEA47EF83776D7D94EEA8FF098ABAC /* UIStatusBarManager+CAPHandleTapAction.m in Sources */,
|
|
962
|
+
3DF44EDD2FB4AFE98D0EEAA6216341A8 /* WebView.swift in Sources */,
|
|
963
|
+
43A962AE7A4F7CC386447BD12B04DDA1 /* WebViewAssetHandler.swift in Sources */,
|
|
964
|
+
76E16C14EE701056C1604F92DFA4DA63 /* WebViewDelegationHandler.swift in Sources */,
|
|
965
|
+
CFD2260F9F1246AE490E350EE00A17CA /* WKWebView+Capacitor.m in Sources */,
|
|
966
|
+
75673F34BACB93E8BBE9B19E14780655 /* WKWebView+Capacitor.swift in Sources */,
|
|
967
|
+
);
|
|
968
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
969
|
+
};
|
|
970
|
+
4324DB0A89F611818A0F4D29DD6BA944 /* Sources */ = {
|
|
971
|
+
isa = PBXSourcesBuildPhase;
|
|
972
|
+
buildActionMask = 2147483647;
|
|
973
|
+
files = (
|
|
974
|
+
DBC8762DA7014C2F62E00E5147E43221 /* AppDelegate.m in Sources */,
|
|
975
|
+
2637C93E31A8343175B8100BCF0A6629 /* CapacitorCordova-dummy.m in Sources */,
|
|
976
|
+
04FD2A8F315ECFEB419E3F6831347DD7 /* CDVCommandDelegateImpl.m in Sources */,
|
|
977
|
+
0E38692635AA47EF8BB01E39B18DE631 /* CDVConfigParser.m in Sources */,
|
|
978
|
+
17E254D84DD4E1FDC71D1CE49ED3FEC1 /* CDVInvokedUrlCommand.m in Sources */,
|
|
979
|
+
5AE8F94F6601B1770CCD0C58A1391073 /* CDVPlugin.m in Sources */,
|
|
980
|
+
370339B6138BA03BE133E415B4AC312D /* CDVPluginManager.m in Sources */,
|
|
981
|
+
EAF9FA3FF77FA0F2E99EBCCF04F27973 /* CDVPluginResult.m in Sources */,
|
|
982
|
+
622B89CC214F02105A39F0A426FFFB3A /* CDVUIWebViewDelegate.m in Sources */,
|
|
983
|
+
229F379C9A281A3BAEE34E10B39C60E8 /* CDVURLProtocol.m in Sources */,
|
|
984
|
+
7AD69F087B467867019A906E591E9FFF /* CDVUserAgentUtil.m in Sources */,
|
|
985
|
+
00BA576AE58FA6174C6E64D1A29B08AC /* CDVViewController.m in Sources */,
|
|
986
|
+
AD0BDFBC5C2795F7BF128EFF013EE2DC /* NSDictionary+CordovaPreferences.m in Sources */,
|
|
987
|
+
);
|
|
988
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
989
|
+
};
|
|
990
|
+
CE7D9667E8CB083330F25DBA1A121614 /* Sources */ = {
|
|
991
|
+
isa = PBXSourcesBuildPhase;
|
|
992
|
+
buildActionMask = 2147483647;
|
|
993
|
+
files = (
|
|
994
|
+
8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */,
|
|
995
|
+
);
|
|
996
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
997
|
+
};
|
|
998
|
+
CFFDE113260979B402C1E4C5B825B6C1 /* Sources */ = {
|
|
999
|
+
isa = PBXSourcesBuildPhase;
|
|
1000
|
+
buildActionMask = 2147483647;
|
|
1001
|
+
files = (
|
|
1002
|
+
164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */,
|
|
1003
|
+
);
|
|
1004
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
1005
|
+
};
|
|
1006
|
+
/* End PBXSourcesBuildPhase section */
|
|
1007
|
+
|
|
1008
|
+
/* Begin PBXTargetDependency section */
|
|
1009
|
+
1F751F677375E45AD1FF3BD863C79E6C /* PBXTargetDependency */ = {
|
|
1010
|
+
isa = PBXTargetDependency;
|
|
1011
|
+
name = CapacitorCordova;
|
|
1012
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
1013
|
+
targetProxy = 460F2781C8D6F2F1478E7FF15BB9FADF /* PBXContainerItemProxy */;
|
|
1014
|
+
};
|
|
1015
|
+
8525D06BD25259B27FF6E9F1A8799592 /* PBXTargetDependency */ = {
|
|
1016
|
+
isa = PBXTargetDependency;
|
|
1017
|
+
name = CapacitorCordova;
|
|
1018
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
1019
|
+
targetProxy = 2F6FC894281F67E18387A6B73D633ECC /* PBXContainerItemProxy */;
|
|
1020
|
+
};
|
|
1021
|
+
9786C4246C5CC21B87F8FDBA48AB7F5A /* PBXTargetDependency */ = {
|
|
1022
|
+
isa = PBXTargetDependency;
|
|
1023
|
+
name = Capacitor;
|
|
1024
|
+
target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
|
|
1025
|
+
targetProxy = 6FDC33A286D0BDAE889048B5AE6064F2 /* PBXContainerItemProxy */;
|
|
1026
|
+
};
|
|
1027
|
+
B2FD0B2DF2F98977454C10EB4534D20F /* PBXTargetDependency */ = {
|
|
1028
|
+
isa = PBXTargetDependency;
|
|
1029
|
+
name = Capacitor;
|
|
1030
|
+
target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
|
|
1031
|
+
targetProxy = 9A1A52497CB724CDB862EE754C90C973 /* PBXContainerItemProxy */;
|
|
1032
|
+
};
|
|
1033
|
+
B79D7525A92AD8D0E9ECC3501081EE10 /* PBXTargetDependency */ = {
|
|
1034
|
+
isa = PBXTargetDependency;
|
|
1035
|
+
name = CapacitorCordova;
|
|
1036
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
1037
|
+
targetProxy = 0E4616C505F68880947C43D74572D350 /* PBXContainerItemProxy */;
|
|
1038
|
+
};
|
|
1039
|
+
/* End PBXTargetDependency section */
|
|
1040
|
+
|
|
1041
|
+
/* Begin XCBuildConfiguration section */
|
|
1042
|
+
057A12F2D71A959F36757A69E349C8C4 /* Debug */ = {
|
|
1043
|
+
isa = XCBuildConfiguration;
|
|
1044
|
+
baseConfigurationReference = AB0A5135E355DD812F3BD1CFDE1737A7 /* Capacitor.debug.xcconfig */;
|
|
1045
|
+
buildSettings = {
|
|
1046
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1047
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1048
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1049
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1050
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1051
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1052
|
+
DEFINES_MODULE = YES;
|
|
1053
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1054
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1055
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1056
|
+
GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
|
|
1057
|
+
INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
|
|
1058
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1059
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1060
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1061
|
+
MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
|
|
1062
|
+
PRODUCT_MODULE_NAME = Capacitor;
|
|
1063
|
+
PRODUCT_NAME = Capacitor;
|
|
1064
|
+
SDKROOT = iphoneos;
|
|
1065
|
+
SKIP_INSTALL = YES;
|
|
1066
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1067
|
+
SWIFT_VERSION = 5.1;
|
|
1068
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1069
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1070
|
+
VERSION_INFO_PREFIX = "";
|
|
1071
|
+
};
|
|
1072
|
+
name = Debug;
|
|
1073
|
+
};
|
|
1074
|
+
25C9C7BE983775E895ED3117240BC7EB /* Debug */ = {
|
|
1075
|
+
isa = XCBuildConfiguration;
|
|
1076
|
+
baseConfigurationReference = DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */;
|
|
1077
|
+
buildSettings = {
|
|
1078
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1079
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1080
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1081
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1082
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1083
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1084
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1085
|
+
DEFINES_MODULE = YES;
|
|
1086
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1087
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1088
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1089
|
+
INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
|
|
1090
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1091
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1092
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1093
|
+
MACH_O_TYPE = staticlib;
|
|
1094
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
|
|
1095
|
+
OTHER_LDFLAGS = "";
|
|
1096
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1097
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1098
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1099
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1100
|
+
SDKROOT = iphoneos;
|
|
1101
|
+
SKIP_INSTALL = YES;
|
|
1102
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1103
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1104
|
+
VERSION_INFO_PREFIX = "";
|
|
1105
|
+
};
|
|
1106
|
+
name = Debug;
|
|
1107
|
+
};
|
|
1108
|
+
398D18ACC164CD809FD1916139961D43 /* Release */ = {
|
|
1109
|
+
isa = XCBuildConfiguration;
|
|
1110
|
+
baseConfigurationReference = E3910D66CDD6B6A86502831EB0FE51C8 /* Capacitor.release.xcconfig */;
|
|
1111
|
+
buildSettings = {
|
|
1112
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1113
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1114
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1115
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1116
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1117
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1118
|
+
DEFINES_MODULE = YES;
|
|
1119
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1120
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1121
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1122
|
+
GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
|
|
1123
|
+
INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
|
|
1124
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1125
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1126
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1127
|
+
MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
|
|
1128
|
+
PRODUCT_MODULE_NAME = Capacitor;
|
|
1129
|
+
PRODUCT_NAME = Capacitor;
|
|
1130
|
+
SDKROOT = iphoneos;
|
|
1131
|
+
SKIP_INSTALL = YES;
|
|
1132
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1133
|
+
SWIFT_VERSION = 5.1;
|
|
1134
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1135
|
+
VALIDATE_PRODUCT = YES;
|
|
1136
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1137
|
+
VERSION_INFO_PREFIX = "";
|
|
1138
|
+
};
|
|
1139
|
+
name = Release;
|
|
1140
|
+
};
|
|
1141
|
+
5129F73C326431D783E8F53A5122BB65 /* Release */ = {
|
|
1142
|
+
isa = XCBuildConfiguration;
|
|
1143
|
+
baseConfigurationReference = 45CA3FEBB42A4B8778CB820AEE3A0871 /* CapacitorCordova.release.xcconfig */;
|
|
1144
|
+
buildSettings = {
|
|
1145
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1146
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1147
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1148
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1149
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1150
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1151
|
+
DEFINES_MODULE = YES;
|
|
1152
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1153
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1154
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1155
|
+
GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
|
|
1156
|
+
INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
|
|
1157
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1158
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1159
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1160
|
+
MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
|
|
1161
|
+
PRODUCT_MODULE_NAME = Cordova;
|
|
1162
|
+
PRODUCT_NAME = Cordova;
|
|
1163
|
+
SDKROOT = iphoneos;
|
|
1164
|
+
SKIP_INSTALL = YES;
|
|
1165
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1166
|
+
SWIFT_VERSION = 4.2;
|
|
1167
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1168
|
+
VALIDATE_PRODUCT = YES;
|
|
1169
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1170
|
+
VERSION_INFO_PREFIX = "";
|
|
1171
|
+
};
|
|
1172
|
+
name = Release;
|
|
1173
|
+
};
|
|
1174
|
+
84AC07D1B967FA01542DA3AB71BC3C47 /* Release */ = {
|
|
1175
|
+
isa = XCBuildConfiguration;
|
|
1176
|
+
baseConfigurationReference = 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */;
|
|
1177
|
+
buildSettings = {
|
|
1178
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1179
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1180
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1181
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1182
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1183
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1184
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1185
|
+
DEFINES_MODULE = YES;
|
|
1186
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1187
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1188
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1189
|
+
INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
|
|
1190
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1191
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1192
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1193
|
+
MACH_O_TYPE = staticlib;
|
|
1194
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
|
|
1195
|
+
OTHER_LDFLAGS = "";
|
|
1196
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1197
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1198
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1199
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1200
|
+
SDKROOT = iphoneos;
|
|
1201
|
+
SKIP_INSTALL = YES;
|
|
1202
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1203
|
+
VALIDATE_PRODUCT = YES;
|
|
1204
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1205
|
+
VERSION_INFO_PREFIX = "";
|
|
1206
|
+
};
|
|
1207
|
+
name = Release;
|
|
1208
|
+
};
|
|
1209
|
+
8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = {
|
|
1210
|
+
isa = XCBuildConfiguration;
|
|
1211
|
+
buildSettings = {
|
|
1212
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1213
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1214
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1215
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1216
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1217
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1218
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1219
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1220
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
1221
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1222
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1223
|
+
CLANG_WARN_COMMA = YES;
|
|
1224
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1225
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1226
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1227
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1228
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1229
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1230
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1231
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1232
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1233
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1234
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1235
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1236
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
1237
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1238
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1239
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1240
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1241
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1242
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1243
|
+
COPY_PHASE_STRIP = NO;
|
|
1244
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
1245
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1246
|
+
ENABLE_TESTABILITY = YES;
|
|
1247
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1248
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
1249
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1250
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
1251
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1252
|
+
"POD_CONFIGURATION_DEBUG=1",
|
|
1253
|
+
"DEBUG=1",
|
|
1254
|
+
"$(inherited)",
|
|
1255
|
+
);
|
|
1256
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1257
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1258
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1259
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1260
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1261
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1262
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1263
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
1264
|
+
MTL_FAST_MATH = YES;
|
|
1265
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
1266
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1267
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
1268
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
1269
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
1270
|
+
SWIFT_VERSION = 5.0;
|
|
1271
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
1272
|
+
};
|
|
1273
|
+
name = Debug;
|
|
1274
|
+
};
|
|
1275
|
+
9E406C6AAF85E580207CD97B0044DEAB /* Release */ = {
|
|
1276
|
+
isa = XCBuildConfiguration;
|
|
1277
|
+
buildSettings = {
|
|
1278
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1279
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1280
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1281
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1282
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1283
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1284
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1285
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1286
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
1287
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1288
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1289
|
+
CLANG_WARN_COMMA = YES;
|
|
1290
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1291
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1292
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1293
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1294
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1295
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1296
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1297
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1298
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1299
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1300
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1301
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1302
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
1303
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1304
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1305
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1306
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1307
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1308
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1309
|
+
COPY_PHASE_STRIP = NO;
|
|
1310
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
1311
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
1312
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1313
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1314
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1315
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1316
|
+
"POD_CONFIGURATION_RELEASE=1",
|
|
1317
|
+
"$(inherited)",
|
|
1318
|
+
);
|
|
1319
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1320
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1321
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1322
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1323
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1324
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1325
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1326
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
1327
|
+
MTL_FAST_MATH = YES;
|
|
1328
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1329
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
1330
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
1331
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
1332
|
+
SWIFT_VERSION = 5.0;
|
|
1333
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
1334
|
+
};
|
|
1335
|
+
name = Release;
|
|
1336
|
+
};
|
|
1337
|
+
AC861AD691F730A3AE0BBD92BF2FCC7C /* Debug */ = {
|
|
1338
|
+
isa = XCBuildConfiguration;
|
|
1339
|
+
baseConfigurationReference = ADE1DA37D3E5BCD5F8DB49B8A395BB69 /* CapacitorCordova.debug.xcconfig */;
|
|
1340
|
+
buildSettings = {
|
|
1341
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1342
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1343
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1344
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1345
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1346
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1347
|
+
DEFINES_MODULE = YES;
|
|
1348
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1349
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1350
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1351
|
+
GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
|
|
1352
|
+
INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
|
|
1353
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1354
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1355
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1356
|
+
MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
|
|
1357
|
+
PRODUCT_MODULE_NAME = Cordova;
|
|
1358
|
+
PRODUCT_NAME = Cordova;
|
|
1359
|
+
SDKROOT = iphoneos;
|
|
1360
|
+
SKIP_INSTALL = YES;
|
|
1361
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1362
|
+
SWIFT_VERSION = 4.2;
|
|
1363
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1364
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1365
|
+
VERSION_INFO_PREFIX = "";
|
|
1366
|
+
};
|
|
1367
|
+
name = Debug;
|
|
1368
|
+
};
|
|
1369
|
+
C6A1C00DF92684BB667F98E7E274025C /* Release */ = {
|
|
1370
|
+
isa = XCBuildConfiguration;
|
|
1371
|
+
baseConfigurationReference = 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */;
|
|
1372
|
+
buildSettings = {
|
|
1373
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1374
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1375
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1376
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1377
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1378
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1379
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1380
|
+
DEFINES_MODULE = YES;
|
|
1381
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1382
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1383
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1384
|
+
INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
|
|
1385
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1386
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1387
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1388
|
+
MACH_O_TYPE = staticlib;
|
|
1389
|
+
MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
|
|
1390
|
+
OTHER_LDFLAGS = "";
|
|
1391
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1392
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1393
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1394
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1395
|
+
SDKROOT = iphoneos;
|
|
1396
|
+
SKIP_INSTALL = YES;
|
|
1397
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1398
|
+
VALIDATE_PRODUCT = YES;
|
|
1399
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1400
|
+
VERSION_INFO_PREFIX = "";
|
|
1401
|
+
};
|
|
1402
|
+
name = Release;
|
|
1403
|
+
};
|
|
1404
|
+
ED2378E15E9E9D668017ADE06F20D86F /* Debug */ = {
|
|
1405
|
+
isa = XCBuildConfiguration;
|
|
1406
|
+
baseConfigurationReference = 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */;
|
|
1407
|
+
buildSettings = {
|
|
1408
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1409
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1410
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1411
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1412
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1413
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1414
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1415
|
+
DEFINES_MODULE = YES;
|
|
1416
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1417
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1418
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1419
|
+
INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
|
|
1420
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1421
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1422
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1423
|
+
MACH_O_TYPE = staticlib;
|
|
1424
|
+
MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
|
|
1425
|
+
OTHER_LDFLAGS = "";
|
|
1426
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1427
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1428
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1429
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1430
|
+
SDKROOT = iphoneos;
|
|
1431
|
+
SKIP_INSTALL = YES;
|
|
1432
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1433
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1434
|
+
VERSION_INFO_PREFIX = "";
|
|
1435
|
+
};
|
|
1436
|
+
name = Debug;
|
|
1437
|
+
};
|
|
1438
|
+
/* End XCBuildConfiguration section */
|
|
1439
|
+
|
|
1440
|
+
/* Begin XCConfigurationList section */
|
|
1441
|
+
29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */ = {
|
|
1442
|
+
isa = XCConfigurationList;
|
|
1443
|
+
buildConfigurations = (
|
|
1444
|
+
ED2378E15E9E9D668017ADE06F20D86F /* Debug */,
|
|
1445
|
+
C6A1C00DF92684BB667F98E7E274025C /* Release */,
|
|
1446
|
+
);
|
|
1447
|
+
defaultConfigurationIsVisible = 0;
|
|
1448
|
+
defaultConfigurationName = Release;
|
|
1449
|
+
};
|
|
1450
|
+
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
|
|
1451
|
+
isa = XCConfigurationList;
|
|
1452
|
+
buildConfigurations = (
|
|
1453
|
+
8DE5143C03248BB6CD542DE3963D6F3A /* Debug */,
|
|
1454
|
+
9E406C6AAF85E580207CD97B0044DEAB /* Release */,
|
|
1455
|
+
);
|
|
1456
|
+
defaultConfigurationIsVisible = 0;
|
|
1457
|
+
defaultConfigurationName = Release;
|
|
1458
|
+
};
|
|
1459
|
+
50BDF9FF4E97C44A6D53189007395F6E /* Build configuration list for PBXNativeTarget "Capacitor" */ = {
|
|
1460
|
+
isa = XCConfigurationList;
|
|
1461
|
+
buildConfigurations = (
|
|
1462
|
+
057A12F2D71A959F36757A69E349C8C4 /* Debug */,
|
|
1463
|
+
398D18ACC164CD809FD1916139961D43 /* Release */,
|
|
1464
|
+
);
|
|
1465
|
+
defaultConfigurationIsVisible = 0;
|
|
1466
|
+
defaultConfigurationName = Release;
|
|
1467
|
+
};
|
|
1468
|
+
5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */ = {
|
|
1469
|
+
isa = XCConfigurationList;
|
|
1470
|
+
buildConfigurations = (
|
|
1471
|
+
25C9C7BE983775E895ED3117240BC7EB /* Debug */,
|
|
1472
|
+
84AC07D1B967FA01542DA3AB71BC3C47 /* Release */,
|
|
1473
|
+
);
|
|
1474
|
+
defaultConfigurationIsVisible = 0;
|
|
1475
|
+
defaultConfigurationName = Release;
|
|
1476
|
+
};
|
|
1477
|
+
69177F6DF128C885EDCD1D0164C304C3 /* Build configuration list for PBXNativeTarget "CapacitorCordova" */ = {
|
|
1478
|
+
isa = XCConfigurationList;
|
|
1479
|
+
buildConfigurations = (
|
|
1480
|
+
AC861AD691F730A3AE0BBD92BF2FCC7C /* Debug */,
|
|
1481
|
+
5129F73C326431D783E8F53A5122BB65 /* Release */,
|
|
1482
|
+
);
|
|
1483
|
+
defaultConfigurationIsVisible = 0;
|
|
1484
|
+
defaultConfigurationName = Release;
|
|
1485
|
+
};
|
|
1486
|
+
/* End XCConfigurationList section */
|
|
1487
|
+
};
|
|
1488
|
+
rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
1489
|
+
}
|