@capacitor-community/camera-preview 4.0.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -13
- package/android/.gradle/8.0.2/checksums/checksums.lock +0 -0
- package/android/.gradle/{4.10.1/fileHashes/fileHashes.bin → 8.0.2/checksums/md5-checksums.bin} +0 -0
- package/android/.gradle/8.0.2/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +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/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/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/build.gradle +10 -8
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +2 -2
- package/android/gradle.properties +1 -1
- package/android/gradlew +14 -4
- package/android/gradlew.bat +34 -32
- package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +3 -3
- package/android/src/main/AndroidManifest.xml +1 -1
- package/android/src/main/java/com/ahm/capacitor/camera/preview/CameraActivity.java +5 -7
- package/dist/esm/definitions.d.ts +4 -2
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/web.d.ts +3 -3
- package/dist/esm/web.js +14 -10
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +155 -0
- package/dist/plugin.cjs.js.map +1 -0
- package/dist/plugin.js +158 -0
- package/dist/plugin.js.map +1 -0
- package/ios/Plugin/CameraController.swift +1 -1
- package/ios/Plugin/Plugin.swift +5 -5
- package/ios/Podfile +7 -4
- package/ios/Podfile.lock +9 -10
- 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 +34 -0
- package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +26 -0
- package/ios/Pods/Manifest.lock +22 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +1374 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/julionic.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/julionic.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/julionic.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/julionic.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/julionic.xcuserdatad/xcschemes/xcschememanagement.plist +31 -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 +15 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +8 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +15 -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 +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +12 -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 +53 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +91 -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 +53 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +91 -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 +19 -9
- package/android/.gradle/4.10.1/fileHashes/fileHashes.lock +0 -0
- package/android/.idea/compiler.xml +0 -6
- package/android/.idea/gradle.xml +0 -20
- package/android/.idea/jarRepositories.xml +0 -45
- package/android/.idea/libraries/Gradle__androidx_activity_activity_1_2_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_activity_activity_1_2_3_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0.xml +0 -9
- package/android/.idea/libraries/Gradle__androidx_annotation_annotation_1_2_0.xml +0 -9
- package/android/.idea/libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_3_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml +0 -9
- package/android/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_1_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_collection_collection_1_1_0.xml +0 -9
- package/android/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_core_core_1_3_2_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_core_core_1_5_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_exifinterface_exifinterface_1_3_2_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_fragment_fragment_1_3_0_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_fragment_fragment_1_3_4_aar.xml +0 -14
- package/android/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_3_0.xml +0 -9
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_3_1.xml +0 -9
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_3_1_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_3_1_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_3_1_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_savedstate_2_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_savedstate_2_3_1_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_1_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_core_1_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_espresso_espresso_core_3_1_0_alpha3_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_espresso_espresso_core_3_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_espresso_espresso_idling_resource_3_1_0_alpha3_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_espresso_espresso_idling_resource_3_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_ext_junit_1_1_2_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_monitor_1_1_0_alpha3_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_monitor_1_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_runner_1_1_0_alpha3_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_test_runner_1_3_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_tracing_tracing_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_1_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1.xml +0 -9
- package/android/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1.xml +0 -9
- package/android/.idea/libraries/Gradle__javax_inject_javax_inject_1.xml +0 -9
- package/android/.idea/libraries/Gradle__junit_junit_4_12.xml +0 -9
- package/android/.idea/libraries/Gradle__junit_junit_4_13_1.xml +0 -9
- package/android/.idea/libraries/Gradle__net_bytebuddy_byte_buddy_1_10_18.xml +0 -9
- package/android/.idea/libraries/Gradle__net_bytebuddy_byte_buddy_agent_1_10_18.xml +0 -9
- package/android/.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0.xml +0 -9
- package/android/.idea/libraries/Gradle__org_apache_cordova_framework_7_0_0_aar.xml +0 -11
- package/android/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml +0 -9
- package/android/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3.xml +0 -9
- package/android/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3.xml +0 -9
- package/android/.idea/libraries/Gradle__org_json_json_20140107.xml +0 -9
- package/android/.idea/libraries/Gradle__org_mockito_mockito_core_3_6_28.xml +0 -9
- package/android/.idea/libraries/Gradle__org_mockito_mockito_inline_3_6_28.xml +0 -9
- package/android/.idea/libraries/Gradle__org_objenesis_objenesis_3_1.xml +0 -9
- package/android/.idea/misc.xml +0 -9
- package/android/.idea/modules/1419750366/android.capacitor-android.iml +0 -92
- package/android/.idea/modules/android.iml +0 -87
- package/android/.idea/modules.xml +0 -9
- package/android/.idea/vcs.xml +0 -6
- /package/android/.gradle/{4.10.1 → 8.0.2/dependencies-accessors}/gc.properties +0 -0
- /package/android/.gradle/{4.10.1 → 8.0.2}/fileChanges/last-build.bin +0 -0
|
@@ -0,0 +1,1374 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 48;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
015BFD2102D6364AF859D463153D12E1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
11
|
+
0226A11D5C77423F648317B090D4273E /* CapacitorCordova-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B0D3FD283CCEE67FDE3EDEFA4CFC0C /* CapacitorCordova-dummy.m */; };
|
|
12
|
+
046F6C0B861C6F38E5C231473451B12A /* Data+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E31F2C88B145738578798DCF2B86FC9 /* Data+Capacitor.swift */; };
|
|
13
|
+
04EF9C5150A365B46562E613EE797D1A /* JS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B5C1EF807ED560D9B691CF082F2F3F /* JS.swift */; };
|
|
14
|
+
062C880AE7C05302158B2978CE0F7633 /* TmpViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A332F2B684DF5A66D0648B77FABCEBE /* TmpViewController.swift */; };
|
|
15
|
+
0A57A27DD15FEDD8649FA2FCA4E0C181 /* Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4236CE3D3D9EF722EDF6CEFD5AB6EA86 /* Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
16
|
+
0B0F800481CBA67344214EF494F26BA0 /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = AD7C91272D31A9D4643596544230993C /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
17
|
+
0E297980DC3AB824BB8E2DA800EEE77E /* UIStatusBarManager+CAPHandleTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CCD36920EBA52860ED44E70E166CF7E /* UIStatusBarManager+CAPHandleTapAction.m */; };
|
|
18
|
+
0F66759CC2B665761257037340A8311B /* CDVPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EA40F2DAE9F4B9AC85A93DFD3F7970E8 /* CDVPluginManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
19
|
+
107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
20
|
+
1185667BCEF4348EEBA4DB806BBD95AA /* CAPPluginCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8F47BD830A28DE3E31B29A7883539E /* CAPPluginCall.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
21
|
+
15FBBA3A7B58AC956DF455A76E8B4B69 /* WKWebView+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9CB473E6814E3D80F66D36051EF8330 /* WKWebView+Capacitor.swift */; };
|
|
22
|
+
164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */; };
|
|
23
|
+
192F71942DC4AAF150F2CA05DD4955AC /* CAPInstancePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE300C9608F251C8AFA1D50504ABDF7 /* CAPInstancePlugin.swift */; };
|
|
24
|
+
1A02273EDD6787F67201F73B7A1C10A4 /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 1189C22EE7F54E1FDC7BF5BA60BAC07B /* CDVPlugin.m */; };
|
|
25
|
+
1DCE98143A34574E4E761DA59563C0DB /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E62155D2CBE1CCEFA4015BF25A47AA0E /* CDVConfigParser.m */; };
|
|
26
|
+
1E68C93743AA2D068D6F1B18CC9C8E7E /* CAPBridgeProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 164595C2BED5931590CE4105AA3C0F68 /* CAPBridgeProtocol.swift */; };
|
|
27
|
+
1F42EA990BB55F7B7B530410028CE16C /* AppUUID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 680F4C3F67EFB780FC97AF1A6062F5EA /* AppUUID.swift */; };
|
|
28
|
+
26FB3C2A729B5AC0895DA82EA28975E1 /* NotificationRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6487D7DA556EDA63356C386EA1B2418F /* NotificationRouter.swift */; };
|
|
29
|
+
29CD08DF0714DB1A9CDB2FFB2DD80A80 /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A78FA2C0401683D63B9C50EB4880C826 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
30
|
+
2F45D122302FB80D2210D91EB03960DA /* JSTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E29AD0E0C5864F595E6B536E740C3B4 /* JSTypes.swift */; };
|
|
31
|
+
33F5C1E93ACF2D15DD385250FBD0E64F /* CAPNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = B82AB8F411B2084547CED11E1BE7406F /* CAPNotifications.swift */; };
|
|
32
|
+
3427F82054E36249530B7ECFE73494A6 /* JSExport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AF8910933C57B8AAF73A8E9915C0C4D /* JSExport.swift */; };
|
|
33
|
+
36E932077F0D9EB7FD81AB26A2F498FE /* CAPBridgedJSTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = B09BDDCCA4625F70119538A2BBD79345 /* CAPBridgedJSTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
34
|
+
3E1FA449347692EE0AD04B53A19A0932 /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 169A0896EF8E2D474AC332AC687A8B21 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
35
|
+
3F90887C7A81B9D0B9FDA50A022367F8 /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C57C77CC159A7FED658C9ED2FDD0A4A /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
36
|
+
40796A73EECAC0D0F49C08BBC0558494 /* CDVPlugin+Resources.m in Sources */ = {isa = PBXBuildFile; fileRef = 436CBFAC990DCF147F486BCA4E82FD75 /* CDVPlugin+Resources.m */; };
|
|
37
|
+
4155E4F333ED0BE75301B6295F0026F8 /* CAPPlugin+LoadInstance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6674EEA159CD1057313072E148163C10 /* CAPPlugin+LoadInstance.swift */; };
|
|
38
|
+
4231D93F10E5ED3B70E061F8FE4064C7 /* CapacitorBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D1CA9968AE9C330043B834314E09656 /* CapacitorBridge.swift */; };
|
|
39
|
+
4538D37504AB52487A09AA16330D0926 /* CAPBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20520ECB2148C51B9661C8C6BC4F2D8B /* CAPBridge.swift */; };
|
|
40
|
+
488416DF903392C666B25E2EF0997BD5 /* CapacitorUrlRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39A8B41ED0549FB86278A955F8434C8B /* CapacitorUrlRequest.swift */; };
|
|
41
|
+
4918731912A0E9D7779547119D8564C8 /* PluginCallResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE49ED2A089114E14BBE764139619605 /* PluginCallResult.swift */; };
|
|
42
|
+
53D6497D235074A0C34E88A306FCE673 /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8187ACE2BCDB617D364F386C2E5867B2 /* CDVViewController.m */; };
|
|
43
|
+
54927217C37B4E72D7AF0F89D18CE50C /* CapacitorHttp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1123BDA93EBC687D121735DDDC398B59 /* CapacitorHttp.swift */; };
|
|
44
|
+
551FD85F7C077DA8F39242156C1857DD /* WebViewDelegationHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5968BBB181EAAC9494873B7C283A3444 /* WebViewDelegationHandler.swift */; };
|
|
45
|
+
5AD07F69F2BE3C5D7F028CE18553E5A6 /* CAPPluginCall.m in Sources */ = {isa = PBXBuildFile; fileRef = DA9486115996287F10A592CD74F6E93C /* CAPPluginCall.m */; };
|
|
46
|
+
5F4F50CCFA60E99BDAB5E6F7F1960607 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */; };
|
|
47
|
+
618C0E001EF1B752EEB9CACB44EEC536 /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFEBF528FEA370B3686166A9AB706444 /* Console.swift */; };
|
|
48
|
+
625DEE488D2C658197C95DF057C02E0E /* WKWebView+Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = F8664B2456C8BE4B1A971D312CEB03FF /* WKWebView+Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
49
|
+
6388BC9CDDEF9EC7F0814D4C06A6D19B /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD5D43E5F5B04DE5A649CDBABEDDF82C /* UIColor.swift */; };
|
|
50
|
+
64A4DD5E613A2942B352CC1A55A37CC6 /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AA6FBDF52ED266272028ADDF2C6B84 /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
51
|
+
65A1345BE186826998F0C175EFBD712F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = AE9D13C4EDB1FD2662A69A858F4612B1 /* AppDelegate.m */; };
|
|
52
|
+
65C9D3E28206432CD0E0822B45916814 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = EF19C7148C26D5341A85C7F9FF46D6CB /* CDVCommandDelegateImpl.m */; };
|
|
53
|
+
68EACFF7EE96F057EED707D2C83C9885 /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ECE8CA34E68D333A6FD10E594ADC78D /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
54
|
+
6B78161F1A9F83127C601030EA808C3A /* Capacitor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF01F9CA302F59B7F7D2D10386278E72 /* Capacitor-dummy.m */; };
|
|
55
|
+
6BAC3EB110AF916BA141E4DE93821660 /* CAPInstanceConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EBA3FFE49DBF203499CC051A99845F4 /* CAPInstanceConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
56
|
+
6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
57
|
+
713F64BBB612840307648CE02224413C /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 50BFF18F6E91DD18111CCD064C10D561 /* CDVURLProtocol.m */; };
|
|
58
|
+
7A86C60BF39D22212BA7AFCD0ED8D213 /* CAPInstanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01984A150EABAEFF4D17A170ECF76D8B /* CAPInstanceDescriptor.swift */; };
|
|
59
|
+
8043B6E2C6676504E50C87B7DADC8C17 /* CapacitorCookieManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC966AE0CEE55EAEB7165D74E9D9A66C /* CapacitorCookieManager.swift */; };
|
|
60
|
+
8082FC00A5D75BD075B1ABF368351A49 /* CapacitorCookies.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69AF2E66D0E2CA23B4B0DD86B23E513B /* CapacitorCookies.swift */; };
|
|
61
|
+
86F24927DA40F90422A5BFB79E17F014 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
62
|
+
87614EECFCD7508D55616574FE193539 /* Array+Capacitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E64ECB9371CD117BD2F81BB73623FCBE /* Array+Capacitor.swift */; };
|
|
63
|
+
879BB11E46BA5F7683F54D1C349F3518 /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FD6103755C7A17F7E1CD2D6258894DB /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
64
|
+
899DAC655BA73074EECE083A2EE14469 /* KeyPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5020FCB351318F833B815F013CFAEC7D /* KeyPath.swift */; };
|
|
65
|
+
8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */; };
|
|
66
|
+
8AF5B0A3E35BDAE31C8A3387438AB263 /* CAPApplicationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAEA9814D68D5FEDE6B106649BEE4E97 /* CAPApplicationDelegateProxy.swift */; };
|
|
67
|
+
8ED7EABCB34E69DE88D6764F34CB06BE /* PluginConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = D28BA35FE5C57E87E217BF3845D5142E /* PluginConfig.swift */; };
|
|
68
|
+
8F949D01DC72DC85221041426B63C886 /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5811D154C15A4C37FB795B5750C04344 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
69
|
+
9411E5BB9430984782049C5FF5947E14 /* CAPInstanceConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9742DC17D72FECE06848FD2ACF2BBDE8 /* CAPInstanceConfiguration.m */; };
|
|
70
|
+
9485DCE8608360E9ABF3D033E025FAF7 /* DefaultPlugins.m in Sources */ = {isa = PBXBuildFile; fileRef = 9287FCF81C320ABFBB8F2B7FAD81E31D /* DefaultPlugins.m */; };
|
|
71
|
+
96D3F327423D4E2F0DE379C4ADC8D57D /* native-bridge.js in Resources */ = {isa = PBXBuildFile; fileRef = BA3FF95AE33BA77FB2FC2F5AC551612C /* native-bridge.js */; };
|
|
72
|
+
96DBC9B49EE97F7A7FB06746186CA129 /* DocLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A03464B4CAA069913A81ADCC55A4F5EF /* DocLinks.swift */; };
|
|
73
|
+
9715B2FF437B2449E1A1C6CD03A39D5D /* HttpRequestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4587F4E848B75095BD0115E782A2ED54 /* HttpRequestHandler.swift */; };
|
|
74
|
+
97D947D0F261144CC6BDA1B9070029E6 /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = E951438BFB720E407FCE0D78C7DBEE7C /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
75
|
+
992F6182768FDEA629ED9B03FC7C408E /* WebViewAssetHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BD4708A77E12F32580EF3556C9C4A95 /* WebViewAssetHandler.swift */; };
|
|
76
|
+
A2510958BDA25A72D2D32B2DF0A073AA /* CAPWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0102D29C63062BB0F6DA50CBD73CCC98 /* CAPWebView.swift */; };
|
|
77
|
+
A650FC944B924C08BD167753A71F4B59 /* CAPPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 316738A643C082EB731770C207FAFC60 /* CAPPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
78
|
+
A87DB350376D8BD793DBD87C4E654A6A /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6D4875A58DD8132F46729E1A6CB887 /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
79
|
+
A8905C0DEBCDF0F11C48A0C3E014C663 /* CAPInstanceDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 21AA600ABBD62024BB4B84648931BE4C /* CAPInstanceDescriptor.m */; };
|
|
80
|
+
ACAE4B25A46F2DE429F92AAFDE0CBB06 /* CapacitorCordova.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C77C82F54AD367E539C4A3B73D5BCE /* CapacitorCordova.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
81
|
+
B2BD10AE4B3884B6BFF255203C7964BD /* WKWebView+Capacitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F88579F622D7A56DF0F1033986C7F17 /* WKWebView+Capacitor.m */; };
|
|
82
|
+
B2F923B9EAC780D88604EBD65D23D778 /* CAPBridgedJSTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = A23D2DEC774669D69A76A7C129EB72C1 /* CAPBridgedJSTypes.m */; };
|
|
83
|
+
B55C5B9D96842063EECE8152F00AA95B /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB4739F6804873F5254D897E31AB912 /* WebView.swift */; };
|
|
84
|
+
BA8F486EE89D4BD4F0B858DEC359F716 /* CAPPluginMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = B23EBE69A21396CC71C7EE519830CF8B /* CAPPluginMethod.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
85
|
+
C112889698B959D30D3B825C6DBD595D /* CAPBridgedPlugin+getMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1AA3ED420E62236EB7101D535A6534A /* CAPBridgedPlugin+getMethod.swift */; };
|
|
86
|
+
C3259BE13C3C269B625DA4EF70CA2934 /* CAPPluginCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = 245F2A89BC0FF3EB905C44FEDC55DF00 /* CAPPluginCall.swift */; };
|
|
87
|
+
C49B22DAA4D611284E11C23BF0EA9B0E /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 30321B0AD13EB50998BB1AC20987A330 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
88
|
+
C7666C140F13EF3890717569C0875304 /* CAPPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 12EE2F3D002A2BC7B58C0A4033BBB279 /* CAPPlugin.m */; };
|
|
89
|
+
C8679F30E9C7BC3076D666B90998E37C /* CAPBridgeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBB48B0510DE37E765D35A5C367D5B34 /* CAPBridgeViewController.swift */; };
|
|
90
|
+
CB594FE817D44935C5E0EF08588FF44F /* CapacitorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0B821635D28EDD0E1DB4E73D22C6F5E /* CapacitorExtension.swift */; };
|
|
91
|
+
CB5CC725567F1724CF847866981C9E1A /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D35F35ED9E16BEC4D407234D15A9476 /* NSDictionary+CordovaPreferences.m */; };
|
|
92
|
+
CCD0F26C32D5431A7DC4F0A59AC3FFE4 /* CAPLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0577A7D07B4D6E368313364D7CF19DED /* CAPLog.swift */; };
|
|
93
|
+
CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
94
|
+
D3486FE98873AEF44EC380E606C0FD31 /* CAPInstanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9A1CA6B866669E493D2FD47BFA6FE2E /* CAPInstanceConfiguration.swift */; };
|
|
95
|
+
D8EC3A035D26C65CEB8BA45347DE7BD9 /* CAPBridgedPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F43CC940252DAF1F13711AE4B9A607 /* CAPBridgedPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
96
|
+
DCDDE898D6C84FC6C1E7DFD38933D651 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBB5A28105A5E832EF81010606019F9 /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
97
|
+
DFF93D7CA4DABF46314CCF87B5B08741 /* CAPPluginMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 743A27A6DFF5557048FA0FB226C362F6 /* CAPPluginMethod.m */; };
|
|
98
|
+
E046F53AA90DEDBE54700D9AE2CD2C8E /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E2F8A12CA05CAD29E130FE4766297D1E /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */; };
|
|
99
|
+
E44F7AAEA3EB3C97D84FC38CE415D75A /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 10985BD6563318E98651AEFAE83CA4AA /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
100
|
+
E4C448681C61D203F6B116BFACFD2391 /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DD46ABFEC1A41428C89D6AB3DB1CBD /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
101
|
+
E7241E99F37C5F20A7475937BB298FCA /* CDVPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DBBF9721E92B31B841686DD016CE4E0 /* CDVPluginManager.m */; };
|
|
102
|
+
E75A3AA8238D64E4891A8B8FCFBF6DE1 /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 142631F2E2791AC1D513B7660FB7E59F /* CDVPluginResult.m */; };
|
|
103
|
+
E7AA4AF69C1828BCCA6E4557BD0D49F8 /* NotificationHandlerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF42DD87BD5ECFB85CD7C61493E22EB3 /* NotificationHandlerProtocol.swift */; };
|
|
104
|
+
E8F476265BCBEF8C50439BA291686456 /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 79DBBAE7C7EB109753DF70A29ED05761 /* CDVInvokedUrlCommand.m */; };
|
|
105
|
+
EB856AFCC0F5204A54BE5D4414948A14 /* CAPBridgeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BFEB8923AF3F2500B54A4D03BC7F04C /* CAPBridgeDelegate.swift */; };
|
|
106
|
+
ED0FBE6F96B10D89918F37A05086B351 /* CAPInstanceDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DBE190EFA6F6AAAC3F01110E2E3EB5 /* CAPInstanceDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
107
|
+
F33C7D607BBC314885F8CE0D3ABE9143 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA61CF08DAC77A2E55459554AE90C80 /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
108
|
+
F4989A71C1E53776EA6DB90F88F303A1 /* CAPFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7392A2BC49F587F31CC2BB681FE079D0 /* CAPFile.swift */; };
|
|
109
|
+
FF056C585DEEA70CAEB295266D9748DE /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 581D5D87FEC3519B9A191131D1E44719 /* Router.swift */; };
|
|
110
|
+
FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
111
|
+
/* End PBXBuildFile section */
|
|
112
|
+
|
|
113
|
+
/* Begin PBXContainerItemProxy section */
|
|
114
|
+
34C5DE13D6ABBDFEFF7FCE4769B4B96F /* PBXContainerItemProxy */ = {
|
|
115
|
+
isa = PBXContainerItemProxy;
|
|
116
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
117
|
+
proxyType = 1;
|
|
118
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
119
|
+
remoteInfo = CapacitorCordova;
|
|
120
|
+
};
|
|
121
|
+
4304B15537FC657E404B123F4D1BEA98 /* PBXContainerItemProxy */ = {
|
|
122
|
+
isa = PBXContainerItemProxy;
|
|
123
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
124
|
+
proxyType = 1;
|
|
125
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
126
|
+
remoteInfo = CapacitorCordova;
|
|
127
|
+
};
|
|
128
|
+
A9BF21F76380F02DC66CD9392AE3BEF3 /* PBXContainerItemProxy */ = {
|
|
129
|
+
isa = PBXContainerItemProxy;
|
|
130
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
131
|
+
proxyType = 1;
|
|
132
|
+
remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
|
|
133
|
+
remoteInfo = Capacitor;
|
|
134
|
+
};
|
|
135
|
+
E2050EE667D4B6AB36EA90E41B3BFB5E /* PBXContainerItemProxy */ = {
|
|
136
|
+
isa = PBXContainerItemProxy;
|
|
137
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
138
|
+
proxyType = 1;
|
|
139
|
+
remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
|
|
140
|
+
remoteInfo = Capacitor;
|
|
141
|
+
};
|
|
142
|
+
F52E65675F497B75F6B3C04710F923E5 /* PBXContainerItemProxy */ = {
|
|
143
|
+
isa = PBXContainerItemProxy;
|
|
144
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
145
|
+
proxyType = 1;
|
|
146
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
147
|
+
remoteInfo = CapacitorCordova;
|
|
148
|
+
};
|
|
149
|
+
/* End PBXContainerItemProxy section */
|
|
150
|
+
|
|
151
|
+
/* Begin PBXFileReference section */
|
|
152
|
+
0102D29C63062BB0F6DA50CBD73CCC98 /* CAPWebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPWebView.swift; path = Capacitor/Capacitor/CAPWebView.swift; sourceTree = "<group>"; };
|
|
153
|
+
01984A150EABAEFF4D17A170ECF76D8B /* CAPInstanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceDescriptor.swift; path = Capacitor/Capacitor/CAPInstanceDescriptor.swift; sourceTree = "<group>"; };
|
|
154
|
+
0294887671587E089830320A97EE6D00 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = CapacitorCordova.modulemap; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.modulemap; sourceTree = "<group>"; };
|
|
155
|
+
0577A7D07B4D6E368313364D7CF19DED /* CAPLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPLog.swift; path = Capacitor/Capacitor/CAPLog.swift; sourceTree = "<group>"; };
|
|
156
|
+
0A332F2B684DF5A66D0648B77FABCEBE /* TmpViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TmpViewController.swift; path = Capacitor/Capacitor/TmpViewController.swift; sourceTree = "<group>"; };
|
|
157
|
+
10985BD6563318E98651AEFAE83CA4AA /* CDVPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPlugin.h; sourceTree = "<group>"; };
|
|
158
|
+
1123BDA93EBC687D121735DDDC398B59 /* CapacitorHttp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorHttp.swift; sourceTree = "<group>"; };
|
|
159
|
+
1189C22EE7F54E1FDC7BF5BA60BAC07B /* CDVPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPlugin.m; sourceTree = "<group>"; };
|
|
160
|
+
11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-Info.plist"; sourceTree = "<group>"; };
|
|
161
|
+
12C1DC883922C032A558314659CF40F9 /* CapacitorCordova-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-prefix.pch"; sourceTree = "<group>"; };
|
|
162
|
+
12EE2F3D002A2BC7B58C0A4033BBB279 /* CAPPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPlugin.m; path = Capacitor/Capacitor/CAPPlugin.m; sourceTree = "<group>"; };
|
|
163
|
+
142631F2E2791AC1D513B7660FB7E59F /* CDVPluginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginResult.m; sourceTree = "<group>"; };
|
|
164
|
+
160BEA4CB8EEA5591BF18BE8B5C3A7F6 /* Capacitor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capacitor-Info.plist"; sourceTree = "<group>"; };
|
|
165
|
+
164595C2BED5931590CE4105AA3C0F68 /* CAPBridgeProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeProtocol.swift; path = Capacitor/Capacitor/CAPBridgeProtocol.swift; sourceTree = "<group>"; };
|
|
166
|
+
169A0896EF8E2D474AC332AC687A8B21 /* CDVConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVConfigParser.h; sourceTree = "<group>"; };
|
|
167
|
+
1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CapacitorCordova; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
168
|
+
1D1CA9968AE9C330043B834314E09656 /* CapacitorBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorBridge.swift; path = Capacitor/Capacitor/CapacitorBridge.swift; sourceTree = "<group>"; };
|
|
169
|
+
1E31F2C88B145738578798DCF2B86FC9 /* Data+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Capacitor.swift"; path = "Capacitor/Capacitor/Data+Capacitor.swift"; sourceTree = "<group>"; };
|
|
170
|
+
1EBA3FFE49DBF203499CC051A99845F4 /* CAPInstanceConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceConfiguration.h; path = Capacitor/Capacitor/CAPInstanceConfiguration.h; sourceTree = "<group>"; };
|
|
171
|
+
20520ECB2148C51B9661C8C6BC4F2D8B /* CAPBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridge.swift; path = Capacitor/Capacitor/CAPBridge.swift; sourceTree = "<group>"; };
|
|
172
|
+
21AA600ABBD62024BB4B84648931BE4C /* CAPInstanceDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceDescriptor.m; path = Capacitor/Capacitor/CAPInstanceDescriptor.m; sourceTree = "<group>"; };
|
|
173
|
+
245F2A89BC0FF3EB905C44FEDC55DF00 /* CAPPluginCall.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPPluginCall.swift; path = Capacitor/Capacitor/CAPPluginCall.swift; sourceTree = "<group>"; };
|
|
174
|
+
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; };
|
|
175
|
+
2D35F35ED9E16BEC4D407234D15A9476 /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+CordovaPreferences.m"; sourceTree = "<group>"; };
|
|
176
|
+
30321B0AD13EB50998BB1AC20987A330 /* CDVAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVAvailability.h; sourceTree = "<group>"; };
|
|
177
|
+
316738A643C082EB731770C207FAFC60 /* CAPPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPlugin.h; path = Capacitor/Capacitor/CAPPlugin.h; 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
|
+
34F43CC940252DAF1F13711AE4B9A607 /* CAPBridgedPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedPlugin.h; path = Capacitor/Capacitor/CAPBridgedPlugin.h; sourceTree = "<group>"; };
|
|
180
|
+
39A8B41ED0549FB86278A955F8434C8B /* CapacitorUrlRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorUrlRequest.swift; sourceTree = "<group>"; };
|
|
181
|
+
3BD4708A77E12F32580EF3556C9C4A95 /* WebViewAssetHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewAssetHandler.swift; path = Capacitor/Capacitor/WebViewAssetHandler.swift; sourceTree = "<group>"; };
|
|
182
|
+
3CCD36920EBA52860ED44E70E166CF7E /* UIStatusBarManager+CAPHandleTapAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStatusBarManager+CAPHandleTapAction.m"; path = "Capacitor/Capacitor/UIStatusBarManager+CAPHandleTapAction.m"; sourceTree = "<group>"; };
|
|
183
|
+
401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Plugin.modulemap"; sourceTree = "<group>"; };
|
|
184
|
+
4236CE3D3D9EF722EDF6CEFD5AB6EA86 /* Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Capacitor.h; path = Capacitor/Capacitor/Capacitor.h; sourceTree = "<group>"; };
|
|
185
|
+
436CBFAC990DCF147F486BCA4E82FD75 /* CDVPlugin+Resources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CDVPlugin+Resources.m"; sourceTree = "<group>"; };
|
|
186
|
+
44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Capacitor; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
187
|
+
4587F4E848B75095BD0115E782A2ED54 /* HttpRequestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = HttpRequestHandler.swift; sourceTree = "<group>"; };
|
|
188
|
+
45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
189
|
+
47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
190
|
+
4AF8910933C57B8AAF73A8E9915C0C4D /* JSExport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSExport.swift; path = Capacitor/Capacitor/JSExport.swift; sourceTree = "<group>"; };
|
|
191
|
+
4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Plugin"; path = Pods_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
192
|
+
4BFEB8923AF3F2500B54A4D03BC7F04C /* CAPBridgeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeDelegate.swift; path = Capacitor/Capacitor/CAPBridgeDelegate.swift; sourceTree = "<group>"; };
|
|
193
|
+
4CB71FB91981C5051E0EB76C3C9313D2 /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = Capacitor.modulemap; path = Capacitor/Capacitor/Capacitor.modulemap; sourceTree = "<group>"; };
|
|
194
|
+
4F88579F622D7A56DF0F1033986C7F17 /* WKWebView+Capacitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+Capacitor.m"; path = "Capacitor/Capacitor/WKWebView+Capacitor.m"; sourceTree = "<group>"; };
|
|
195
|
+
5020FCB351318F833B815F013CFAEC7D /* KeyPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPath.swift; path = Capacitor/Capacitor/KeyPath.swift; sourceTree = "<group>"; };
|
|
196
|
+
50BFF18F6E91DD18111CCD064C10D561 /* CDVURLProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVURLProtocol.m; sourceTree = "<group>"; };
|
|
197
|
+
535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
198
|
+
5811D154C15A4C37FB795B5750C04344 /* CDVPluginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginResult.h; sourceTree = "<group>"; };
|
|
199
|
+
581D5D87FEC3519B9A191131D1E44719 /* Router.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Router.swift; path = Capacitor/Capacitor/Router.swift; sourceTree = "<group>"; };
|
|
200
|
+
58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-PluginTests"; path = Pods_PluginTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
201
|
+
5968BBB181EAAC9494873B7C283A3444 /* WebViewDelegationHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WebViewDelegationHandler.swift; path = Capacitor/Capacitor/WebViewDelegationHandler.swift; sourceTree = "<group>"; };
|
|
202
|
+
5AA61CF08DAC77A2E55459554AE90C80 /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
203
|
+
5BC63A3DE8B9BCB5240D2D4E565DB127 /* Capacitor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Capacitor.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
204
|
+
5C57C77CC159A7FED658C9ED2FDD0A4A /* CDVURLProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVURLProtocol.h; sourceTree = "<group>"; };
|
|
205
|
+
5CBB5A28105A5E832EF81010606019F9 /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVInvokedUrlCommand.h; sourceTree = "<group>"; };
|
|
206
|
+
6487D7DA556EDA63356C386EA1B2418F /* NotificationRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationRouter.swift; path = Capacitor/Capacitor/NotificationRouter.swift; sourceTree = "<group>"; };
|
|
207
|
+
64C77C82F54AD367E539C4A3B73D5BCE /* CapacitorCordova.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CapacitorCordova.h; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.h; sourceTree = "<group>"; };
|
|
208
|
+
6674EEA159CD1057313072E148163C10 /* CAPPlugin+LoadInstance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPPlugin+LoadInstance.swift"; path = "Capacitor/Capacitor/CAPPlugin+LoadInstance.swift"; sourceTree = "<group>"; };
|
|
209
|
+
680F4C3F67EFB780FC97AF1A6062F5EA /* AppUUID.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppUUID.swift; path = Capacitor/Capacitor/AppUUID.swift; sourceTree = "<group>"; };
|
|
210
|
+
694FD259D924DD5A2A4EBFFC93DE9C10 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CapacitorCordova.modulemap; sourceTree = "<group>"; };
|
|
211
|
+
69AF2E66D0E2CA23B4B0DD86B23E513B /* CapacitorCookies.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorCookies.swift; sourceTree = "<group>"; };
|
|
212
|
+
6C96987D3CF66F79CA95CCD2CDE91C9F /* Capacitor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.release.xcconfig; sourceTree = "<group>"; };
|
|
213
|
+
6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.release.xcconfig"; sourceTree = "<group>"; };
|
|
214
|
+
6FD6103755C7A17F7E1CD2D6258894DB /* CDVViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVViewController.h; sourceTree = "<group>"; };
|
|
215
|
+
7392A2BC49F587F31CC2BB681FE079D0 /* CAPFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPFile.swift; path = Capacitor/Capacitor/CAPFile.swift; sourceTree = "<group>"; };
|
|
216
|
+
743A27A6DFF5557048FA0FB226C362F6 /* CAPPluginMethod.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginMethod.m; path = Capacitor/Capacitor/CAPPluginMethod.m; sourceTree = "<group>"; };
|
|
217
|
+
79DBBAE7C7EB109753DF70A29ED05761 /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVInvokedUrlCommand.m; sourceTree = "<group>"; };
|
|
218
|
+
7BB4739F6804873F5254D897E31AB912 /* WebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = "<group>"; };
|
|
219
|
+
7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
220
|
+
7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PluginTests-dummy.m"; sourceTree = "<group>"; };
|
|
221
|
+
7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Plugin-umbrella.h"; sourceTree = "<group>"; };
|
|
222
|
+
8187ACE2BCDB617D364F386C2E5867B2 /* CDVViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVViewController.m; sourceTree = "<group>"; };
|
|
223
|
+
83B5C1EF807ED560D9B691CF082F2F3F /* JS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JS.swift; path = Capacitor/Capacitor/JS.swift; sourceTree = "<group>"; };
|
|
224
|
+
8D8F47BD830A28DE3E31B29A7883539E /* CAPPluginCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginCall.h; path = Capacitor/Capacitor/CAPPluginCall.h; sourceTree = "<group>"; };
|
|
225
|
+
8DBBF9721E92B31B841686DD016CE4E0 /* CDVPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginManager.m; sourceTree = "<group>"; };
|
|
226
|
+
9287FCF81C320ABFBB8F2B7FAD81E31D /* DefaultPlugins.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DefaultPlugins.m; sourceTree = "<group>"; };
|
|
227
|
+
939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-Info.plist"; sourceTree = "<group>"; };
|
|
228
|
+
9742DC17D72FECE06848FD2ACF2BBDE8 /* CAPInstanceConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPInstanceConfiguration.m; path = Capacitor/Capacitor/CAPInstanceConfiguration.m; sourceTree = "<group>"; };
|
|
229
|
+
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; };
|
|
230
|
+
9E29AD0E0C5864F595E6B536E740C3B4 /* JSTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSTypes.swift; path = Capacitor/Capacitor/JSTypes.swift; sourceTree = "<group>"; };
|
|
231
|
+
9ECE8CA34E68D333A6FD10E594ADC78D /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+CordovaPreferences.h"; sourceTree = "<group>"; };
|
|
232
|
+
A03464B4CAA069913A81ADCC55A4F5EF /* DocLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocLinks.swift; path = Capacitor/Capacitor/DocLinks.swift; sourceTree = "<group>"; };
|
|
233
|
+
A0B4696BB2C753AF64D84B95279D30DA /* CapacitorCordova.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = CapacitorCordova.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
234
|
+
A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PluginTests-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
235
|
+
A23D2DEC774669D69A76A7C129EB72C1 /* CAPBridgedJSTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPBridgedJSTypes.m; path = Capacitor/Capacitor/CAPBridgedJSTypes.m; sourceTree = "<group>"; };
|
|
236
|
+
A317B3FD1C3E92FF75729A9646BF1C50 /* CapacitorCordova-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CapacitorCordova-Info.plist"; sourceTree = "<group>"; };
|
|
237
|
+
A667BF72833532F580EAE4A2D4A0A710 /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capacitor.modulemap; sourceTree = "<group>"; };
|
|
238
|
+
A78FA2C0401683D63B9C50EB4880C826 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegate.h; sourceTree = "<group>"; };
|
|
239
|
+
AAEA9814D68D5FEDE6B106649BEE4E97 /* CAPApplicationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPApplicationDelegateProxy.swift; path = Capacitor/Capacitor/CAPApplicationDelegateProxy.swift; sourceTree = "<group>"; };
|
|
240
|
+
AC966AE0CEE55EAEB7165D74E9D9A66C /* CapacitorCookieManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CapacitorCookieManager.swift; sourceTree = "<group>"; };
|
|
241
|
+
AD7C91272D31A9D4643596544230993C /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVScreenOrientationDelegate.h; sourceTree = "<group>"; };
|
|
242
|
+
AE9D13C4EDB1FD2662A69A858F4612B1 /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
243
|
+
B06E1EFD893E0CA8AC1E0FECEFDFA09C /* Capacitor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.debug.xcconfig; sourceTree = "<group>"; };
|
|
244
|
+
B09BDDCCA4625F70119538A2BBD79345 /* CAPBridgedJSTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedJSTypes.h; path = Capacitor/Capacitor/CAPBridgedJSTypes.h; sourceTree = "<group>"; };
|
|
245
|
+
B23EBE69A21396CC71C7EE519830CF8B /* CAPPluginMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginMethod.h; path = Capacitor/Capacitor/CAPPluginMethod.h; sourceTree = "<group>"; };
|
|
246
|
+
B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Plugin-dummy.m"; sourceTree = "<group>"; };
|
|
247
|
+
B82AB8F411B2084547CED11E1BE7406F /* CAPNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPNotifications.swift; path = Capacitor/Capacitor/CAPNotifications.swift; sourceTree = "<group>"; };
|
|
248
|
+
BA3FF95AE33BA77FB2FC2F5AC551612C /* native-bridge.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "native-bridge.js"; path = "Capacitor/Capacitor/assets/native-bridge.js"; sourceTree = "<group>"; };
|
|
249
|
+
BDE300C9608F251C8AFA1D50504ABDF7 /* CAPInstancePlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstancePlugin.swift; path = Capacitor/Capacitor/CAPInstancePlugin.swift; sourceTree = "<group>"; };
|
|
250
|
+
C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Plugin-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
251
|
+
C9F27616463FDAAFEFD4FAF9C0D7E273 /* CapacitorCordova.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.release.xcconfig; sourceTree = "<group>"; };
|
|
252
|
+
CFEBF528FEA370B3686166A9AB706444 /* Console.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Console.swift; sourceTree = "<group>"; };
|
|
253
|
+
D0B821635D28EDD0E1DB4E73D22C6F5E /* CapacitorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CapacitorExtension.swift; path = Capacitor/Capacitor/CapacitorExtension.swift; sourceTree = "<group>"; };
|
|
254
|
+
D28BA35FE5C57E87E217BF3845D5142E /* PluginConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginConfig.swift; path = Capacitor/Capacitor/PluginConfig.swift; sourceTree = "<group>"; };
|
|
255
|
+
D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PluginTests-frameworks.sh"; sourceTree = "<group>"; };
|
|
256
|
+
D9A1CA6B866669E493D2FD47BFA6FE2E /* CAPInstanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPInstanceConfiguration.swift; path = Capacitor/Capacitor/CAPInstanceConfiguration.swift; sourceTree = "<group>"; };
|
|
257
|
+
D9CB473E6814E3D80F66D36051EF8330 /* WKWebView+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Capacitor.swift"; path = "Capacitor/Capacitor/WKWebView+Capacitor.swift"; sourceTree = "<group>"; };
|
|
258
|
+
DA9486115996287F10A592CD74F6E93C /* CAPPluginCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginCall.m; path = Capacitor/Capacitor/CAPPluginCall.m; sourceTree = "<group>"; };
|
|
259
|
+
DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.debug.xcconfig"; sourceTree = "<group>"; };
|
|
260
|
+
E2F8A12CA05CAD29E130FE4766297D1E /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.m"; path = "Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.m"; sourceTree = "<group>"; };
|
|
261
|
+
E62155D2CBE1CCEFA4015BF25A47AA0E /* CDVConfigParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVConfigParser.m; sourceTree = "<group>"; };
|
|
262
|
+
E64ECB9371CD117BD2F81BB73623FCBE /* Array+Capacitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Capacitor.swift"; path = "Capacitor/Capacitor/Array+Capacitor.swift"; sourceTree = "<group>"; };
|
|
263
|
+
E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PluginTests.modulemap"; sourceTree = "<group>"; };
|
|
264
|
+
E8DD46ABFEC1A41428C89D6AB3DB1CBD /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CAPBridgeViewController+CDVScreenOrientationDelegate.h"; path = "Capacitor/Capacitor/CAPBridgeViewController+CDVScreenOrientationDelegate.h"; sourceTree = "<group>"; };
|
|
265
|
+
E951438BFB720E407FCE0D78C7DBEE7C /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegateImpl.h; sourceTree = "<group>"; };
|
|
266
|
+
E9AA6FBDF52ED266272028ADDF2C6B84 /* CDV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDV.h; sourceTree = "<group>"; };
|
|
267
|
+
EA40F2DAE9F4B9AC85A93DFD3F7970E8 /* CDVPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginManager.h; sourceTree = "<group>"; };
|
|
268
|
+
EBB48B0510DE37E765D35A5C367D5B34 /* CAPBridgeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeViewController.swift; path = Capacitor/Capacitor/CAPBridgeViewController.swift; sourceTree = "<group>"; };
|
|
269
|
+
EC6D4875A58DD8132F46729E1A6CB887 /* CDVPlugin+Resources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CDVPlugin+Resources.h"; sourceTree = "<group>"; };
|
|
270
|
+
EE49ED2A089114E14BBE764139619605 /* PluginCallResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PluginCallResult.swift; path = Capacitor/Capacitor/PluginCallResult.swift; sourceTree = "<group>"; };
|
|
271
|
+
EF19C7148C26D5341A85C7F9FF46D6CB /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVCommandDelegateImpl.m; sourceTree = "<group>"; };
|
|
272
|
+
EF42DD87BD5ECFB85CD7C61493E22EB3 /* NotificationHandlerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NotificationHandlerProtocol.swift; path = Capacitor/Capacitor/NotificationHandlerProtocol.swift; sourceTree = "<group>"; };
|
|
273
|
+
F1AA3ED420E62236EB7101D535A6534A /* CAPBridgedPlugin+getMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAPBridgedPlugin+getMethod.swift"; path = "Capacitor/Capacitor/CAPBridgedPlugin+getMethod.swift"; sourceTree = "<group>"; };
|
|
274
|
+
F1B0D3FD283CCEE67FDE3EDEFA4CFC0C /* CapacitorCordova-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CapacitorCordova-dummy.m"; sourceTree = "<group>"; };
|
|
275
|
+
F2DBE190EFA6F6AAAC3F01110E2E3EB5 /* CAPInstanceDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPInstanceDescriptor.h; path = Capacitor/Capacitor/CAPInstanceDescriptor.h; sourceTree = "<group>"; };
|
|
276
|
+
F54F80AB2FB32E78D11FD7B96AE091D6 /* CapacitorCordova.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.debug.xcconfig; sourceTree = "<group>"; };
|
|
277
|
+
F6F46BF7FA52C33DE0D972DEABC3D75B /* Capacitor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-prefix.pch"; sourceTree = "<group>"; };
|
|
278
|
+
F8664B2456C8BE4B1A971D312CEB03FF /* WKWebView+Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WKWebView+Capacitor.h"; path = "Capacitor/Capacitor/WKWebView+Capacitor.h"; sourceTree = "<group>"; };
|
|
279
|
+
FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PluginTests-umbrella.h"; sourceTree = "<group>"; };
|
|
280
|
+
FD5D43E5F5B04DE5A649CDBABEDDF82C /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = Capacitor/Capacitor/UIColor.swift; sourceTree = "<group>"; };
|
|
281
|
+
FF01F9CA302F59B7F7D2D10386278E72 /* Capacitor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capacitor-dummy.m"; sourceTree = "<group>"; };
|
|
282
|
+
/* End PBXFileReference section */
|
|
283
|
+
|
|
284
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
285
|
+
05729AFBFB8A784E74F2959F06661750 /* Frameworks */ = {
|
|
286
|
+
isa = PBXFrameworksBuildPhase;
|
|
287
|
+
buildActionMask = 2147483647;
|
|
288
|
+
files = (
|
|
289
|
+
6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */,
|
|
290
|
+
);
|
|
291
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
292
|
+
};
|
|
293
|
+
AD9BBAB1DF84DC65D286432842C0B75E /* Frameworks */ = {
|
|
294
|
+
isa = PBXFrameworksBuildPhase;
|
|
295
|
+
buildActionMask = 2147483647;
|
|
296
|
+
files = (
|
|
297
|
+
015BFD2102D6364AF859D463153D12E1 /* Foundation.framework in Frameworks */,
|
|
298
|
+
);
|
|
299
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
300
|
+
};
|
|
301
|
+
C5AA03BA0F33972FDE16CC927EB7208E /* Frameworks */ = {
|
|
302
|
+
isa = PBXFrameworksBuildPhase;
|
|
303
|
+
buildActionMask = 2147483647;
|
|
304
|
+
files = (
|
|
305
|
+
86F24927DA40F90422A5BFB79E17F014 /* Foundation.framework in Frameworks */,
|
|
306
|
+
5F4F50CCFA60E99BDAB5E6F7F1960607 /* WebKit.framework in Frameworks */,
|
|
307
|
+
);
|
|
308
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
309
|
+
};
|
|
310
|
+
FFD92798E00A88208723BEFC520C2C9A /* Frameworks */ = {
|
|
311
|
+
isa = PBXFrameworksBuildPhase;
|
|
312
|
+
buildActionMask = 2147483647;
|
|
313
|
+
files = (
|
|
314
|
+
FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */,
|
|
315
|
+
);
|
|
316
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
317
|
+
};
|
|
318
|
+
/* End PBXFrameworksBuildPhase section */
|
|
319
|
+
|
|
320
|
+
/* Begin PBXGroup section */
|
|
321
|
+
0B98AFEC899D06D1EF58711CD1FEBC58 /* Development Pods */ = {
|
|
322
|
+
isa = PBXGroup;
|
|
323
|
+
children = (
|
|
324
|
+
87A4A009F22BDC79EAB54EAFD009C466 /* Capacitor */,
|
|
325
|
+
83817240D59B5923C911A1EB44E167DE /* CapacitorCordova */,
|
|
326
|
+
);
|
|
327
|
+
name = "Development Pods";
|
|
328
|
+
sourceTree = "<group>";
|
|
329
|
+
};
|
|
330
|
+
1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {
|
|
331
|
+
isa = PBXGroup;
|
|
332
|
+
children = (
|
|
333
|
+
D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */,
|
|
334
|
+
);
|
|
335
|
+
name = Frameworks;
|
|
336
|
+
sourceTree = "<group>";
|
|
337
|
+
};
|
|
338
|
+
21CE5ACA19EFDED8D6E0D80F875837F8 /* Support Files */ = {
|
|
339
|
+
isa = PBXGroup;
|
|
340
|
+
children = (
|
|
341
|
+
A667BF72833532F580EAE4A2D4A0A710 /* Capacitor.modulemap */,
|
|
342
|
+
FF01F9CA302F59B7F7D2D10386278E72 /* Capacitor-dummy.m */,
|
|
343
|
+
160BEA4CB8EEA5591BF18BE8B5C3A7F6 /* Capacitor-Info.plist */,
|
|
344
|
+
F6F46BF7FA52C33DE0D972DEABC3D75B /* Capacitor-prefix.pch */,
|
|
345
|
+
B06E1EFD893E0CA8AC1E0FECEFDFA09C /* Capacitor.debug.xcconfig */,
|
|
346
|
+
6C96987D3CF66F79CA95CCD2CDE91C9F /* Capacitor.release.xcconfig */,
|
|
347
|
+
);
|
|
348
|
+
name = "Support Files";
|
|
349
|
+
path = "../../../ios/Pods/Target Support Files/Capacitor";
|
|
350
|
+
sourceTree = "<group>";
|
|
351
|
+
};
|
|
352
|
+
26EA43F8D2CB5772ED4CDC497B83C998 /* Public */ = {
|
|
353
|
+
isa = PBXGroup;
|
|
354
|
+
children = (
|
|
355
|
+
5AA61CF08DAC77A2E55459554AE90C80 /* AppDelegate.h */,
|
|
356
|
+
AE9D13C4EDB1FD2662A69A858F4612B1 /* AppDelegate.m */,
|
|
357
|
+
E9AA6FBDF52ED266272028ADDF2C6B84 /* CDV.h */,
|
|
358
|
+
30321B0AD13EB50998BB1AC20987A330 /* CDVAvailability.h */,
|
|
359
|
+
A78FA2C0401683D63B9C50EB4880C826 /* CDVCommandDelegate.h */,
|
|
360
|
+
E951438BFB720E407FCE0D78C7DBEE7C /* CDVCommandDelegateImpl.h */,
|
|
361
|
+
EF19C7148C26D5341A85C7F9FF46D6CB /* CDVCommandDelegateImpl.m */,
|
|
362
|
+
169A0896EF8E2D474AC332AC687A8B21 /* CDVConfigParser.h */,
|
|
363
|
+
E62155D2CBE1CCEFA4015BF25A47AA0E /* CDVConfigParser.m */,
|
|
364
|
+
5CBB5A28105A5E832EF81010606019F9 /* CDVInvokedUrlCommand.h */,
|
|
365
|
+
79DBBAE7C7EB109753DF70A29ED05761 /* CDVInvokedUrlCommand.m */,
|
|
366
|
+
10985BD6563318E98651AEFAE83CA4AA /* CDVPlugin.h */,
|
|
367
|
+
1189C22EE7F54E1FDC7BF5BA60BAC07B /* CDVPlugin.m */,
|
|
368
|
+
EC6D4875A58DD8132F46729E1A6CB887 /* CDVPlugin+Resources.h */,
|
|
369
|
+
436CBFAC990DCF147F486BCA4E82FD75 /* CDVPlugin+Resources.m */,
|
|
370
|
+
EA40F2DAE9F4B9AC85A93DFD3F7970E8 /* CDVPluginManager.h */,
|
|
371
|
+
8DBBF9721E92B31B841686DD016CE4E0 /* CDVPluginManager.m */,
|
|
372
|
+
5811D154C15A4C37FB795B5750C04344 /* CDVPluginResult.h */,
|
|
373
|
+
142631F2E2791AC1D513B7660FB7E59F /* CDVPluginResult.m */,
|
|
374
|
+
AD7C91272D31A9D4643596544230993C /* CDVScreenOrientationDelegate.h */,
|
|
375
|
+
5C57C77CC159A7FED658C9ED2FDD0A4A /* CDVURLProtocol.h */,
|
|
376
|
+
50BFF18F6E91DD18111CCD064C10D561 /* CDVURLProtocol.m */,
|
|
377
|
+
6FD6103755C7A17F7E1CD2D6258894DB /* CDVViewController.h */,
|
|
378
|
+
8187ACE2BCDB617D364F386C2E5867B2 /* CDVViewController.m */,
|
|
379
|
+
9ECE8CA34E68D333A6FD10E594ADC78D /* NSDictionary+CordovaPreferences.h */,
|
|
380
|
+
2D35F35ED9E16BEC4D407234D15A9476 /* NSDictionary+CordovaPreferences.m */,
|
|
381
|
+
);
|
|
382
|
+
name = Public;
|
|
383
|
+
path = Public;
|
|
384
|
+
sourceTree = "<group>";
|
|
385
|
+
};
|
|
386
|
+
69E1B194491C8CE9AA99777475E8EBF3 /* Pod */ = {
|
|
387
|
+
isa = PBXGroup;
|
|
388
|
+
children = (
|
|
389
|
+
0294887671587E089830320A97EE6D00 /* CapacitorCordova.modulemap */,
|
|
390
|
+
A0B4696BB2C753AF64D84B95279D30DA /* CapacitorCordova.podspec */,
|
|
391
|
+
);
|
|
392
|
+
name = Pod;
|
|
393
|
+
sourceTree = "<group>";
|
|
394
|
+
};
|
|
395
|
+
740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */ = {
|
|
396
|
+
isa = PBXGroup;
|
|
397
|
+
children = (
|
|
398
|
+
8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */,
|
|
399
|
+
F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */,
|
|
400
|
+
);
|
|
401
|
+
name = "Targets Support Files";
|
|
402
|
+
sourceTree = "<group>";
|
|
403
|
+
};
|
|
404
|
+
83817240D59B5923C911A1EB44E167DE /* CapacitorCordova */ = {
|
|
405
|
+
isa = PBXGroup;
|
|
406
|
+
children = (
|
|
407
|
+
64C77C82F54AD367E539C4A3B73D5BCE /* CapacitorCordova.h */,
|
|
408
|
+
D31D599F005998C282F96D5754E83F7A /* Classes */,
|
|
409
|
+
69E1B194491C8CE9AA99777475E8EBF3 /* Pod */,
|
|
410
|
+
A9271FBCA506634E136A82D5727CC829 /* Support Files */,
|
|
411
|
+
);
|
|
412
|
+
name = CapacitorCordova;
|
|
413
|
+
path = "../../node_modules/@capacitor/ios";
|
|
414
|
+
sourceTree = "<group>";
|
|
415
|
+
};
|
|
416
|
+
87A4A009F22BDC79EAB54EAFD009C466 /* Capacitor */ = {
|
|
417
|
+
isa = PBXGroup;
|
|
418
|
+
children = (
|
|
419
|
+
680F4C3F67EFB780FC97AF1A6062F5EA /* AppUUID.swift */,
|
|
420
|
+
E64ECB9371CD117BD2F81BB73623FCBE /* Array+Capacitor.swift */,
|
|
421
|
+
4236CE3D3D9EF722EDF6CEFD5AB6EA86 /* Capacitor.h */,
|
|
422
|
+
1D1CA9968AE9C330043B834314E09656 /* CapacitorBridge.swift */,
|
|
423
|
+
D0B821635D28EDD0E1DB4E73D22C6F5E /* CapacitorExtension.swift */,
|
|
424
|
+
AAEA9814D68D5FEDE6B106649BEE4E97 /* CAPApplicationDelegateProxy.swift */,
|
|
425
|
+
20520ECB2148C51B9661C8C6BC4F2D8B /* CAPBridge.swift */,
|
|
426
|
+
4BFEB8923AF3F2500B54A4D03BC7F04C /* CAPBridgeDelegate.swift */,
|
|
427
|
+
B09BDDCCA4625F70119538A2BBD79345 /* CAPBridgedJSTypes.h */,
|
|
428
|
+
A23D2DEC774669D69A76A7C129EB72C1 /* CAPBridgedJSTypes.m */,
|
|
429
|
+
34F43CC940252DAF1F13711AE4B9A607 /* CAPBridgedPlugin.h */,
|
|
430
|
+
F1AA3ED420E62236EB7101D535A6534A /* CAPBridgedPlugin+getMethod.swift */,
|
|
431
|
+
164595C2BED5931590CE4105AA3C0F68 /* CAPBridgeProtocol.swift */,
|
|
432
|
+
EBB48B0510DE37E765D35A5C367D5B34 /* CAPBridgeViewController.swift */,
|
|
433
|
+
E8DD46ABFEC1A41428C89D6AB3DB1CBD /* CAPBridgeViewController+CDVScreenOrientationDelegate.h */,
|
|
434
|
+
E2F8A12CA05CAD29E130FE4766297D1E /* CAPBridgeViewController+CDVScreenOrientationDelegate.m */,
|
|
435
|
+
7392A2BC49F587F31CC2BB681FE079D0 /* CAPFile.swift */,
|
|
436
|
+
1EBA3FFE49DBF203499CC051A99845F4 /* CAPInstanceConfiguration.h */,
|
|
437
|
+
9742DC17D72FECE06848FD2ACF2BBDE8 /* CAPInstanceConfiguration.m */,
|
|
438
|
+
D9A1CA6B866669E493D2FD47BFA6FE2E /* CAPInstanceConfiguration.swift */,
|
|
439
|
+
F2DBE190EFA6F6AAAC3F01110E2E3EB5 /* CAPInstanceDescriptor.h */,
|
|
440
|
+
21AA600ABBD62024BB4B84648931BE4C /* CAPInstanceDescriptor.m */,
|
|
441
|
+
01984A150EABAEFF4D17A170ECF76D8B /* CAPInstanceDescriptor.swift */,
|
|
442
|
+
BDE300C9608F251C8AFA1D50504ABDF7 /* CAPInstancePlugin.swift */,
|
|
443
|
+
0577A7D07B4D6E368313364D7CF19DED /* CAPLog.swift */,
|
|
444
|
+
B82AB8F411B2084547CED11E1BE7406F /* CAPNotifications.swift */,
|
|
445
|
+
316738A643C082EB731770C207FAFC60 /* CAPPlugin.h */,
|
|
446
|
+
12EE2F3D002A2BC7B58C0A4033BBB279 /* CAPPlugin.m */,
|
|
447
|
+
6674EEA159CD1057313072E148163C10 /* CAPPlugin+LoadInstance.swift */,
|
|
448
|
+
8D8F47BD830A28DE3E31B29A7883539E /* CAPPluginCall.h */,
|
|
449
|
+
DA9486115996287F10A592CD74F6E93C /* CAPPluginCall.m */,
|
|
450
|
+
245F2A89BC0FF3EB905C44FEDC55DF00 /* CAPPluginCall.swift */,
|
|
451
|
+
B23EBE69A21396CC71C7EE519830CF8B /* CAPPluginMethod.h */,
|
|
452
|
+
743A27A6DFF5557048FA0FB226C362F6 /* CAPPluginMethod.m */,
|
|
453
|
+
0102D29C63062BB0F6DA50CBD73CCC98 /* CAPWebView.swift */,
|
|
454
|
+
1E31F2C88B145738578798DCF2B86FC9 /* Data+Capacitor.swift */,
|
|
455
|
+
A03464B4CAA069913A81ADCC55A4F5EF /* DocLinks.swift */,
|
|
456
|
+
83B5C1EF807ED560D9B691CF082F2F3F /* JS.swift */,
|
|
457
|
+
4AF8910933C57B8AAF73A8E9915C0C4D /* JSExport.swift */,
|
|
458
|
+
9E29AD0E0C5864F595E6B536E740C3B4 /* JSTypes.swift */,
|
|
459
|
+
5020FCB351318F833B815F013CFAEC7D /* KeyPath.swift */,
|
|
460
|
+
BA3FF95AE33BA77FB2FC2F5AC551612C /* native-bridge.js */,
|
|
461
|
+
EF42DD87BD5ECFB85CD7C61493E22EB3 /* NotificationHandlerProtocol.swift */,
|
|
462
|
+
6487D7DA556EDA63356C386EA1B2418F /* NotificationRouter.swift */,
|
|
463
|
+
EE49ED2A089114E14BBE764139619605 /* PluginCallResult.swift */,
|
|
464
|
+
D28BA35FE5C57E87E217BF3845D5142E /* PluginConfig.swift */,
|
|
465
|
+
581D5D87FEC3519B9A191131D1E44719 /* Router.swift */,
|
|
466
|
+
0A332F2B684DF5A66D0648B77FABCEBE /* TmpViewController.swift */,
|
|
467
|
+
FD5D43E5F5B04DE5A649CDBABEDDF82C /* UIColor.swift */,
|
|
468
|
+
3CCD36920EBA52860ED44E70E166CF7E /* UIStatusBarManager+CAPHandleTapAction.m */,
|
|
469
|
+
3BD4708A77E12F32580EF3556C9C4A95 /* WebViewAssetHandler.swift */,
|
|
470
|
+
5968BBB181EAAC9494873B7C283A3444 /* WebViewDelegationHandler.swift */,
|
|
471
|
+
F8664B2456C8BE4B1A971D312CEB03FF /* WKWebView+Capacitor.h */,
|
|
472
|
+
4F88579F622D7A56DF0F1033986C7F17 /* WKWebView+Capacitor.m */,
|
|
473
|
+
D9CB473E6814E3D80F66D36051EF8330 /* WKWebView+Capacitor.swift */,
|
|
474
|
+
9AA780865462B1E40545C82BF4A3361E /* Plugins */,
|
|
475
|
+
FDD076FE18EBEE877E3927FF80176674 /* Pod */,
|
|
476
|
+
21CE5ACA19EFDED8D6E0D80F875837F8 /* Support Files */,
|
|
477
|
+
);
|
|
478
|
+
name = Capacitor;
|
|
479
|
+
path = "../../node_modules/@capacitor/ios";
|
|
480
|
+
sourceTree = "<group>";
|
|
481
|
+
};
|
|
482
|
+
8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */ = {
|
|
483
|
+
isa = PBXGroup;
|
|
484
|
+
children = (
|
|
485
|
+
401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */,
|
|
486
|
+
C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */,
|
|
487
|
+
535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */,
|
|
488
|
+
B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */,
|
|
489
|
+
11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */,
|
|
490
|
+
7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */,
|
|
491
|
+
DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */,
|
|
492
|
+
6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */,
|
|
493
|
+
);
|
|
494
|
+
name = "Pods-Plugin";
|
|
495
|
+
path = "Target Support Files/Pods-Plugin";
|
|
496
|
+
sourceTree = "<group>";
|
|
497
|
+
};
|
|
498
|
+
9AA780865462B1E40545C82BF4A3361E /* Plugins */ = {
|
|
499
|
+
isa = PBXGroup;
|
|
500
|
+
children = (
|
|
501
|
+
AC966AE0CEE55EAEB7165D74E9D9A66C /* CapacitorCookieManager.swift */,
|
|
502
|
+
69AF2E66D0E2CA23B4B0DD86B23E513B /* CapacitorCookies.swift */,
|
|
503
|
+
1123BDA93EBC687D121735DDDC398B59 /* CapacitorHttp.swift */,
|
|
504
|
+
39A8B41ED0549FB86278A955F8434C8B /* CapacitorUrlRequest.swift */,
|
|
505
|
+
CFEBF528FEA370B3686166A9AB706444 /* Console.swift */,
|
|
506
|
+
9287FCF81C320ABFBB8F2B7FAD81E31D /* DefaultPlugins.m */,
|
|
507
|
+
4587F4E848B75095BD0115E782A2ED54 /* HttpRequestHandler.swift */,
|
|
508
|
+
7BB4739F6804873F5254D897E31AB912 /* WebView.swift */,
|
|
509
|
+
);
|
|
510
|
+
name = Plugins;
|
|
511
|
+
path = Capacitor/Capacitor/Plugins;
|
|
512
|
+
sourceTree = "<group>";
|
|
513
|
+
};
|
|
514
|
+
A9271FBCA506634E136A82D5727CC829 /* Support Files */ = {
|
|
515
|
+
isa = PBXGroup;
|
|
516
|
+
children = (
|
|
517
|
+
694FD259D924DD5A2A4EBFFC93DE9C10 /* CapacitorCordova.modulemap */,
|
|
518
|
+
F1B0D3FD283CCEE67FDE3EDEFA4CFC0C /* CapacitorCordova-dummy.m */,
|
|
519
|
+
A317B3FD1C3E92FF75729A9646BF1C50 /* CapacitorCordova-Info.plist */,
|
|
520
|
+
12C1DC883922C032A558314659CF40F9 /* CapacitorCordova-prefix.pch */,
|
|
521
|
+
F54F80AB2FB32E78D11FD7B96AE091D6 /* CapacitorCordova.debug.xcconfig */,
|
|
522
|
+
C9F27616463FDAAFEFD4FAF9C0D7E273 /* CapacitorCordova.release.xcconfig */,
|
|
523
|
+
);
|
|
524
|
+
name = "Support Files";
|
|
525
|
+
path = "../../../ios/Pods/Target Support Files/CapacitorCordova";
|
|
526
|
+
sourceTree = "<group>";
|
|
527
|
+
};
|
|
528
|
+
B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */ = {
|
|
529
|
+
isa = PBXGroup;
|
|
530
|
+
children = (
|
|
531
|
+
44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */,
|
|
532
|
+
1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */,
|
|
533
|
+
4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */,
|
|
534
|
+
58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */,
|
|
535
|
+
);
|
|
536
|
+
name = Products;
|
|
537
|
+
sourceTree = "<group>";
|
|
538
|
+
};
|
|
539
|
+
CF1408CF629C7361332E53B88F7BD30C = {
|
|
540
|
+
isa = PBXGroup;
|
|
541
|
+
children = (
|
|
542
|
+
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
|
|
543
|
+
0B98AFEC899D06D1EF58711CD1FEBC58 /* Development Pods */,
|
|
544
|
+
1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,
|
|
545
|
+
B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */,
|
|
546
|
+
740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */,
|
|
547
|
+
);
|
|
548
|
+
sourceTree = "<group>";
|
|
549
|
+
};
|
|
550
|
+
D31D599F005998C282F96D5754E83F7A /* Classes */ = {
|
|
551
|
+
isa = PBXGroup;
|
|
552
|
+
children = (
|
|
553
|
+
26EA43F8D2CB5772ED4CDC497B83C998 /* Public */,
|
|
554
|
+
);
|
|
555
|
+
name = Classes;
|
|
556
|
+
path = CapacitorCordova/CapacitorCordova/Classes;
|
|
557
|
+
sourceTree = "<group>";
|
|
558
|
+
};
|
|
559
|
+
D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */ = {
|
|
560
|
+
isa = PBXGroup;
|
|
561
|
+
children = (
|
|
562
|
+
32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */,
|
|
563
|
+
2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */,
|
|
564
|
+
);
|
|
565
|
+
name = iOS;
|
|
566
|
+
sourceTree = "<group>";
|
|
567
|
+
};
|
|
568
|
+
F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */ = {
|
|
569
|
+
isa = PBXGroup;
|
|
570
|
+
children = (
|
|
571
|
+
E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */,
|
|
572
|
+
A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */,
|
|
573
|
+
45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */,
|
|
574
|
+
7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */,
|
|
575
|
+
D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */,
|
|
576
|
+
939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */,
|
|
577
|
+
FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */,
|
|
578
|
+
47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */,
|
|
579
|
+
7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */,
|
|
580
|
+
);
|
|
581
|
+
name = "Pods-PluginTests";
|
|
582
|
+
path = "Target Support Files/Pods-PluginTests";
|
|
583
|
+
sourceTree = "<group>";
|
|
584
|
+
};
|
|
585
|
+
FDD076FE18EBEE877E3927FF80176674 /* Pod */ = {
|
|
586
|
+
isa = PBXGroup;
|
|
587
|
+
children = (
|
|
588
|
+
4CB71FB91981C5051E0EB76C3C9313D2 /* Capacitor.modulemap */,
|
|
589
|
+
5BC63A3DE8B9BCB5240D2D4E565DB127 /* Capacitor.podspec */,
|
|
590
|
+
);
|
|
591
|
+
name = Pod;
|
|
592
|
+
sourceTree = "<group>";
|
|
593
|
+
};
|
|
594
|
+
/* End PBXGroup section */
|
|
595
|
+
|
|
596
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
597
|
+
292A13BA1F08AE75B20CED688DC6476F /* Headers */ = {
|
|
598
|
+
isa = PBXHeadersBuildPhase;
|
|
599
|
+
buildActionMask = 2147483647;
|
|
600
|
+
files = (
|
|
601
|
+
F33C7D607BBC314885F8CE0D3ABE9143 /* AppDelegate.h in Headers */,
|
|
602
|
+
ACAE4B25A46F2DE429F92AAFDE0CBB06 /* CapacitorCordova.h in Headers */,
|
|
603
|
+
64A4DD5E613A2942B352CC1A55A37CC6 /* CDV.h in Headers */,
|
|
604
|
+
C49B22DAA4D611284E11C23BF0EA9B0E /* CDVAvailability.h in Headers */,
|
|
605
|
+
29CD08DF0714DB1A9CDB2FFB2DD80A80 /* CDVCommandDelegate.h in Headers */,
|
|
606
|
+
97D947D0F261144CC6BDA1B9070029E6 /* CDVCommandDelegateImpl.h in Headers */,
|
|
607
|
+
3E1FA449347692EE0AD04B53A19A0932 /* CDVConfigParser.h in Headers */,
|
|
608
|
+
DCDDE898D6C84FC6C1E7DFD38933D651 /* CDVInvokedUrlCommand.h in Headers */,
|
|
609
|
+
E44F7AAEA3EB3C97D84FC38CE415D75A /* CDVPlugin.h in Headers */,
|
|
610
|
+
A87DB350376D8BD793DBD87C4E654A6A /* CDVPlugin+Resources.h in Headers */,
|
|
611
|
+
0F66759CC2B665761257037340A8311B /* CDVPluginManager.h in Headers */,
|
|
612
|
+
8F949D01DC72DC85221041426B63C886 /* CDVPluginResult.h in Headers */,
|
|
613
|
+
0B0F800481CBA67344214EF494F26BA0 /* CDVScreenOrientationDelegate.h in Headers */,
|
|
614
|
+
3F90887C7A81B9D0B9FDA50A022367F8 /* CDVURLProtocol.h in Headers */,
|
|
615
|
+
879BB11E46BA5F7683F54D1C349F3518 /* CDVViewController.h in Headers */,
|
|
616
|
+
68EACFF7EE96F057EED707D2C83C9885 /* NSDictionary+CordovaPreferences.h in Headers */,
|
|
617
|
+
);
|
|
618
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
619
|
+
};
|
|
620
|
+
357AD0DC2A6B38717F8E766B14F7B904 /* Headers */ = {
|
|
621
|
+
isa = PBXHeadersBuildPhase;
|
|
622
|
+
buildActionMask = 2147483647;
|
|
623
|
+
files = (
|
|
624
|
+
CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */,
|
|
625
|
+
);
|
|
626
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
627
|
+
};
|
|
628
|
+
CD0146D9209B52D85411E99B60EE90BD /* Headers */ = {
|
|
629
|
+
isa = PBXHeadersBuildPhase;
|
|
630
|
+
buildActionMask = 2147483647;
|
|
631
|
+
files = (
|
|
632
|
+
107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */,
|
|
633
|
+
);
|
|
634
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
635
|
+
};
|
|
636
|
+
DA1AA6C3D71C7CC4F1856F235512FB98 /* Headers */ = {
|
|
637
|
+
isa = PBXHeadersBuildPhase;
|
|
638
|
+
buildActionMask = 2147483647;
|
|
639
|
+
files = (
|
|
640
|
+
0A57A27DD15FEDD8649FA2FCA4E0C181 /* Capacitor.h in Headers */,
|
|
641
|
+
36E932077F0D9EB7FD81AB26A2F498FE /* CAPBridgedJSTypes.h in Headers */,
|
|
642
|
+
D8EC3A035D26C65CEB8BA45347DE7BD9 /* CAPBridgedPlugin.h in Headers */,
|
|
643
|
+
E4C448681C61D203F6B116BFACFD2391 /* CAPBridgeViewController+CDVScreenOrientationDelegate.h in Headers */,
|
|
644
|
+
6BAC3EB110AF916BA141E4DE93821660 /* CAPInstanceConfiguration.h in Headers */,
|
|
645
|
+
ED0FBE6F96B10D89918F37A05086B351 /* CAPInstanceDescriptor.h in Headers */,
|
|
646
|
+
A650FC944B924C08BD167753A71F4B59 /* CAPPlugin.h in Headers */,
|
|
647
|
+
1185667BCEF4348EEBA4DB806BBD95AA /* CAPPluginCall.h in Headers */,
|
|
648
|
+
BA8F486EE89D4BD4F0B858DEC359F716 /* CAPPluginMethod.h in Headers */,
|
|
649
|
+
625DEE488D2C658197C95DF057C02E0E /* WKWebView+Capacitor.h in Headers */,
|
|
650
|
+
);
|
|
651
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
652
|
+
};
|
|
653
|
+
/* End PBXHeadersBuildPhase section */
|
|
654
|
+
|
|
655
|
+
/* Begin PBXNativeTarget section */
|
|
656
|
+
0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */ = {
|
|
657
|
+
isa = PBXNativeTarget;
|
|
658
|
+
buildConfigurationList = B199849C64840E0A9456B3139423B266 /* Build configuration list for PBXNativeTarget "Capacitor" */;
|
|
659
|
+
buildPhases = (
|
|
660
|
+
DA1AA6C3D71C7CC4F1856F235512FB98 /* Headers */,
|
|
661
|
+
E40A7F65ED5B2118839B958E313D9DDA /* Sources */,
|
|
662
|
+
AD9BBAB1DF84DC65D286432842C0B75E /* Frameworks */,
|
|
663
|
+
3A97EFA7B71B3FFD86BAC45D5F6918B9 /* Resources */,
|
|
664
|
+
);
|
|
665
|
+
buildRules = (
|
|
666
|
+
);
|
|
667
|
+
dependencies = (
|
|
668
|
+
81EE276CE5EF3AE1393627366097025B /* PBXTargetDependency */,
|
|
669
|
+
);
|
|
670
|
+
name = Capacitor;
|
|
671
|
+
productName = Capacitor;
|
|
672
|
+
productReference = 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */;
|
|
673
|
+
productType = "com.apple.product-type.framework";
|
|
674
|
+
};
|
|
675
|
+
10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */ = {
|
|
676
|
+
isa = PBXNativeTarget;
|
|
677
|
+
buildConfigurationList = 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */;
|
|
678
|
+
buildPhases = (
|
|
679
|
+
357AD0DC2A6B38717F8E766B14F7B904 /* Headers */,
|
|
680
|
+
CE7D9667E8CB083330F25DBA1A121614 /* Sources */,
|
|
681
|
+
05729AFBFB8A784E74F2959F06661750 /* Frameworks */,
|
|
682
|
+
66F8DAFC08A88AE635AABEADC89F9782 /* Resources */,
|
|
683
|
+
);
|
|
684
|
+
buildRules = (
|
|
685
|
+
);
|
|
686
|
+
dependencies = (
|
|
687
|
+
AABF1263490599B638FC31A9919DDE90 /* PBXTargetDependency */,
|
|
688
|
+
62298F4AAD2B5503F94E94384B91030F /* PBXTargetDependency */,
|
|
689
|
+
);
|
|
690
|
+
name = "Pods-Plugin";
|
|
691
|
+
productName = Pods_Plugin;
|
|
692
|
+
productReference = 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */;
|
|
693
|
+
productType = "com.apple.product-type.framework";
|
|
694
|
+
};
|
|
695
|
+
400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */ = {
|
|
696
|
+
isa = PBXNativeTarget;
|
|
697
|
+
buildConfigurationList = 48D386813907257E66B9956E21448D89 /* Build configuration list for PBXNativeTarget "CapacitorCordova" */;
|
|
698
|
+
buildPhases = (
|
|
699
|
+
292A13BA1F08AE75B20CED688DC6476F /* Headers */,
|
|
700
|
+
2C94F0C02AF351D638995E53DD176180 /* Sources */,
|
|
701
|
+
C5AA03BA0F33972FDE16CC927EB7208E /* Frameworks */,
|
|
702
|
+
CAC98A6CE9B7428E2553D8EBDABA8CD8 /* Resources */,
|
|
703
|
+
);
|
|
704
|
+
buildRules = (
|
|
705
|
+
);
|
|
706
|
+
dependencies = (
|
|
707
|
+
);
|
|
708
|
+
name = CapacitorCordova;
|
|
709
|
+
productName = Cordova;
|
|
710
|
+
productReference = 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */;
|
|
711
|
+
productType = "com.apple.product-type.framework";
|
|
712
|
+
};
|
|
713
|
+
401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */ = {
|
|
714
|
+
isa = PBXNativeTarget;
|
|
715
|
+
buildConfigurationList = 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */;
|
|
716
|
+
buildPhases = (
|
|
717
|
+
CD0146D9209B52D85411E99B60EE90BD /* Headers */,
|
|
718
|
+
CFFDE113260979B402C1E4C5B825B6C1 /* Sources */,
|
|
719
|
+
FFD92798E00A88208723BEFC520C2C9A /* Frameworks */,
|
|
720
|
+
35B229A540F02FD5EB6A4690A3C8F305 /* Resources */,
|
|
721
|
+
);
|
|
722
|
+
buildRules = (
|
|
723
|
+
);
|
|
724
|
+
dependencies = (
|
|
725
|
+
4DDB948E967957A1A4CBD2F89A6AB747 /* PBXTargetDependency */,
|
|
726
|
+
B13A2AF9D95FCEF722C8ED942F5CF716 /* PBXTargetDependency */,
|
|
727
|
+
);
|
|
728
|
+
name = "Pods-PluginTests";
|
|
729
|
+
productName = Pods_PluginTests;
|
|
730
|
+
productReference = 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */;
|
|
731
|
+
productType = "com.apple.product-type.framework";
|
|
732
|
+
};
|
|
733
|
+
/* End PBXNativeTarget section */
|
|
734
|
+
|
|
735
|
+
/* Begin PBXProject section */
|
|
736
|
+
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
|
|
737
|
+
isa = PBXProject;
|
|
738
|
+
attributes = {
|
|
739
|
+
LastSwiftUpdateCheck = 1240;
|
|
740
|
+
LastUpgradeCheck = 1240;
|
|
741
|
+
};
|
|
742
|
+
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
|
|
743
|
+
compatibilityVersion = "Xcode 8.0";
|
|
744
|
+
developmentRegion = en;
|
|
745
|
+
hasScannedForEncodings = 0;
|
|
746
|
+
knownRegions = (
|
|
747
|
+
Base,
|
|
748
|
+
en,
|
|
749
|
+
);
|
|
750
|
+
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
|
|
751
|
+
productRefGroup = B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */;
|
|
752
|
+
projectDirPath = "";
|
|
753
|
+
projectRoot = "";
|
|
754
|
+
targets = (
|
|
755
|
+
0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */,
|
|
756
|
+
400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */,
|
|
757
|
+
10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */,
|
|
758
|
+
401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */,
|
|
759
|
+
);
|
|
760
|
+
};
|
|
761
|
+
/* End PBXProject section */
|
|
762
|
+
|
|
763
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
764
|
+
35B229A540F02FD5EB6A4690A3C8F305 /* Resources */ = {
|
|
765
|
+
isa = PBXResourcesBuildPhase;
|
|
766
|
+
buildActionMask = 2147483647;
|
|
767
|
+
files = (
|
|
768
|
+
);
|
|
769
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
770
|
+
};
|
|
771
|
+
3A97EFA7B71B3FFD86BAC45D5F6918B9 /* Resources */ = {
|
|
772
|
+
isa = PBXResourcesBuildPhase;
|
|
773
|
+
buildActionMask = 2147483647;
|
|
774
|
+
files = (
|
|
775
|
+
96D3F327423D4E2F0DE379C4ADC8D57D /* native-bridge.js in Resources */,
|
|
776
|
+
);
|
|
777
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
778
|
+
};
|
|
779
|
+
66F8DAFC08A88AE635AABEADC89F9782 /* Resources */ = {
|
|
780
|
+
isa = PBXResourcesBuildPhase;
|
|
781
|
+
buildActionMask = 2147483647;
|
|
782
|
+
files = (
|
|
783
|
+
);
|
|
784
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
785
|
+
};
|
|
786
|
+
CAC98A6CE9B7428E2553D8EBDABA8CD8 /* Resources */ = {
|
|
787
|
+
isa = PBXResourcesBuildPhase;
|
|
788
|
+
buildActionMask = 2147483647;
|
|
789
|
+
files = (
|
|
790
|
+
);
|
|
791
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
792
|
+
};
|
|
793
|
+
/* End PBXResourcesBuildPhase section */
|
|
794
|
+
|
|
795
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
796
|
+
2C94F0C02AF351D638995E53DD176180 /* Sources */ = {
|
|
797
|
+
isa = PBXSourcesBuildPhase;
|
|
798
|
+
buildActionMask = 2147483647;
|
|
799
|
+
files = (
|
|
800
|
+
65A1345BE186826998F0C175EFBD712F /* AppDelegate.m in Sources */,
|
|
801
|
+
0226A11D5C77423F648317B090D4273E /* CapacitorCordova-dummy.m in Sources */,
|
|
802
|
+
65C9D3E28206432CD0E0822B45916814 /* CDVCommandDelegateImpl.m in Sources */,
|
|
803
|
+
1DCE98143A34574E4E761DA59563C0DB /* CDVConfigParser.m in Sources */,
|
|
804
|
+
E8F476265BCBEF8C50439BA291686456 /* CDVInvokedUrlCommand.m in Sources */,
|
|
805
|
+
1A02273EDD6787F67201F73B7A1C10A4 /* CDVPlugin.m in Sources */,
|
|
806
|
+
40796A73EECAC0D0F49C08BBC0558494 /* CDVPlugin+Resources.m in Sources */,
|
|
807
|
+
E7241E99F37C5F20A7475937BB298FCA /* CDVPluginManager.m in Sources */,
|
|
808
|
+
E75A3AA8238D64E4891A8B8FCFBF6DE1 /* CDVPluginResult.m in Sources */,
|
|
809
|
+
713F64BBB612840307648CE02224413C /* CDVURLProtocol.m in Sources */,
|
|
810
|
+
53D6497D235074A0C34E88A306FCE673 /* CDVViewController.m in Sources */,
|
|
811
|
+
CB5CC725567F1724CF847866981C9E1A /* NSDictionary+CordovaPreferences.m in Sources */,
|
|
812
|
+
);
|
|
813
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
814
|
+
};
|
|
815
|
+
CE7D9667E8CB083330F25DBA1A121614 /* Sources */ = {
|
|
816
|
+
isa = PBXSourcesBuildPhase;
|
|
817
|
+
buildActionMask = 2147483647;
|
|
818
|
+
files = (
|
|
819
|
+
8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */,
|
|
820
|
+
);
|
|
821
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
822
|
+
};
|
|
823
|
+
CFFDE113260979B402C1E4C5B825B6C1 /* Sources */ = {
|
|
824
|
+
isa = PBXSourcesBuildPhase;
|
|
825
|
+
buildActionMask = 2147483647;
|
|
826
|
+
files = (
|
|
827
|
+
164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */,
|
|
828
|
+
);
|
|
829
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
830
|
+
};
|
|
831
|
+
E40A7F65ED5B2118839B958E313D9DDA /* Sources */ = {
|
|
832
|
+
isa = PBXSourcesBuildPhase;
|
|
833
|
+
buildActionMask = 2147483647;
|
|
834
|
+
files = (
|
|
835
|
+
1F42EA990BB55F7B7B530410028CE16C /* AppUUID.swift in Sources */,
|
|
836
|
+
87614EECFCD7508D55616574FE193539 /* Array+Capacitor.swift in Sources */,
|
|
837
|
+
6B78161F1A9F83127C601030EA808C3A /* Capacitor-dummy.m in Sources */,
|
|
838
|
+
4231D93F10E5ED3B70E061F8FE4064C7 /* CapacitorBridge.swift in Sources */,
|
|
839
|
+
8043B6E2C6676504E50C87B7DADC8C17 /* CapacitorCookieManager.swift in Sources */,
|
|
840
|
+
8082FC00A5D75BD075B1ABF368351A49 /* CapacitorCookies.swift in Sources */,
|
|
841
|
+
CB594FE817D44935C5E0EF08588FF44F /* CapacitorExtension.swift in Sources */,
|
|
842
|
+
54927217C37B4E72D7AF0F89D18CE50C /* CapacitorHttp.swift in Sources */,
|
|
843
|
+
488416DF903392C666B25E2EF0997BD5 /* CapacitorUrlRequest.swift in Sources */,
|
|
844
|
+
8AF5B0A3E35BDAE31C8A3387438AB263 /* CAPApplicationDelegateProxy.swift in Sources */,
|
|
845
|
+
4538D37504AB52487A09AA16330D0926 /* CAPBridge.swift in Sources */,
|
|
846
|
+
EB856AFCC0F5204A54BE5D4414948A14 /* CAPBridgeDelegate.swift in Sources */,
|
|
847
|
+
B2F923B9EAC780D88604EBD65D23D778 /* CAPBridgedJSTypes.m in Sources */,
|
|
848
|
+
C112889698B959D30D3B825C6DBD595D /* CAPBridgedPlugin+getMethod.swift in Sources */,
|
|
849
|
+
1E68C93743AA2D068D6F1B18CC9C8E7E /* CAPBridgeProtocol.swift in Sources */,
|
|
850
|
+
C8679F30E9C7BC3076D666B90998E37C /* CAPBridgeViewController.swift in Sources */,
|
|
851
|
+
E046F53AA90DEDBE54700D9AE2CD2C8E /* CAPBridgeViewController+CDVScreenOrientationDelegate.m in Sources */,
|
|
852
|
+
F4989A71C1E53776EA6DB90F88F303A1 /* CAPFile.swift in Sources */,
|
|
853
|
+
9411E5BB9430984782049C5FF5947E14 /* CAPInstanceConfiguration.m in Sources */,
|
|
854
|
+
D3486FE98873AEF44EC380E606C0FD31 /* CAPInstanceConfiguration.swift in Sources */,
|
|
855
|
+
A8905C0DEBCDF0F11C48A0C3E014C663 /* CAPInstanceDescriptor.m in Sources */,
|
|
856
|
+
7A86C60BF39D22212BA7AFCD0ED8D213 /* CAPInstanceDescriptor.swift in Sources */,
|
|
857
|
+
192F71942DC4AAF150F2CA05DD4955AC /* CAPInstancePlugin.swift in Sources */,
|
|
858
|
+
CCD0F26C32D5431A7DC4F0A59AC3FFE4 /* CAPLog.swift in Sources */,
|
|
859
|
+
33F5C1E93ACF2D15DD385250FBD0E64F /* CAPNotifications.swift in Sources */,
|
|
860
|
+
C7666C140F13EF3890717569C0875304 /* CAPPlugin.m in Sources */,
|
|
861
|
+
4155E4F333ED0BE75301B6295F0026F8 /* CAPPlugin+LoadInstance.swift in Sources */,
|
|
862
|
+
5AD07F69F2BE3C5D7F028CE18553E5A6 /* CAPPluginCall.m in Sources */,
|
|
863
|
+
C3259BE13C3C269B625DA4EF70CA2934 /* CAPPluginCall.swift in Sources */,
|
|
864
|
+
DFF93D7CA4DABF46314CCF87B5B08741 /* CAPPluginMethod.m in Sources */,
|
|
865
|
+
A2510958BDA25A72D2D32B2DF0A073AA /* CAPWebView.swift in Sources */,
|
|
866
|
+
618C0E001EF1B752EEB9CACB44EEC536 /* Console.swift in Sources */,
|
|
867
|
+
046F6C0B861C6F38E5C231473451B12A /* Data+Capacitor.swift in Sources */,
|
|
868
|
+
9485DCE8608360E9ABF3D033E025FAF7 /* DefaultPlugins.m in Sources */,
|
|
869
|
+
96DBC9B49EE97F7A7FB06746186CA129 /* DocLinks.swift in Sources */,
|
|
870
|
+
9715B2FF437B2449E1A1C6CD03A39D5D /* HttpRequestHandler.swift in Sources */,
|
|
871
|
+
04EF9C5150A365B46562E613EE797D1A /* JS.swift in Sources */,
|
|
872
|
+
3427F82054E36249530B7ECFE73494A6 /* JSExport.swift in Sources */,
|
|
873
|
+
2F45D122302FB80D2210D91EB03960DA /* JSTypes.swift in Sources */,
|
|
874
|
+
899DAC655BA73074EECE083A2EE14469 /* KeyPath.swift in Sources */,
|
|
875
|
+
E7AA4AF69C1828BCCA6E4557BD0D49F8 /* NotificationHandlerProtocol.swift in Sources */,
|
|
876
|
+
26FB3C2A729B5AC0895DA82EA28975E1 /* NotificationRouter.swift in Sources */,
|
|
877
|
+
4918731912A0E9D7779547119D8564C8 /* PluginCallResult.swift in Sources */,
|
|
878
|
+
8ED7EABCB34E69DE88D6764F34CB06BE /* PluginConfig.swift in Sources */,
|
|
879
|
+
FF056C585DEEA70CAEB295266D9748DE /* Router.swift in Sources */,
|
|
880
|
+
062C880AE7C05302158B2978CE0F7633 /* TmpViewController.swift in Sources */,
|
|
881
|
+
6388BC9CDDEF9EC7F0814D4C06A6D19B /* UIColor.swift in Sources */,
|
|
882
|
+
0E297980DC3AB824BB8E2DA800EEE77E /* UIStatusBarManager+CAPHandleTapAction.m in Sources */,
|
|
883
|
+
B55C5B9D96842063EECE8152F00AA95B /* WebView.swift in Sources */,
|
|
884
|
+
992F6182768FDEA629ED9B03FC7C408E /* WebViewAssetHandler.swift in Sources */,
|
|
885
|
+
551FD85F7C077DA8F39242156C1857DD /* WebViewDelegationHandler.swift in Sources */,
|
|
886
|
+
B2BD10AE4B3884B6BFF255203C7964BD /* WKWebView+Capacitor.m in Sources */,
|
|
887
|
+
15FBBA3A7B58AC956DF455A76E8B4B69 /* WKWebView+Capacitor.swift in Sources */,
|
|
888
|
+
);
|
|
889
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
890
|
+
};
|
|
891
|
+
/* End PBXSourcesBuildPhase section */
|
|
892
|
+
|
|
893
|
+
/* Begin PBXTargetDependency section */
|
|
894
|
+
4DDB948E967957A1A4CBD2F89A6AB747 /* PBXTargetDependency */ = {
|
|
895
|
+
isa = PBXTargetDependency;
|
|
896
|
+
name = Capacitor;
|
|
897
|
+
target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
|
|
898
|
+
targetProxy = A9BF21F76380F02DC66CD9392AE3BEF3 /* PBXContainerItemProxy */;
|
|
899
|
+
};
|
|
900
|
+
62298F4AAD2B5503F94E94384B91030F /* PBXTargetDependency */ = {
|
|
901
|
+
isa = PBXTargetDependency;
|
|
902
|
+
name = CapacitorCordova;
|
|
903
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
904
|
+
targetProxy = 34C5DE13D6ABBDFEFF7FCE4769B4B96F /* PBXContainerItemProxy */;
|
|
905
|
+
};
|
|
906
|
+
81EE276CE5EF3AE1393627366097025B /* PBXTargetDependency */ = {
|
|
907
|
+
isa = PBXTargetDependency;
|
|
908
|
+
name = CapacitorCordova;
|
|
909
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
910
|
+
targetProxy = 4304B15537FC657E404B123F4D1BEA98 /* PBXContainerItemProxy */;
|
|
911
|
+
};
|
|
912
|
+
AABF1263490599B638FC31A9919DDE90 /* PBXTargetDependency */ = {
|
|
913
|
+
isa = PBXTargetDependency;
|
|
914
|
+
name = Capacitor;
|
|
915
|
+
target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
|
|
916
|
+
targetProxy = E2050EE667D4B6AB36EA90E41B3BFB5E /* PBXContainerItemProxy */;
|
|
917
|
+
};
|
|
918
|
+
B13A2AF9D95FCEF722C8ED942F5CF716 /* PBXTargetDependency */ = {
|
|
919
|
+
isa = PBXTargetDependency;
|
|
920
|
+
name = CapacitorCordova;
|
|
921
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
922
|
+
targetProxy = F52E65675F497B75F6B3C04710F923E5 /* PBXContainerItemProxy */;
|
|
923
|
+
};
|
|
924
|
+
/* End PBXTargetDependency section */
|
|
925
|
+
|
|
926
|
+
/* Begin XCBuildConfiguration section */
|
|
927
|
+
25C9C7BE983775E895ED3117240BC7EB /* Debug */ = {
|
|
928
|
+
isa = XCBuildConfiguration;
|
|
929
|
+
baseConfigurationReference = DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */;
|
|
930
|
+
buildSettings = {
|
|
931
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
932
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
933
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
934
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
935
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
936
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
937
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
938
|
+
DEFINES_MODULE = YES;
|
|
939
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
940
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
941
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
942
|
+
INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
|
|
943
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
944
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
945
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
946
|
+
MACH_O_TYPE = staticlib;
|
|
947
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
|
|
948
|
+
OTHER_LDFLAGS = "";
|
|
949
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
950
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
951
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
952
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
953
|
+
SDKROOT = iphoneos;
|
|
954
|
+
SKIP_INSTALL = YES;
|
|
955
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
956
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
957
|
+
VERSION_INFO_PREFIX = "";
|
|
958
|
+
};
|
|
959
|
+
name = Debug;
|
|
960
|
+
};
|
|
961
|
+
84AC07D1B967FA01542DA3AB71BC3C47 /* Release */ = {
|
|
962
|
+
isa = XCBuildConfiguration;
|
|
963
|
+
baseConfigurationReference = 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */;
|
|
964
|
+
buildSettings = {
|
|
965
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
966
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
967
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
968
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
969
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
970
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
971
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
972
|
+
DEFINES_MODULE = YES;
|
|
973
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
974
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
975
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
976
|
+
INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
|
|
977
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
978
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
979
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
980
|
+
MACH_O_TYPE = staticlib;
|
|
981
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
|
|
982
|
+
OTHER_LDFLAGS = "";
|
|
983
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
984
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
985
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
986
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
987
|
+
SDKROOT = iphoneos;
|
|
988
|
+
SKIP_INSTALL = YES;
|
|
989
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
990
|
+
VALIDATE_PRODUCT = YES;
|
|
991
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
992
|
+
VERSION_INFO_PREFIX = "";
|
|
993
|
+
};
|
|
994
|
+
name = Release;
|
|
995
|
+
};
|
|
996
|
+
8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = {
|
|
997
|
+
isa = XCBuildConfiguration;
|
|
998
|
+
buildSettings = {
|
|
999
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1000
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1001
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1002
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1003
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1004
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1005
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1006
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1007
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
1008
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1009
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1010
|
+
CLANG_WARN_COMMA = YES;
|
|
1011
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1012
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1013
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1014
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1015
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1016
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1017
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1018
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1019
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1020
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1021
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1022
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1023
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
1024
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1025
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1026
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1027
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1028
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1029
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1030
|
+
COPY_PHASE_STRIP = NO;
|
|
1031
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
1032
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1033
|
+
ENABLE_TESTABILITY = YES;
|
|
1034
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1035
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
1036
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1037
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
1038
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1039
|
+
"POD_CONFIGURATION_DEBUG=1",
|
|
1040
|
+
"DEBUG=1",
|
|
1041
|
+
"$(inherited)",
|
|
1042
|
+
);
|
|
1043
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1044
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1045
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1046
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1047
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1048
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1049
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1050
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
1051
|
+
MTL_FAST_MATH = YES;
|
|
1052
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
1053
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1054
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
1055
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
1056
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
1057
|
+
SWIFT_VERSION = 5.0;
|
|
1058
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
1059
|
+
};
|
|
1060
|
+
name = Debug;
|
|
1061
|
+
};
|
|
1062
|
+
9972596614DF03AC70123A2F5CB84AEA /* Debug */ = {
|
|
1063
|
+
isa = XCBuildConfiguration;
|
|
1064
|
+
baseConfigurationReference = B06E1EFD893E0CA8AC1E0FECEFDFA09C /* Capacitor.debug.xcconfig */;
|
|
1065
|
+
buildSettings = {
|
|
1066
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1067
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1068
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1069
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1070
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1071
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1072
|
+
DEFINES_MODULE = YES;
|
|
1073
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1074
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1075
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1076
|
+
GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
|
|
1077
|
+
INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
|
|
1078
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1079
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1080
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1081
|
+
MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
|
|
1082
|
+
PRODUCT_MODULE_NAME = Capacitor;
|
|
1083
|
+
PRODUCT_NAME = Capacitor;
|
|
1084
|
+
SDKROOT = iphoneos;
|
|
1085
|
+
SKIP_INSTALL = YES;
|
|
1086
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1087
|
+
SWIFT_VERSION = 5.1;
|
|
1088
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1089
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1090
|
+
VERSION_INFO_PREFIX = "";
|
|
1091
|
+
};
|
|
1092
|
+
name = Debug;
|
|
1093
|
+
};
|
|
1094
|
+
9E406C6AAF85E580207CD97B0044DEAB /* Release */ = {
|
|
1095
|
+
isa = XCBuildConfiguration;
|
|
1096
|
+
buildSettings = {
|
|
1097
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1098
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1099
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1100
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1101
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1102
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1103
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1104
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1105
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
1106
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1107
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1108
|
+
CLANG_WARN_COMMA = YES;
|
|
1109
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1110
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1111
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1112
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1113
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1114
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1115
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1116
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1117
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1118
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1119
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1120
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1121
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
1122
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1123
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1124
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1125
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1126
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1127
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1128
|
+
COPY_PHASE_STRIP = NO;
|
|
1129
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
1130
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
1131
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1132
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1133
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1134
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1135
|
+
"POD_CONFIGURATION_RELEASE=1",
|
|
1136
|
+
"$(inherited)",
|
|
1137
|
+
);
|
|
1138
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1139
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1140
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1141
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1142
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1143
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1144
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1145
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
1146
|
+
MTL_FAST_MATH = YES;
|
|
1147
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1148
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
1149
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
1150
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
1151
|
+
SWIFT_VERSION = 5.0;
|
|
1152
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
1153
|
+
};
|
|
1154
|
+
name = Release;
|
|
1155
|
+
};
|
|
1156
|
+
A8FB62F5F674B0930639DEC59B1C764B /* Release */ = {
|
|
1157
|
+
isa = XCBuildConfiguration;
|
|
1158
|
+
baseConfigurationReference = 6C96987D3CF66F79CA95CCD2CDE91C9F /* Capacitor.release.xcconfig */;
|
|
1159
|
+
buildSettings = {
|
|
1160
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1161
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1162
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1163
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1164
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1165
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1166
|
+
DEFINES_MODULE = YES;
|
|
1167
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1168
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1169
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1170
|
+
GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
|
|
1171
|
+
INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
|
|
1172
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1173
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1174
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1175
|
+
MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
|
|
1176
|
+
PRODUCT_MODULE_NAME = Capacitor;
|
|
1177
|
+
PRODUCT_NAME = Capacitor;
|
|
1178
|
+
SDKROOT = iphoneos;
|
|
1179
|
+
SKIP_INSTALL = YES;
|
|
1180
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1181
|
+
SWIFT_VERSION = 5.1;
|
|
1182
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1183
|
+
VALIDATE_PRODUCT = YES;
|
|
1184
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1185
|
+
VERSION_INFO_PREFIX = "";
|
|
1186
|
+
};
|
|
1187
|
+
name = Release;
|
|
1188
|
+
};
|
|
1189
|
+
C6A1C00DF92684BB667F98E7E274025C /* Release */ = {
|
|
1190
|
+
isa = XCBuildConfiguration;
|
|
1191
|
+
baseConfigurationReference = 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */;
|
|
1192
|
+
buildSettings = {
|
|
1193
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1194
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1195
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1196
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1197
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1198
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1199
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1200
|
+
DEFINES_MODULE = YES;
|
|
1201
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1202
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1203
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1204
|
+
INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
|
|
1205
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1206
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1207
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1208
|
+
MACH_O_TYPE = staticlib;
|
|
1209
|
+
MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
|
|
1210
|
+
OTHER_LDFLAGS = "";
|
|
1211
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1212
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1213
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1214
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1215
|
+
SDKROOT = iphoneos;
|
|
1216
|
+
SKIP_INSTALL = YES;
|
|
1217
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1218
|
+
VALIDATE_PRODUCT = YES;
|
|
1219
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1220
|
+
VERSION_INFO_PREFIX = "";
|
|
1221
|
+
};
|
|
1222
|
+
name = Release;
|
|
1223
|
+
};
|
|
1224
|
+
E400795B46E90C4D752F7F39C3C59037 /* Release */ = {
|
|
1225
|
+
isa = XCBuildConfiguration;
|
|
1226
|
+
baseConfigurationReference = C9F27616463FDAAFEFD4FAF9C0D7E273 /* CapacitorCordova.release.xcconfig */;
|
|
1227
|
+
buildSettings = {
|
|
1228
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1229
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1230
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1231
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1232
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1233
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1234
|
+
DEFINES_MODULE = YES;
|
|
1235
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1236
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1237
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1238
|
+
GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
|
|
1239
|
+
INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
|
|
1240
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1241
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1242
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1243
|
+
MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
|
|
1244
|
+
PRODUCT_MODULE_NAME = Cordova;
|
|
1245
|
+
PRODUCT_NAME = Cordova;
|
|
1246
|
+
SDKROOT = iphoneos;
|
|
1247
|
+
SKIP_INSTALL = YES;
|
|
1248
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1249
|
+
SWIFT_VERSION = 4.2;
|
|
1250
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1251
|
+
VALIDATE_PRODUCT = YES;
|
|
1252
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1253
|
+
VERSION_INFO_PREFIX = "";
|
|
1254
|
+
};
|
|
1255
|
+
name = Release;
|
|
1256
|
+
};
|
|
1257
|
+
E66368AE7D92F20429792663439A1E94 /* Debug */ = {
|
|
1258
|
+
isa = XCBuildConfiguration;
|
|
1259
|
+
baseConfigurationReference = F54F80AB2FB32E78D11FD7B96AE091D6 /* CapacitorCordova.debug.xcconfig */;
|
|
1260
|
+
buildSettings = {
|
|
1261
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1262
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1263
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1264
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1265
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1266
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1267
|
+
DEFINES_MODULE = YES;
|
|
1268
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1269
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1270
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1271
|
+
GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
|
|
1272
|
+
INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
|
|
1273
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1274
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1275
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1276
|
+
MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
|
|
1277
|
+
PRODUCT_MODULE_NAME = Cordova;
|
|
1278
|
+
PRODUCT_NAME = Cordova;
|
|
1279
|
+
SDKROOT = iphoneos;
|
|
1280
|
+
SKIP_INSTALL = YES;
|
|
1281
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1282
|
+
SWIFT_VERSION = 4.2;
|
|
1283
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1284
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1285
|
+
VERSION_INFO_PREFIX = "";
|
|
1286
|
+
};
|
|
1287
|
+
name = Debug;
|
|
1288
|
+
};
|
|
1289
|
+
ED2378E15E9E9D668017ADE06F20D86F /* Debug */ = {
|
|
1290
|
+
isa = XCBuildConfiguration;
|
|
1291
|
+
baseConfigurationReference = 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */;
|
|
1292
|
+
buildSettings = {
|
|
1293
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1294
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1295
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1296
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1297
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1298
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1299
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1300
|
+
DEFINES_MODULE = YES;
|
|
1301
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1302
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1303
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1304
|
+
INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
|
|
1305
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1306
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
1307
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1308
|
+
MACH_O_TYPE = staticlib;
|
|
1309
|
+
MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
|
|
1310
|
+
OTHER_LDFLAGS = "";
|
|
1311
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1312
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1313
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1314
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1315
|
+
SDKROOT = iphoneos;
|
|
1316
|
+
SKIP_INSTALL = YES;
|
|
1317
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1318
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1319
|
+
VERSION_INFO_PREFIX = "";
|
|
1320
|
+
};
|
|
1321
|
+
name = Debug;
|
|
1322
|
+
};
|
|
1323
|
+
/* End XCBuildConfiguration section */
|
|
1324
|
+
|
|
1325
|
+
/* Begin XCConfigurationList section */
|
|
1326
|
+
29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */ = {
|
|
1327
|
+
isa = XCConfigurationList;
|
|
1328
|
+
buildConfigurations = (
|
|
1329
|
+
ED2378E15E9E9D668017ADE06F20D86F /* Debug */,
|
|
1330
|
+
C6A1C00DF92684BB667F98E7E274025C /* Release */,
|
|
1331
|
+
);
|
|
1332
|
+
defaultConfigurationIsVisible = 0;
|
|
1333
|
+
defaultConfigurationName = Release;
|
|
1334
|
+
};
|
|
1335
|
+
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
|
|
1336
|
+
isa = XCConfigurationList;
|
|
1337
|
+
buildConfigurations = (
|
|
1338
|
+
8DE5143C03248BB6CD542DE3963D6F3A /* Debug */,
|
|
1339
|
+
9E406C6AAF85E580207CD97B0044DEAB /* Release */,
|
|
1340
|
+
);
|
|
1341
|
+
defaultConfigurationIsVisible = 0;
|
|
1342
|
+
defaultConfigurationName = Release;
|
|
1343
|
+
};
|
|
1344
|
+
48D386813907257E66B9956E21448D89 /* Build configuration list for PBXNativeTarget "CapacitorCordova" */ = {
|
|
1345
|
+
isa = XCConfigurationList;
|
|
1346
|
+
buildConfigurations = (
|
|
1347
|
+
E66368AE7D92F20429792663439A1E94 /* Debug */,
|
|
1348
|
+
E400795B46E90C4D752F7F39C3C59037 /* Release */,
|
|
1349
|
+
);
|
|
1350
|
+
defaultConfigurationIsVisible = 0;
|
|
1351
|
+
defaultConfigurationName = Release;
|
|
1352
|
+
};
|
|
1353
|
+
5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */ = {
|
|
1354
|
+
isa = XCConfigurationList;
|
|
1355
|
+
buildConfigurations = (
|
|
1356
|
+
25C9C7BE983775E895ED3117240BC7EB /* Debug */,
|
|
1357
|
+
84AC07D1B967FA01542DA3AB71BC3C47 /* Release */,
|
|
1358
|
+
);
|
|
1359
|
+
defaultConfigurationIsVisible = 0;
|
|
1360
|
+
defaultConfigurationName = Release;
|
|
1361
|
+
};
|
|
1362
|
+
B199849C64840E0A9456B3139423B266 /* Build configuration list for PBXNativeTarget "Capacitor" */ = {
|
|
1363
|
+
isa = XCConfigurationList;
|
|
1364
|
+
buildConfigurations = (
|
|
1365
|
+
9972596614DF03AC70123A2F5CB84AEA /* Debug */,
|
|
1366
|
+
A8FB62F5F674B0930639DEC59B1C764B /* Release */,
|
|
1367
|
+
);
|
|
1368
|
+
defaultConfigurationIsVisible = 0;
|
|
1369
|
+
defaultConfigurationName = Release;
|
|
1370
|
+
};
|
|
1371
|
+
/* End XCConfigurationList section */
|
|
1372
|
+
};
|
|
1373
|
+
rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
1374
|
+
}
|