@wisdomgarden/capacitor-plugin-beacon 0.0.1
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 +117 -0
- package/WisdomgardenCapacitorPluginBeacon.podspec +17 -0
- package/android/build.gradle +52 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/android/gradle.properties +24 -0
- package/android/gradlew +188 -0
- package/android/gradlew.bat +100 -0
- package/android/proguard-rules.pro +21 -0
- package/android/settings.gradle +2 -0
- package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +26 -0
- package/android/src/main/AndroidManifest.xml +20 -0
- package/android/src/main/java/com/wisdomgarden/mobile/beacon/Beacon.java +294 -0
- package/android/src/main/java/com/wisdomgarden/mobile/beacon/BeaconUtils.java +118 -0
- package/android/src/main/res/layout/bridge_layout_main.xml +15 -0
- package/android/src/main/res/values/colors.xml +3 -0
- package/android/src/main/res/values/strings.xml +3 -0
- package/android/src/main/res/values/styles.xml +3 -0
- package/android/src/test/java/com/getcapacitor/ExampleUnitTest.java +18 -0
- package/dist/esm/definitions.d.ts +49 -0
- package/dist/esm/definitions.js +2 -0
- package/dist/esm/definitions.js.map +1 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/web.d.ts +25 -0
- package/dist/esm/web.js +61 -0
- package/dist/esm/web.js.map +1 -0
- package/dist/plugin.js +70 -0
- package/dist/plugin.js.map +1 -0
- package/ios/Plugin/BeaconUtils.swift +103 -0
- package/ios/Plugin/Info.plist +30 -0
- package/ios/Plugin/Plugin.h +10 -0
- package/ios/Plugin/Plugin.m +14 -0
- package/ios/Plugin/Plugin.swift +342 -0
- package/ios/Plugin.xcodeproj/project.pbxproj +556 -0
- package/ios/Plugin.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/Plugin.xcworkspace/contents.xcworkspacedata +10 -0
- package/ios/Plugin.xcworkspace/xcuserdata/peixinliu.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/PluginTests/Info.plist +22 -0
- package/ios/PluginTests/PluginTests.swift +35 -0
- package/ios/Podfile +16 -0
- package/ios/Podfile.lock +22 -0
- package/ios/Pods/Local Podspecs/Capacitor.podspec.json +30 -0
- package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +22 -0
- package/ios/Pods/Manifest.lock +22 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +1381 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h +23 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +6 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +33 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +3 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +29 -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 +3 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +29 -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 +64 -0
|
@@ -0,0 +1,1381 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 48;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
00EE97191BC9716F282C4B10319BF3B1 /* CDVCommandDelegateImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A68EB8DA0ABFD6582E139DA941E883 /* CDVCommandDelegateImpl.m */; };
|
|
11
|
+
01AC79395C327C16817092CC8AAD6C02 /* UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFF32D6BFD83A6D4D660195FABE56D0 /* UIColor.swift */; };
|
|
12
|
+
01DEDFC157F943E8D21D5F2551C8F2A6 /* Photos.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69DC7ECA0F0267C4AAB487A7582B0B8C /* Photos.swift */; };
|
|
13
|
+
042D7BB8B0366C025A891A116268CD1B /* CDVPlugin+Resources.m in Sources */ = {isa = PBXBuildFile; fileRef = F82D9E7E8CA49726CF2AB29C05C53C0D /* CDVPlugin+Resources.m */; };
|
|
14
|
+
0AA202FC43EC573458189163FF0A93E7 /* CDVUserAgentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB2FA049692A927A5B7ADEC9750D694 /* CDVUserAgentUtil.m */; };
|
|
15
|
+
0CD34A48BE8AB9C50EEC08353E093F20 /* Permissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1121F702ED69106CF9CC769232F4CC4C /* Permissions.swift */; };
|
|
16
|
+
0FDC1DE0F6171A5358C6074FA9B6995B /* LocalNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FD366E47013D925F7816D0868F34124 /* LocalNotifications.swift */; };
|
|
17
|
+
107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
18
|
+
156EAAA65DE2C5DE513D5C6A5979C0D6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
19
|
+
157D0CF4CA312D2D69B9481CFE519397 /* CDVPlugin+Resources.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E442F5AE9779B311883A451ADB52E4 /* CDVPlugin+Resources.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
20
|
+
164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */; };
|
|
21
|
+
1AAD48E2696D5BC8652C0656FE3A6EDF /* CAPPluginMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = D42C1C2BE61502F8D1B586E5B077FADF /* CAPPluginMethod.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
22
|
+
1BED80793EBA3012EDF4D7FC28A13C28 /* CDVURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 62095FC667611DCDBB78FAE381C0DCFC /* CDVURLProtocol.m */; };
|
|
23
|
+
1C0AC2B95E0286A1384318828F8AF76E /* Camera.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C770817F1851EE55916F7E6DD34F42A /* Camera.swift */; };
|
|
24
|
+
1DBACA8500501E1A88A9509647D64229 /* BackgroundTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66767E17A9B86A5661AE70BD4E8D3CCC /* BackgroundTask.swift */; };
|
|
25
|
+
1ECADC6246C6CDB5C4C98B7B0B24911B /* Device.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3177123549105B5C4654FC59B8EC93B2 /* Device.swift */; };
|
|
26
|
+
228FA88CD6855A15127144F5E534801A /* Diagnostics.swift in Sources */ = {isa = PBXBuildFile; fileRef = C011A751960615668999BB1E06BDF74C /* Diagnostics.swift */; };
|
|
27
|
+
2A224BB9DCE5C892A110294DB6BFC1A3 /* DefaultPlugins.m in Sources */ = {isa = PBXBuildFile; fileRef = B90F9FB113B1FDC1FCE1038F4A365B57 /* DefaultPlugins.m */; };
|
|
28
|
+
2A406CB341613953E88074F4D059646E /* CapacitorCordova-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5D33870170DAF4C9D7643B6978CA8D /* CapacitorCordova-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
29
|
+
2B4E1051166BC7E7FE03CF7A9E7F0E8A /* CDVPluginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = A6F10A29ED955E159414FEDA47D5E9BC /* CDVPluginResult.m */; };
|
|
30
|
+
2C7CC44BB58AFDA1221F59B0396A0C41 /* Reachability.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADFD99D09BCAF72C1373F004B0446A75 /* Reachability.swift */; };
|
|
31
|
+
2F60CDC258E4FC4CED547B8EAD3A8956 /* Filesystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6213A455E5E7787F1495840E831C0D4C /* Filesystem.swift */; };
|
|
32
|
+
32BC4BB47A28108A7FAB0BFA48B551FD /* Haptics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2938770F2D17182E3267449374D9F818 /* Haptics.swift */; };
|
|
33
|
+
335155D4A77BABF06F4BB5665AB433A1 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E16CB1528440C997AA09399EA131D269 /* AppDelegate.m */; };
|
|
34
|
+
38E2248B5286E41714E7015DC37DDD51 /* JS.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC098B79EFCBB8890F63C1524AA84857 /* JS.swift */; };
|
|
35
|
+
391B65EBD41A84A788A08FA76843C271 /* Modals.swift in Sources */ = {isa = PBXBuildFile; fileRef = A36EDCE251BA12D15088D13B7E3A9EEF /* Modals.swift */; };
|
|
36
|
+
3A7EF02D9C2C16E4CE1B8539CFA76C64 /* CAPAssetHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F2AB2C995819892A5C7DE5B38268BFA /* CAPAssetHandler.swift */; };
|
|
37
|
+
3C59EEB7ECFAB59B36C14B91CFDD0C9E /* Browser.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE4AC503F908454BF5D3A698F436390E /* Browser.swift */; };
|
|
38
|
+
3DD07013EE02027AD93E25AF18E179F2 /* DocLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BA38AEBB09B361D36A27D6ED3002C63 /* DocLinks.swift */; };
|
|
39
|
+
3EB17BBA1DB710C14ADFB9FB0755581E /* CAPNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44C87AAF707A44926074C0DBF9FC592B /* CAPNotifications.swift */; };
|
|
40
|
+
3F97747C7718BB8F130B9A599FA56395 /* DefaultPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C92FEC4B1330CDBCB2D5997F1C6B64 /* DefaultPlugins.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
41
|
+
423272461B43AD2C55D51DA3156C2BA6 /* CDVConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 634208EB894F7E0CAE766405A48E6C04 /* CDVConfigParser.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
42
|
+
44073C42880C2E530D52EE67C5D8A3F1 /* Capacitor.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAFF6E525E7BB1D2495885DEA434FD8 /* Capacitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
43
|
+
4A286EF4E5ACDC76AC2FA1DB4DABBF3A /* CDVUserAgentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F45F8CB98C4CCF724D47E362118FE27 /* CDVUserAgentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
44
|
+
57F5E973C8D405D7B2A58FE75F43349F /* CAPUNUserNotificationCenterDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3016251A55ED1AF394F7034C11423E2 /* CAPUNUserNotificationCenterDelegate.swift */; };
|
|
45
|
+
5A025432D38773BFC2813ECE2A832132 /* CDVPluginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D94FCA30D7D3A444E35F75013CA092F8 /* CDVPluginManager.m */; };
|
|
46
|
+
5F6B3A9D9CF0263C41EB9E472FFB41BD /* CDVInvokedUrlCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 81516E47DF03AC59C80705FD5E173884 /* CDVInvokedUrlCommand.m */; };
|
|
47
|
+
62049CF9C2492DD3190EC482A5BB15E0 /* CAPAppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B7F8A9F060739B72B551CA38BA9B397 /* CAPAppDelegate.swift */; };
|
|
48
|
+
626B4FC62B58CB8E09BDED40ECFCFA65 /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D0F3B7FAC0FE4F54A0B889CBC68F486 /* Console.swift */; };
|
|
49
|
+
64FB22716EF0DC754CE1BB5C481604E0 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 452A85CE60A22EB02D3A99DD6FEF2BE8 /* Storage.swift */; };
|
|
50
|
+
65D17BD3CF6320C550248E91943DA616 /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = C833E02A4947EB7E33FF23F78C7EAD58 /* Toast.swift */; };
|
|
51
|
+
66BD25091EFE841084EA8FA66363628B /* CDV.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE890E21CB35D43995B7BD5AD5DEEFC /* CDV.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
52
|
+
6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
53
|
+
6F31EF05581535763EA60CEEFBA3E4B6 /* CAPFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBE6C9CC615109B7FE10802C5EFEB7B1 /* CAPFile.swift */; };
|
|
54
|
+
708F7718B310A271CF601A785C968085 /* CAPPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = CE3416EA9844455137D166D6169A0748 /* CAPPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
55
|
+
714E40A6FE02BB1A1AD12DD35A94C1DB /* CAPPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = F911E6BE8F6E9C32E5DC067AE6F01833 /* CAPPlugin.m */; };
|
|
56
|
+
736C812AC4E1C174C7F7BF0A8EA333D7 /* CDVPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C716321E961A909C1F507F0052F701 /* CDVPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
57
|
+
738F09E9EEF9208F4789471103FC6D40 /* Capacitor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B5A2F8A2B8511076A44B3EB4425E9C7 /* Capacitor-dummy.m */; };
|
|
58
|
+
789E8BA314B7FC7DDFD1203CB43EB63D /* CAPLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F5026FE497C4CD1E8EDFAC73D2D9BA3 /* CAPLog.swift */; };
|
|
59
|
+
78D000BD87033F72B76516D419B36AE6 /* CDVConfigParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C4B91691020FFF33D3CE36B146E619D3 /* CDVConfigParser.m */; };
|
|
60
|
+
7EB040E7B7FDD4B7A2D846067FFA8DAE /* CDVURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BE41A39A64D731D6DEBB860831EAF1 /* CDVURLProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
61
|
+
7F20282C46F5C997BBC50912298B095E /* CAPConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B45886F31EB4897FEADC2D11A0C0F18 /* CAPConfig.swift */; };
|
|
62
|
+
80786FF9B9342E46C1C740DB575E110E /* Capacitor-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44484C907C005C9D4AC9CBCF5B952997 /* Capacitor-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
63
|
+
812590B542213FA6696499F66902F339 /* CDVCommandDelegateImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA41AA6E79B460F766C096C91D1FF4F /* CDVCommandDelegateImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
64
|
+
81AFBC408A729EFBAD475DEFB24264D2 /* CAPPluginCall.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D5BEFCD7DE181071F1AD2DFB64FF16D /* CAPPluginCall.swift */; };
|
|
65
|
+
85A5C898AD7FB1C27AF4DA598BF211AE /* CapacitorCordova-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6283AA625FEDC52BFEB81E42CF1B51D6 /* CapacitorCordova-dummy.m */; };
|
|
66
|
+
8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */; };
|
|
67
|
+
8B640311B1978CE98C5562D9A8A164DF /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C25B693CB3013E7FF88F5A068C9474A /* WebView.swift */; };
|
|
68
|
+
8B71C24AE99B23F9266BA5852179DDAA /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F2E2AE00E09DEBCB083085A6D0A4233 /* Network.swift */; };
|
|
69
|
+
9254206DB8C97C6656B0E75D4DFB12CD /* CDVUIWebViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E9D31D20A7024045799CCA5A53E8295 /* CDVUIWebViewDelegate.m */; };
|
|
70
|
+
93F450C47B0F313FB0E2A85488DE7059 /* NSDictionary+CordovaPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = C925E20D23976D840E60FB480C6E2C06 /* NSDictionary+CordovaPreferences.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
71
|
+
94331503F40A08D22803448353C53D4A /* CapacitorCordova.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A1FFA447AC513DE02971EB57CD67668 /* CapacitorCordova.h */; settings = {ATTRIBUTES = (Project, ); }; };
|
|
72
|
+
9722E68D291F8F69E1FFDD3AF3E59ACD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
73
|
+
98B1715EB1D10121DEE6569F5B1FF9B5 /* CAPBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4728C5ECBEF90CBD09CCC4D3400C46E8 /* CAPBridge.swift */; };
|
|
74
|
+
A1CBDCB0A87536037C5C7AAB4CA28058 /* CAPPluginCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 66049A93F9E217EE596F1EAC95F6C65B /* CAPPluginCall.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
75
|
+
A31BE95F7EAC994A2193A6741ACBEE05 /* Keyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = EB33B00F34D75226347C1BF79DFDDD61 /* Keyboard.m */; };
|
|
76
|
+
A51E737049927189E024E2E04BE3EA25 /* CDVUIWebViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E31706C12B5ADFEA77524384DE375C /* CDVUIWebViewDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
77
|
+
A5ED27E1AA79EE2A9DAAE4A201D69260 /* CDVPluginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C48308D6FC607912BB93F3CED8C72B /* CDVPluginManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
78
|
+
AC50AF01F2629CED81D8CBFB1E6F764F /* NSDictionary+CordovaPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = A16A43B761B390C3F112C5D8B97A3F5A /* NSDictionary+CordovaPreferences.m */; };
|
|
79
|
+
AF285F5B45129AA81A98BE02DE2FF807 /* JSExport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 618808EF76EC9DAC910D3DA4DEEE2E50 /* JSExport.swift */; };
|
|
80
|
+
B0291F979BAE8C2DC8E29CB45152C76D /* CAPPluginCall.m in Sources */ = {isa = PBXBuildFile; fileRef = 92548E73B223840C2A2CE851D9FC26E8 /* CAPPluginCall.m */; };
|
|
81
|
+
B2709F8CBA3B5E5BD8336402B84F4994 /* CDVPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = C4B501F5FC726C3B42FD6DFB3085155E /* CDVPlugin.m */; };
|
|
82
|
+
B6FE1FF070710B9F43C0C09E03EFA8FF /* Clipboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A985C8ED4454DF20CA73DB0792A5CD /* Clipboard.swift */; };
|
|
83
|
+
B952255A28D2C98BE65800A011E8CA95 /* SplashScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D765ABC8F86C11B2133D45FD94AEC08 /* SplashScreen.swift */; };
|
|
84
|
+
BBEDD128CA2E7A2A7749E515809BC150 /* CAPBridgeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B4755850BFC1F4FEC89FA92F51C7C45 /* CAPBridgeViewController.swift */; };
|
|
85
|
+
BC93087C6DF36CE29C5FE2F5E01AA53E /* CDVAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5E5582FBF5310752587F053353FD11 /* CDVAvailability.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
86
|
+
BCE6A41CAC0D5B6EE0FACCB258C1E7DD /* CDVPluginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA7E2186C268A6E92713ACBF29EBB29 /* CDVPluginResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
87
|
+
BE2D65F9A70CCBA87BDD1F9CAF10DB72 /* Share.swift in Sources */ = {isa = PBXBuildFile; fileRef = 394A911ECAFF24D3A4055E4AD750114A /* Share.swift */; };
|
|
88
|
+
C03277551BCF3CCA194B7CAEC5FFD7E2 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 27DB6798A14D070679AEE1B25A0E878D /* UIStatusBarManager+CAPHandleTapAction.m */; };
|
|
89
|
+
C055F2E4D7D9B79744DC02D56EC9CAEB /* TmpViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 932075D27A5667D3EA9D4E0E1D1D3BD2 /* TmpViewController.swift */; };
|
|
90
|
+
C0F065DEF0CF51416B0C6389B0438DE6 /* CDVScreenOrientationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 06966FC0885DE7F8FB263C9E76978ABD /* CDVScreenOrientationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
91
|
+
C64BCACEB7B4E36C901011F6BAA1314E /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */; };
|
|
92
|
+
C8C3B827A1CEAEFB22A7E61174749654 /* Keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AB085CBBD0A20A6FB7DA06B40ED74813 /* Keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
93
|
+
CB2CE706BDA6434C19FF6D963A698DB3 /* PushNotifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EE7D53D876446E062032B9D6DB6C21F /* PushNotifications.swift */; };
|
|
94
|
+
CE2F6FB18DE9975B09EEBA3E979559F3 /* CDVViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E765AD15FAD14954687159233B69ECF8 /* CDVViewController.m */; };
|
|
95
|
+
CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
96
|
+
CE6BCF28BB520F52B57DEC6F253B832C /* CDVViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C034F5324051FB17D928F42133F0B53D /* CDVViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
97
|
+
D99688D39CE0FCA5CAB15E48EA8FA6F3 /* UILabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DCCA925A1DEF72B61BF5D00CE550EDA /* UILabel.swift */; };
|
|
98
|
+
E1262140B40EB61EA70DA8E15F789B3E /* App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21BBADDE656D2EE454E7479A61A3E6D9 /* App.swift */; };
|
|
99
|
+
E312F8C1AB2AA652C458117C4D78A39D /* Accessibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = B416389EF7896E8F77B03D76712FB02A /* Accessibility.swift */; };
|
|
100
|
+
E390D8669035B6B2557E9E786231EB5E /* Geolocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F63D0DD1ADF7C5E4BF2F8912B6E82D /* Geolocation.swift */; };
|
|
101
|
+
E5487CDBDDDBB7FD34B7333725F28CAB /* CAPBridgedPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C53012E43F309497F051CF9A51D84819 /* CAPBridgedPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
102
|
+
E6C9E6C8A459E09BC2EBFBEA40E8351F /* CAPPluginMethod.m in Sources */ = {isa = PBXBuildFile; fileRef = 635035A389E9FFF168A9DE6316CA097F /* CAPPluginMethod.m */; };
|
|
103
|
+
EA6B6338F7A768BA0097EB45DCEFFAB4 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D99866E19379A64965246FB2979079D8 /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
104
|
+
EA9265A53B9A76AEF1F012990FE71FA1 /* CDVInvokedUrlCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DAF61F6959011759E6F716CCA3B904 /* CDVInvokedUrlCommand.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
105
|
+
EDD148F3AA06F7512D375B784A5A6D53 /* StatusBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4F94BDDDA2B6E941B8C57141E18DF8F /* StatusBar.swift */; };
|
|
106
|
+
F311CF66E2CE5D32F436E6499B86233C /* CAPBridgeDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0656B7905B6D290353A5B3D6D28121 /* CAPBridgeDelegate.swift */; };
|
|
107
|
+
F580C6E65B761DCC5FDCD2E37607A039 /* CDVCommandDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F396D6B8EE7E3E3EEBDFD907C0FA86D8 /* CDVCommandDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
108
|
+
FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */; };
|
|
109
|
+
/* End PBXBuildFile section */
|
|
110
|
+
|
|
111
|
+
/* Begin PBXContainerItemProxy section */
|
|
112
|
+
080FF62917D68BBF3FBB620EC83B6D03 /* PBXContainerItemProxy */ = {
|
|
113
|
+
isa = PBXContainerItemProxy;
|
|
114
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
115
|
+
proxyType = 1;
|
|
116
|
+
remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
|
|
117
|
+
remoteInfo = Capacitor;
|
|
118
|
+
};
|
|
119
|
+
0CA86F6B52E3D99E3C0B84F74B0737DD /* PBXContainerItemProxy */ = {
|
|
120
|
+
isa = PBXContainerItemProxy;
|
|
121
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
122
|
+
proxyType = 1;
|
|
123
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
124
|
+
remoteInfo = CapacitorCordova;
|
|
125
|
+
};
|
|
126
|
+
1048E24BD79A236F5B3F8E197F730E7F /* PBXContainerItemProxy */ = {
|
|
127
|
+
isa = PBXContainerItemProxy;
|
|
128
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
129
|
+
proxyType = 1;
|
|
130
|
+
remoteGlobalIDString = 0ECF3D6BFCC08377AE23B027EE1D4371;
|
|
131
|
+
remoteInfo = Capacitor;
|
|
132
|
+
};
|
|
133
|
+
9B77BEA81FA1CBD3B7613B9D5DF283DB /* PBXContainerItemProxy */ = {
|
|
134
|
+
isa = PBXContainerItemProxy;
|
|
135
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
136
|
+
proxyType = 1;
|
|
137
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
138
|
+
remoteInfo = CapacitorCordova;
|
|
139
|
+
};
|
|
140
|
+
D5CF4EB4DBDC89B7C073C24FA2371DB5 /* PBXContainerItemProxy */ = {
|
|
141
|
+
isa = PBXContainerItemProxy;
|
|
142
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
143
|
+
proxyType = 1;
|
|
144
|
+
remoteGlobalIDString = 400AE44335852A2D8D746557E21E8EB0;
|
|
145
|
+
remoteInfo = CapacitorCordova;
|
|
146
|
+
};
|
|
147
|
+
/* End PBXContainerItemProxy section */
|
|
148
|
+
|
|
149
|
+
/* Begin PBXFileReference section */
|
|
150
|
+
01BE41A39A64D731D6DEBB860831EAF1 /* CDVURLProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVURLProtocol.h; sourceTree = "<group>"; };
|
|
151
|
+
06966FC0885DE7F8FB263C9E76978ABD /* CDVScreenOrientationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVScreenOrientationDelegate.h; sourceTree = "<group>"; };
|
|
152
|
+
0C770817F1851EE55916F7E6DD34F42A /* Camera.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Camera.swift; sourceTree = "<group>"; };
|
|
153
|
+
0CF037D53A84E0EBFD3FC2BC934AE1ED /* CapacitorCordova-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-prefix.pch"; sourceTree = "<group>"; };
|
|
154
|
+
0F0656B7905B6D290353A5B3D6D28121 /* CAPBridgeDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeDelegate.swift; path = Capacitor/Capacitor/CAPBridgeDelegate.swift; sourceTree = "<group>"; };
|
|
155
|
+
1121F702ED69106CF9CC769232F4CC4C /* Permissions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Permissions.swift; sourceTree = "<group>"; };
|
|
156
|
+
11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-Info.plist"; sourceTree = "<group>"; };
|
|
157
|
+
1A792533D659175362411A68C1515E23 /* 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; };
|
|
158
|
+
1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CapacitorCordova; path = Cordova.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
159
|
+
1D5BEFCD7DE181071F1AD2DFB64FF16D /* CAPPluginCall.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPPluginCall.swift; path = Capacitor/Capacitor/CAPPluginCall.swift; sourceTree = "<group>"; };
|
|
160
|
+
1E9D31D20A7024045799CCA5A53E8295 /* CDVUIWebViewDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVUIWebViewDelegate.m; sourceTree = "<group>"; };
|
|
161
|
+
21BBADDE656D2EE454E7479A61A3E6D9 /* App.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = App.swift; sourceTree = "<group>"; };
|
|
162
|
+
26DAF61F6959011759E6F716CCA3B904 /* CDVInvokedUrlCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVInvokedUrlCommand.h; sourceTree = "<group>"; };
|
|
163
|
+
27DB6798A14D070679AEE1B25A0E878D /* UIStatusBarManager+CAPHandleTapAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStatusBarManager+CAPHandleTapAction.m"; path = "Capacitor/Capacitor/UIStatusBarManager+CAPHandleTapAction.m"; sourceTree = "<group>"; };
|
|
164
|
+
2938770F2D17182E3267449374D9F818 /* Haptics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Haptics.swift; sourceTree = "<group>"; };
|
|
165
|
+
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; };
|
|
166
|
+
2C25B693CB3013E7FF88F5A068C9474A /* WebView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = "<group>"; };
|
|
167
|
+
2E6F579017D01FDB40A710CD43045A03 /* Capacitor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.debug.xcconfig; sourceTree = "<group>"; };
|
|
168
|
+
30E31706C12B5ADFEA77524384DE375C /* CDVUIWebViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVUIWebViewDelegate.h; sourceTree = "<group>"; };
|
|
169
|
+
3177123549105B5C4654FC59B8EC93B2 /* Device.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Device.swift; sourceTree = "<group>"; };
|
|
170
|
+
32A68EB8DA0ABFD6582E139DA941E883 /* CDVCommandDelegateImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVCommandDelegateImpl.m; sourceTree = "<group>"; };
|
|
171
|
+
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; };
|
|
172
|
+
37E362017CFD08F0B852CA7F5A63F756 /* 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; };
|
|
173
|
+
394A911ECAFF24D3A4055E4AD750114A /* Share.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Share.swift; sourceTree = "<group>"; };
|
|
174
|
+
3A1FFA447AC513DE02971EB57CD67668 /* CapacitorCordova.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CapacitorCordova.h; path = CapacitorCordova/CapacitorCordova/CapacitorCordova.h; sourceTree = "<group>"; };
|
|
175
|
+
3DCCA925A1DEF72B61BF5D00CE550EDA /* UILabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UILabel.swift; path = Capacitor/Capacitor/UILabel.swift; sourceTree = "<group>"; };
|
|
176
|
+
3F2AB2C995819892A5C7DE5B38268BFA /* CAPAssetHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPAssetHandler.swift; path = Capacitor/Capacitor/CAPAssetHandler.swift; sourceTree = "<group>"; };
|
|
177
|
+
401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Plugin.modulemap"; sourceTree = "<group>"; };
|
|
178
|
+
44484C907C005C9D4AC9CBCF5B952997 /* Capacitor-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-umbrella.h"; sourceTree = "<group>"; };
|
|
179
|
+
44C87AAF707A44926074C0DBF9FC592B /* CAPNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPNotifications.swift; path = Capacitor/Capacitor/CAPNotifications.swift; sourceTree = "<group>"; };
|
|
180
|
+
44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Capacitor; path = Capacitor.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
181
|
+
452A85CE60A22EB02D3A99DD6FEF2BE8 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Storage.swift; sourceTree = "<group>"; };
|
|
182
|
+
45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
183
|
+
4728C5ECBEF90CBD09CCC4D3400C46E8 /* CAPBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridge.swift; path = Capacitor/Capacitor/CAPBridge.swift; sourceTree = "<group>"; };
|
|
184
|
+
47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
185
|
+
4B5A2F8A2B8511076A44B3EB4425E9C7 /* Capacitor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Capacitor-dummy.m"; sourceTree = "<group>"; };
|
|
186
|
+
4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Plugin"; path = Pods_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
187
|
+
4E99DA6A834C014E2E88058A13F6AB21 /* Capacitor.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Capacitor.modulemap; sourceTree = "<group>"; };
|
|
188
|
+
525ACCE8CC31F50BB82D6891F2812A74 /* Capacitor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Capacitor.release.xcconfig; sourceTree = "<group>"; };
|
|
189
|
+
535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Plugin-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
190
|
+
58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-PluginTests"; path = Pods_PluginTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
191
|
+
58F63D0DD1ADF7C5E4BF2F8912B6E82D /* Geolocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Geolocation.swift; sourceTree = "<group>"; };
|
|
192
|
+
5D765ABC8F86C11B2133D45FD94AEC08 /* SplashScreen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SplashScreen.swift; sourceTree = "<group>"; };
|
|
193
|
+
5DA7E2186C268A6E92713ACBF29EBB29 /* CDVPluginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginResult.h; sourceTree = "<group>"; };
|
|
194
|
+
5EE7D53D876446E062032B9D6DB6C21F /* PushNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PushNotifications.swift; sourceTree = "<group>"; };
|
|
195
|
+
618808EF76EC9DAC910D3DA4DEEE2E50 /* JSExport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSExport.swift; path = Capacitor/Capacitor/JSExport.swift; sourceTree = "<group>"; };
|
|
196
|
+
62095FC667611DCDBB78FAE381C0DCFC /* CDVURLProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVURLProtocol.m; sourceTree = "<group>"; };
|
|
197
|
+
6213A455E5E7787F1495840E831C0D4C /* Filesystem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Filesystem.swift; sourceTree = "<group>"; };
|
|
198
|
+
6283AA625FEDC52BFEB81E42CF1B51D6 /* CapacitorCordova-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CapacitorCordova-dummy.m"; sourceTree = "<group>"; };
|
|
199
|
+
62C92FEC4B1330CDBCB2D5997F1C6B64 /* DefaultPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DefaultPlugins.h; sourceTree = "<group>"; };
|
|
200
|
+
634208EB894F7E0CAE766405A48E6C04 /* CDVConfigParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVConfigParser.h; sourceTree = "<group>"; };
|
|
201
|
+
635035A389E9FFF168A9DE6316CA097F /* CAPPluginMethod.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginMethod.m; path = Capacitor/Capacitor/CAPPluginMethod.m; sourceTree = "<group>"; };
|
|
202
|
+
66049A93F9E217EE596F1EAC95F6C65B /* CAPPluginCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginCall.h; path = Capacitor/Capacitor/CAPPluginCall.h; sourceTree = "<group>"; };
|
|
203
|
+
66767E17A9B86A5661AE70BD4E8D3CCC /* BackgroundTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BackgroundTask.swift; sourceTree = "<group>"; };
|
|
204
|
+
69DC7ECA0F0267C4AAB487A7582B0B8C /* Photos.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Photos.swift; sourceTree = "<group>"; };
|
|
205
|
+
6B7F8A9F060739B72B551CA38BA9B397 /* CAPAppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPAppDelegate.swift; path = Capacitor/Capacitor/CAPAppDelegate.swift; sourceTree = "<group>"; };
|
|
206
|
+
6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.release.xcconfig"; sourceTree = "<group>"; };
|
|
207
|
+
6F5026FE497C4CD1E8EDFAC73D2D9BA3 /* CAPLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPLog.swift; path = Capacitor/Capacitor/CAPLog.swift; sourceTree = "<group>"; };
|
|
208
|
+
6FD366E47013D925F7816D0868F34124 /* LocalNotifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LocalNotifications.swift; sourceTree = "<group>"; };
|
|
209
|
+
71C716321E961A909C1F507F0052F701 /* CDVPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPlugin.h; sourceTree = "<group>"; };
|
|
210
|
+
7B4755850BFC1F4FEC89FA92F51C7C45 /* CAPBridgeViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPBridgeViewController.swift; path = Capacitor/Capacitor/CAPBridgeViewController.swift; sourceTree = "<group>"; };
|
|
211
|
+
7CE890E21CB35D43995B7BD5AD5DEEFC /* CDV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDV.h; sourceTree = "<group>"; };
|
|
212
|
+
7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PluginTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
213
|
+
7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PluginTests-dummy.m"; sourceTree = "<group>"; };
|
|
214
|
+
7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Plugin-umbrella.h"; sourceTree = "<group>"; };
|
|
215
|
+
7F45F8CB98C4CCF724D47E362118FE27 /* CDVUserAgentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVUserAgentUtil.h; sourceTree = "<group>"; };
|
|
216
|
+
81516E47DF03AC59C80705FD5E173884 /* CDVInvokedUrlCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVInvokedUrlCommand.m; sourceTree = "<group>"; };
|
|
217
|
+
8D0F3B7FAC0FE4F54A0B889CBC68F486 /* Console.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Console.swift; sourceTree = "<group>"; };
|
|
218
|
+
8F2E2AE00E09DEBCB083085A6D0A4233 /* Network.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Network.swift; sourceTree = "<group>"; };
|
|
219
|
+
92548E73B223840C2A2CE851D9FC26E8 /* CAPPluginCall.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPluginCall.m; path = Capacitor/Capacitor/CAPPluginCall.m; sourceTree = "<group>"; };
|
|
220
|
+
932075D27A5667D3EA9D4E0E1D1D3BD2 /* TmpViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TmpViewController.swift; path = Capacitor/Capacitor/TmpViewController.swift; sourceTree = "<group>"; };
|
|
221
|
+
939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PluginTests-Info.plist"; sourceTree = "<group>"; };
|
|
222
|
+
9A9443E7CFDDC3A96B6B7D66E59F4227 /* CapacitorCordova.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CapacitorCordova.modulemap; sourceTree = "<group>"; };
|
|
223
|
+
9B45886F31EB4897FEADC2D11A0C0F18 /* CAPConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPConfig.swift; path = Capacitor/Capacitor/CAPConfig.swift; sourceTree = "<group>"; };
|
|
224
|
+
9BA38AEBB09B361D36A27D6ED3002C63 /* DocLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DocLinks.swift; path = Capacitor/Capacitor/DocLinks.swift; sourceTree = "<group>"; };
|
|
225
|
+
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; };
|
|
226
|
+
A16A43B761B390C3F112C5D8B97A3F5A /* NSDictionary+CordovaPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+CordovaPreferences.m"; sourceTree = "<group>"; };
|
|
227
|
+
A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PluginTests-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
228
|
+
A36EDCE251BA12D15088D13B7E3A9EEF /* Modals.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Modals.swift; sourceTree = "<group>"; };
|
|
229
|
+
A6F10A29ED955E159414FEDA47D5E9BC /* CDVPluginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginResult.m; sourceTree = "<group>"; };
|
|
230
|
+
AB085CBBD0A20A6FB7DA06B40ED74813 /* Keyboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Keyboard.h; sourceTree = "<group>"; };
|
|
231
|
+
ADFD99D09BCAF72C1373F004B0446A75 /* Reachability.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Reachability.swift; sourceTree = "<group>"; };
|
|
232
|
+
AED68A9E7EB0A6BC6D6CDD33A8E8159A /* CapacitorCordova.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.release.xcconfig; sourceTree = "<group>"; };
|
|
233
|
+
B416389EF7896E8F77B03D76712FB02A /* Accessibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Accessibility.swift; sourceTree = "<group>"; };
|
|
234
|
+
B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Plugin-dummy.m"; sourceTree = "<group>"; };
|
|
235
|
+
B8C48308D6FC607912BB93F3CED8C72B /* CDVPluginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVPluginManager.h; sourceTree = "<group>"; };
|
|
236
|
+
B90F9FB113B1FDC1FCE1038F4A365B57 /* DefaultPlugins.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DefaultPlugins.m; sourceTree = "<group>"; };
|
|
237
|
+
BA5E5582FBF5310752587F053353FD11 /* CDVAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVAvailability.h; sourceTree = "<group>"; };
|
|
238
|
+
BBB2FA049692A927A5B7ADEC9750D694 /* CDVUserAgentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVUserAgentUtil.m; sourceTree = "<group>"; };
|
|
239
|
+
BCA41AA6E79B460F766C096C91D1FF4F /* CDVCommandDelegateImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegateImpl.h; sourceTree = "<group>"; };
|
|
240
|
+
BE7E3A66605D2EF5CFF0CC7E14F5DC7B /* Capacitor-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Capacitor-Info.plist"; sourceTree = "<group>"; };
|
|
241
|
+
C011A751960615668999BB1E06BDF74C /* Diagnostics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diagnostics.swift; path = Capacitor/Capacitor/Diagnostics.swift; sourceTree = "<group>"; };
|
|
242
|
+
C034F5324051FB17D928F42133F0B53D /* CDVViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVViewController.h; sourceTree = "<group>"; };
|
|
243
|
+
C4B501F5FC726C3B42FD6DFB3085155E /* CDVPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPlugin.m; sourceTree = "<group>"; };
|
|
244
|
+
C4B91691020FFF33D3CE36B146E619D3 /* CDVConfigParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVConfigParser.m; sourceTree = "<group>"; };
|
|
245
|
+
C53012E43F309497F051CF9A51D84819 /* CAPBridgedPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPBridgedPlugin.h; path = Capacitor/Capacitor/CAPBridgedPlugin.h; sourceTree = "<group>"; };
|
|
246
|
+
C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Plugin-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
247
|
+
C833E02A4947EB7E33FF23F78C7EAD58 /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Toast.swift; sourceTree = "<group>"; };
|
|
248
|
+
C925E20D23976D840E60FB480C6E2C06 /* NSDictionary+CordovaPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+CordovaPreferences.h"; sourceTree = "<group>"; };
|
|
249
|
+
CC5DDDFBBF3A788622C6D0F69E51FEDD /* CapacitorCordova.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CapacitorCordova.debug.xcconfig; sourceTree = "<group>"; };
|
|
250
|
+
CE3416EA9844455137D166D6169A0748 /* CAPPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPlugin.h; path = Capacitor/Capacitor/CAPPlugin.h; sourceTree = "<group>"; };
|
|
251
|
+
CE5D33870170DAF4C9D7643B6978CA8D /* CapacitorCordova-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CapacitorCordova-umbrella.h"; sourceTree = "<group>"; };
|
|
252
|
+
D2F214FA91136E6E2D6C9A6A11FF1F5A /* Capacitor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Capacitor-prefix.pch"; sourceTree = "<group>"; };
|
|
253
|
+
D3016251A55ED1AF394F7034C11423E2 /* CAPUNUserNotificationCenterDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPUNUserNotificationCenterDelegate.swift; path = Capacitor/Capacitor/CAPUNUserNotificationCenterDelegate.swift; sourceTree = "<group>"; };
|
|
254
|
+
D42C1C2BE61502F8D1B586E5B077FADF /* CAPPluginMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CAPPluginMethod.h; path = Capacitor/Capacitor/CAPPluginMethod.h; sourceTree = "<group>"; };
|
|
255
|
+
D4E442F5AE9779B311883A451ADB52E4 /* CDVPlugin+Resources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CDVPlugin+Resources.h"; sourceTree = "<group>"; };
|
|
256
|
+
D4F94BDDDA2B6E941B8C57141E18DF8F /* StatusBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StatusBar.swift; sourceTree = "<group>"; };
|
|
257
|
+
D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PluginTests-frameworks.sh"; sourceTree = "<group>"; };
|
|
258
|
+
D94FCA30D7D3A444E35F75013CA092F8 /* CDVPluginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVPluginManager.m; sourceTree = "<group>"; };
|
|
259
|
+
D99866E19379A64965246FB2979079D8 /* AppDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
260
|
+
DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Plugin.debug.xcconfig"; sourceTree = "<group>"; };
|
|
261
|
+
DAFF32D6BFD83A6D4D660195FABE56D0 /* UIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColor.swift; path = Capacitor/Capacitor/UIColor.swift; sourceTree = "<group>"; };
|
|
262
|
+
DBE6C9CC615109B7FE10802C5EFEB7B1 /* CAPFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CAPFile.swift; path = Capacitor/Capacitor/CAPFile.swift; sourceTree = "<group>"; };
|
|
263
|
+
DC098B79EFCBB8890F63C1524AA84857 /* JS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JS.swift; path = Capacitor/Capacitor/JS.swift; sourceTree = "<group>"; };
|
|
264
|
+
E16CB1528440C997AA09399EA131D269 /* AppDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
265
|
+
E765AD15FAD14954687159233B69ECF8 /* CDVViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CDVViewController.m; sourceTree = "<group>"; };
|
|
266
|
+
E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PluginTests.modulemap"; sourceTree = "<group>"; };
|
|
267
|
+
EB33B00F34D75226347C1BF79DFDDD61 /* Keyboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Keyboard.m; sourceTree = "<group>"; };
|
|
268
|
+
EFD2636C0C36A831C1DD550F8687F53A /* CapacitorCordova-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CapacitorCordova-Info.plist"; sourceTree = "<group>"; };
|
|
269
|
+
F396D6B8EE7E3E3EEBDFD907C0FA86D8 /* CDVCommandDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CDVCommandDelegate.h; sourceTree = "<group>"; };
|
|
270
|
+
F5A985C8ED4454DF20CA73DB0792A5CD /* Clipboard.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Clipboard.swift; sourceTree = "<group>"; };
|
|
271
|
+
F82D9E7E8CA49726CF2AB29C05C53C0D /* CDVPlugin+Resources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CDVPlugin+Resources.m"; sourceTree = "<group>"; };
|
|
272
|
+
F911E6BE8F6E9C32E5DC067AE6F01833 /* CAPPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CAPPlugin.m; path = Capacitor/Capacitor/CAPPlugin.m; sourceTree = "<group>"; };
|
|
273
|
+
FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PluginTests-umbrella.h"; sourceTree = "<group>"; };
|
|
274
|
+
FCAFF6E525E7BB1D2495885DEA434FD8 /* Capacitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Capacitor.h; path = Capacitor/Capacitor/Capacitor.h; sourceTree = "<group>"; };
|
|
275
|
+
FE4AC503F908454BF5D3A698F436390E /* Browser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Browser.swift; sourceTree = "<group>"; };
|
|
276
|
+
/* End PBXFileReference section */
|
|
277
|
+
|
|
278
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
279
|
+
05729AFBFB8A784E74F2959F06661750 /* Frameworks */ = {
|
|
280
|
+
isa = PBXFrameworksBuildPhase;
|
|
281
|
+
buildActionMask = 2147483647;
|
|
282
|
+
files = (
|
|
283
|
+
6EEDDFB34106C7CC121893CE015FB7D0 /* Foundation.framework in Frameworks */,
|
|
284
|
+
);
|
|
285
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
286
|
+
};
|
|
287
|
+
2F663F4A91DB5BF73E9BD4D8F7B7E2A1 /* Frameworks */ = {
|
|
288
|
+
isa = PBXFrameworksBuildPhase;
|
|
289
|
+
buildActionMask = 2147483647;
|
|
290
|
+
files = (
|
|
291
|
+
156EAAA65DE2C5DE513D5C6A5979C0D6 /* Foundation.framework in Frameworks */,
|
|
292
|
+
);
|
|
293
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
294
|
+
};
|
|
295
|
+
90E3101D26758C61892F034AD2471EBA /* Frameworks */ = {
|
|
296
|
+
isa = PBXFrameworksBuildPhase;
|
|
297
|
+
buildActionMask = 2147483647;
|
|
298
|
+
files = (
|
|
299
|
+
9722E68D291F8F69E1FFDD3AF3E59ACD /* Foundation.framework in Frameworks */,
|
|
300
|
+
C64BCACEB7B4E36C901011F6BAA1314E /* WebKit.framework in Frameworks */,
|
|
301
|
+
);
|
|
302
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
303
|
+
};
|
|
304
|
+
FFD92798E00A88208723BEFC520C2C9A /* Frameworks */ = {
|
|
305
|
+
isa = PBXFrameworksBuildPhase;
|
|
306
|
+
buildActionMask = 2147483647;
|
|
307
|
+
files = (
|
|
308
|
+
FF7220733827ECD4995207EBC35F9A10 /* Foundation.framework in Frameworks */,
|
|
309
|
+
);
|
|
310
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
311
|
+
};
|
|
312
|
+
/* End PBXFrameworksBuildPhase section */
|
|
313
|
+
|
|
314
|
+
/* Begin PBXGroup section */
|
|
315
|
+
1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {
|
|
316
|
+
isa = PBXGroup;
|
|
317
|
+
children = (
|
|
318
|
+
D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */,
|
|
319
|
+
);
|
|
320
|
+
name = Frameworks;
|
|
321
|
+
sourceTree = "<group>";
|
|
322
|
+
};
|
|
323
|
+
428F800B9F6A15CCBA624FAB6B2567DE /* CapacitorCordova */ = {
|
|
324
|
+
isa = PBXGroup;
|
|
325
|
+
children = (
|
|
326
|
+
3A1FFA447AC513DE02971EB57CD67668 /* CapacitorCordova.h */,
|
|
327
|
+
E461D145CF53A1ED6EDEAD3D19E57F3A /* Classes */,
|
|
328
|
+
91793C035D2DD7DB43127E0D955DB54E /* Pod */,
|
|
329
|
+
D04E45B3EAC156571FFF869876D14304 /* Support Files */,
|
|
330
|
+
);
|
|
331
|
+
name = CapacitorCordova;
|
|
332
|
+
path = "../../node_modules/@capacitor/ios";
|
|
333
|
+
sourceTree = "<group>";
|
|
334
|
+
};
|
|
335
|
+
445B536BA26566AA35EF47AE76909750 /* Pod */ = {
|
|
336
|
+
isa = PBXGroup;
|
|
337
|
+
children = (
|
|
338
|
+
1A792533D659175362411A68C1515E23 /* Capacitor.podspec */,
|
|
339
|
+
);
|
|
340
|
+
name = Pod;
|
|
341
|
+
sourceTree = "<group>";
|
|
342
|
+
};
|
|
343
|
+
45614D1CAC83DF1F0B746833B16E5869 /* Capacitor */ = {
|
|
344
|
+
isa = PBXGroup;
|
|
345
|
+
children = (
|
|
346
|
+
FCAFF6E525E7BB1D2495885DEA434FD8 /* Capacitor.h */,
|
|
347
|
+
6B7F8A9F060739B72B551CA38BA9B397 /* CAPAppDelegate.swift */,
|
|
348
|
+
3F2AB2C995819892A5C7DE5B38268BFA /* CAPAssetHandler.swift */,
|
|
349
|
+
4728C5ECBEF90CBD09CCC4D3400C46E8 /* CAPBridge.swift */,
|
|
350
|
+
0F0656B7905B6D290353A5B3D6D28121 /* CAPBridgeDelegate.swift */,
|
|
351
|
+
C53012E43F309497F051CF9A51D84819 /* CAPBridgedPlugin.h */,
|
|
352
|
+
7B4755850BFC1F4FEC89FA92F51C7C45 /* CAPBridgeViewController.swift */,
|
|
353
|
+
9B45886F31EB4897FEADC2D11A0C0F18 /* CAPConfig.swift */,
|
|
354
|
+
DBE6C9CC615109B7FE10802C5EFEB7B1 /* CAPFile.swift */,
|
|
355
|
+
6F5026FE497C4CD1E8EDFAC73D2D9BA3 /* CAPLog.swift */,
|
|
356
|
+
44C87AAF707A44926074C0DBF9FC592B /* CAPNotifications.swift */,
|
|
357
|
+
CE3416EA9844455137D166D6169A0748 /* CAPPlugin.h */,
|
|
358
|
+
F911E6BE8F6E9C32E5DC067AE6F01833 /* CAPPlugin.m */,
|
|
359
|
+
66049A93F9E217EE596F1EAC95F6C65B /* CAPPluginCall.h */,
|
|
360
|
+
92548E73B223840C2A2CE851D9FC26E8 /* CAPPluginCall.m */,
|
|
361
|
+
1D5BEFCD7DE181071F1AD2DFB64FF16D /* CAPPluginCall.swift */,
|
|
362
|
+
D42C1C2BE61502F8D1B586E5B077FADF /* CAPPluginMethod.h */,
|
|
363
|
+
635035A389E9FFF168A9DE6316CA097F /* CAPPluginMethod.m */,
|
|
364
|
+
D3016251A55ED1AF394F7034C11423E2 /* CAPUNUserNotificationCenterDelegate.swift */,
|
|
365
|
+
C011A751960615668999BB1E06BDF74C /* Diagnostics.swift */,
|
|
366
|
+
9BA38AEBB09B361D36A27D6ED3002C63 /* DocLinks.swift */,
|
|
367
|
+
DC098B79EFCBB8890F63C1524AA84857 /* JS.swift */,
|
|
368
|
+
618808EF76EC9DAC910D3DA4DEEE2E50 /* JSExport.swift */,
|
|
369
|
+
932075D27A5667D3EA9D4E0E1D1D3BD2 /* TmpViewController.swift */,
|
|
370
|
+
DAFF32D6BFD83A6D4D660195FABE56D0 /* UIColor.swift */,
|
|
371
|
+
3DCCA925A1DEF72B61BF5D00CE550EDA /* UILabel.swift */,
|
|
372
|
+
27DB6798A14D070679AEE1B25A0E878D /* UIStatusBarManager+CAPHandleTapAction.m */,
|
|
373
|
+
C49274A3D9228913F77ADE5B548E9CD9 /* Plugins */,
|
|
374
|
+
445B536BA26566AA35EF47AE76909750 /* Pod */,
|
|
375
|
+
BB65DD33D836293A7DFF35FE9B2F8EB7 /* Support Files */,
|
|
376
|
+
);
|
|
377
|
+
name = Capacitor;
|
|
378
|
+
path = "../../node_modules/@capacitor/ios";
|
|
379
|
+
sourceTree = "<group>";
|
|
380
|
+
};
|
|
381
|
+
4630DCF899D4EA296F9238228EADB2FB /* Network */ = {
|
|
382
|
+
isa = PBXGroup;
|
|
383
|
+
children = (
|
|
384
|
+
8F2E2AE00E09DEBCB083085A6D0A4233 /* Network.swift */,
|
|
385
|
+
ADFD99D09BCAF72C1373F004B0446A75 /* Reachability.swift */,
|
|
386
|
+
);
|
|
387
|
+
name = Network;
|
|
388
|
+
path = Network;
|
|
389
|
+
sourceTree = "<group>";
|
|
390
|
+
};
|
|
391
|
+
4995032DE2E8388EA7555A3E16A5D5F8 /* Public */ = {
|
|
392
|
+
isa = PBXGroup;
|
|
393
|
+
children = (
|
|
394
|
+
D99866E19379A64965246FB2979079D8 /* AppDelegate.h */,
|
|
395
|
+
E16CB1528440C997AA09399EA131D269 /* AppDelegate.m */,
|
|
396
|
+
7CE890E21CB35D43995B7BD5AD5DEEFC /* CDV.h */,
|
|
397
|
+
BA5E5582FBF5310752587F053353FD11 /* CDVAvailability.h */,
|
|
398
|
+
F396D6B8EE7E3E3EEBDFD907C0FA86D8 /* CDVCommandDelegate.h */,
|
|
399
|
+
BCA41AA6E79B460F766C096C91D1FF4F /* CDVCommandDelegateImpl.h */,
|
|
400
|
+
32A68EB8DA0ABFD6582E139DA941E883 /* CDVCommandDelegateImpl.m */,
|
|
401
|
+
634208EB894F7E0CAE766405A48E6C04 /* CDVConfigParser.h */,
|
|
402
|
+
C4B91691020FFF33D3CE36B146E619D3 /* CDVConfigParser.m */,
|
|
403
|
+
26DAF61F6959011759E6F716CCA3B904 /* CDVInvokedUrlCommand.h */,
|
|
404
|
+
81516E47DF03AC59C80705FD5E173884 /* CDVInvokedUrlCommand.m */,
|
|
405
|
+
71C716321E961A909C1F507F0052F701 /* CDVPlugin.h */,
|
|
406
|
+
C4B501F5FC726C3B42FD6DFB3085155E /* CDVPlugin.m */,
|
|
407
|
+
D4E442F5AE9779B311883A451ADB52E4 /* CDVPlugin+Resources.h */,
|
|
408
|
+
F82D9E7E8CA49726CF2AB29C05C53C0D /* CDVPlugin+Resources.m */,
|
|
409
|
+
B8C48308D6FC607912BB93F3CED8C72B /* CDVPluginManager.h */,
|
|
410
|
+
D94FCA30D7D3A444E35F75013CA092F8 /* CDVPluginManager.m */,
|
|
411
|
+
5DA7E2186C268A6E92713ACBF29EBB29 /* CDVPluginResult.h */,
|
|
412
|
+
A6F10A29ED955E159414FEDA47D5E9BC /* CDVPluginResult.m */,
|
|
413
|
+
06966FC0885DE7F8FB263C9E76978ABD /* CDVScreenOrientationDelegate.h */,
|
|
414
|
+
30E31706C12B5ADFEA77524384DE375C /* CDVUIWebViewDelegate.h */,
|
|
415
|
+
1E9D31D20A7024045799CCA5A53E8295 /* CDVUIWebViewDelegate.m */,
|
|
416
|
+
01BE41A39A64D731D6DEBB860831EAF1 /* CDVURLProtocol.h */,
|
|
417
|
+
62095FC667611DCDBB78FAE381C0DCFC /* CDVURLProtocol.m */,
|
|
418
|
+
7F45F8CB98C4CCF724D47E362118FE27 /* CDVUserAgentUtil.h */,
|
|
419
|
+
BBB2FA049692A927A5B7ADEC9750D694 /* CDVUserAgentUtil.m */,
|
|
420
|
+
C034F5324051FB17D928F42133F0B53D /* CDVViewController.h */,
|
|
421
|
+
E765AD15FAD14954687159233B69ECF8 /* CDVViewController.m */,
|
|
422
|
+
C925E20D23976D840E60FB480C6E2C06 /* NSDictionary+CordovaPreferences.h */,
|
|
423
|
+
A16A43B761B390C3F112C5D8B97A3F5A /* NSDictionary+CordovaPreferences.m */,
|
|
424
|
+
);
|
|
425
|
+
name = Public;
|
|
426
|
+
path = Public;
|
|
427
|
+
sourceTree = "<group>";
|
|
428
|
+
};
|
|
429
|
+
4C3C7899773225C367EA5F9645782C13 /* Development Pods */ = {
|
|
430
|
+
isa = PBXGroup;
|
|
431
|
+
children = (
|
|
432
|
+
45614D1CAC83DF1F0B746833B16E5869 /* Capacitor */,
|
|
433
|
+
428F800B9F6A15CCBA624FAB6B2567DE /* CapacitorCordova */,
|
|
434
|
+
);
|
|
435
|
+
name = "Development Pods";
|
|
436
|
+
sourceTree = "<group>";
|
|
437
|
+
};
|
|
438
|
+
740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */ = {
|
|
439
|
+
isa = PBXGroup;
|
|
440
|
+
children = (
|
|
441
|
+
8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */,
|
|
442
|
+
F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */,
|
|
443
|
+
);
|
|
444
|
+
name = "Targets Support Files";
|
|
445
|
+
sourceTree = "<group>";
|
|
446
|
+
};
|
|
447
|
+
8C0C94AB912114BEDD51A64682444E19 /* Pods-Plugin */ = {
|
|
448
|
+
isa = PBXGroup;
|
|
449
|
+
children = (
|
|
450
|
+
401B4870616B3D09347BE1F13F95D477 /* Pods-Plugin.modulemap */,
|
|
451
|
+
C818B5D2E7E4FE4DB6A541C59C3F46A2 /* Pods-Plugin-acknowledgements.markdown */,
|
|
452
|
+
535AEEBA96B786E87F23F75310B8CB74 /* Pods-Plugin-acknowledgements.plist */,
|
|
453
|
+
B5A2BC9A9C63563BFD519AB3CE4D5D9D /* Pods-Plugin-dummy.m */,
|
|
454
|
+
11DF9CA040CEBA3928A7F34FB4928E2C /* Pods-Plugin-Info.plist */,
|
|
455
|
+
7EFD241FB11A4273E5C38133FF35CF7D /* Pods-Plugin-umbrella.h */,
|
|
456
|
+
DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */,
|
|
457
|
+
6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */,
|
|
458
|
+
);
|
|
459
|
+
name = "Pods-Plugin";
|
|
460
|
+
path = "Target Support Files/Pods-Plugin";
|
|
461
|
+
sourceTree = "<group>";
|
|
462
|
+
};
|
|
463
|
+
91793C035D2DD7DB43127E0D955DB54E /* Pod */ = {
|
|
464
|
+
isa = PBXGroup;
|
|
465
|
+
children = (
|
|
466
|
+
37E362017CFD08F0B852CA7F5A63F756 /* CapacitorCordova.podspec */,
|
|
467
|
+
);
|
|
468
|
+
name = Pod;
|
|
469
|
+
sourceTree = "<group>";
|
|
470
|
+
};
|
|
471
|
+
B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */ = {
|
|
472
|
+
isa = PBXGroup;
|
|
473
|
+
children = (
|
|
474
|
+
44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */,
|
|
475
|
+
1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */,
|
|
476
|
+
4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */,
|
|
477
|
+
58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */,
|
|
478
|
+
);
|
|
479
|
+
name = Products;
|
|
480
|
+
sourceTree = "<group>";
|
|
481
|
+
};
|
|
482
|
+
BB65DD33D836293A7DFF35FE9B2F8EB7 /* Support Files */ = {
|
|
483
|
+
isa = PBXGroup;
|
|
484
|
+
children = (
|
|
485
|
+
4E99DA6A834C014E2E88058A13F6AB21 /* Capacitor.modulemap */,
|
|
486
|
+
4B5A2F8A2B8511076A44B3EB4425E9C7 /* Capacitor-dummy.m */,
|
|
487
|
+
BE7E3A66605D2EF5CFF0CC7E14F5DC7B /* Capacitor-Info.plist */,
|
|
488
|
+
D2F214FA91136E6E2D6C9A6A11FF1F5A /* Capacitor-prefix.pch */,
|
|
489
|
+
44484C907C005C9D4AC9CBCF5B952997 /* Capacitor-umbrella.h */,
|
|
490
|
+
2E6F579017D01FDB40A710CD43045A03 /* Capacitor.debug.xcconfig */,
|
|
491
|
+
525ACCE8CC31F50BB82D6891F2812A74 /* Capacitor.release.xcconfig */,
|
|
492
|
+
);
|
|
493
|
+
name = "Support Files";
|
|
494
|
+
path = "../../../ios/Pods/Target Support Files/Capacitor";
|
|
495
|
+
sourceTree = "<group>";
|
|
496
|
+
};
|
|
497
|
+
C49274A3D9228913F77ADE5B548E9CD9 /* Plugins */ = {
|
|
498
|
+
isa = PBXGroup;
|
|
499
|
+
children = (
|
|
500
|
+
B416389EF7896E8F77B03D76712FB02A /* Accessibility.swift */,
|
|
501
|
+
21BBADDE656D2EE454E7479A61A3E6D9 /* App.swift */,
|
|
502
|
+
66767E17A9B86A5661AE70BD4E8D3CCC /* BackgroundTask.swift */,
|
|
503
|
+
FE4AC503F908454BF5D3A698F436390E /* Browser.swift */,
|
|
504
|
+
0C770817F1851EE55916F7E6DD34F42A /* Camera.swift */,
|
|
505
|
+
F5A985C8ED4454DF20CA73DB0792A5CD /* Clipboard.swift */,
|
|
506
|
+
8D0F3B7FAC0FE4F54A0B889CBC68F486 /* Console.swift */,
|
|
507
|
+
62C92FEC4B1330CDBCB2D5997F1C6B64 /* DefaultPlugins.h */,
|
|
508
|
+
B90F9FB113B1FDC1FCE1038F4A365B57 /* DefaultPlugins.m */,
|
|
509
|
+
3177123549105B5C4654FC59B8EC93B2 /* Device.swift */,
|
|
510
|
+
6213A455E5E7787F1495840E831C0D4C /* Filesystem.swift */,
|
|
511
|
+
58F63D0DD1ADF7C5E4BF2F8912B6E82D /* Geolocation.swift */,
|
|
512
|
+
2938770F2D17182E3267449374D9F818 /* Haptics.swift */,
|
|
513
|
+
AB085CBBD0A20A6FB7DA06B40ED74813 /* Keyboard.h */,
|
|
514
|
+
EB33B00F34D75226347C1BF79DFDDD61 /* Keyboard.m */,
|
|
515
|
+
6FD366E47013D925F7816D0868F34124 /* LocalNotifications.swift */,
|
|
516
|
+
A36EDCE251BA12D15088D13B7E3A9EEF /* Modals.swift */,
|
|
517
|
+
1121F702ED69106CF9CC769232F4CC4C /* Permissions.swift */,
|
|
518
|
+
5EE7D53D876446E062032B9D6DB6C21F /* PushNotifications.swift */,
|
|
519
|
+
394A911ECAFF24D3A4055E4AD750114A /* Share.swift */,
|
|
520
|
+
5D765ABC8F86C11B2133D45FD94AEC08 /* SplashScreen.swift */,
|
|
521
|
+
D4F94BDDDA2B6E941B8C57141E18DF8F /* StatusBar.swift */,
|
|
522
|
+
452A85CE60A22EB02D3A99DD6FEF2BE8 /* Storage.swift */,
|
|
523
|
+
C833E02A4947EB7E33FF23F78C7EAD58 /* Toast.swift */,
|
|
524
|
+
2C25B693CB3013E7FF88F5A068C9474A /* WebView.swift */,
|
|
525
|
+
4630DCF899D4EA296F9238228EADB2FB /* Network */,
|
|
526
|
+
DCBEB4D4540FA4837621FD667F449280 /* Photos */,
|
|
527
|
+
);
|
|
528
|
+
name = Plugins;
|
|
529
|
+
path = Capacitor/Capacitor/Plugins;
|
|
530
|
+
sourceTree = "<group>";
|
|
531
|
+
};
|
|
532
|
+
CF1408CF629C7361332E53B88F7BD30C = {
|
|
533
|
+
isa = PBXGroup;
|
|
534
|
+
children = (
|
|
535
|
+
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
|
|
536
|
+
4C3C7899773225C367EA5F9645782C13 /* Development Pods */,
|
|
537
|
+
1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,
|
|
538
|
+
B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */,
|
|
539
|
+
740E12C899D56C459793F8D89BE2D003 /* Targets Support Files */,
|
|
540
|
+
);
|
|
541
|
+
sourceTree = "<group>";
|
|
542
|
+
};
|
|
543
|
+
D04E45B3EAC156571FFF869876D14304 /* Support Files */ = {
|
|
544
|
+
isa = PBXGroup;
|
|
545
|
+
children = (
|
|
546
|
+
9A9443E7CFDDC3A96B6B7D66E59F4227 /* CapacitorCordova.modulemap */,
|
|
547
|
+
6283AA625FEDC52BFEB81E42CF1B51D6 /* CapacitorCordova-dummy.m */,
|
|
548
|
+
EFD2636C0C36A831C1DD550F8687F53A /* CapacitorCordova-Info.plist */,
|
|
549
|
+
0CF037D53A84E0EBFD3FC2BC934AE1ED /* CapacitorCordova-prefix.pch */,
|
|
550
|
+
CE5D33870170DAF4C9D7643B6978CA8D /* CapacitorCordova-umbrella.h */,
|
|
551
|
+
CC5DDDFBBF3A788622C6D0F69E51FEDD /* CapacitorCordova.debug.xcconfig */,
|
|
552
|
+
AED68A9E7EB0A6BC6D6CDD33A8E8159A /* CapacitorCordova.release.xcconfig */,
|
|
553
|
+
);
|
|
554
|
+
name = "Support Files";
|
|
555
|
+
path = "../../../ios/Pods/Target Support Files/CapacitorCordova";
|
|
556
|
+
sourceTree = "<group>";
|
|
557
|
+
};
|
|
558
|
+
D4666CE1A84ECF5C342FAD3C508C69DE /* iOS */ = {
|
|
559
|
+
isa = PBXGroup;
|
|
560
|
+
children = (
|
|
561
|
+
32D20E8E61FE391C0ED97D6F5A9EEEFD /* Foundation.framework */,
|
|
562
|
+
2BB655F8A3B9F0C3DB37D349580B2779 /* WebKit.framework */,
|
|
563
|
+
);
|
|
564
|
+
name = iOS;
|
|
565
|
+
sourceTree = "<group>";
|
|
566
|
+
};
|
|
567
|
+
DCBEB4D4540FA4837621FD667F449280 /* Photos */ = {
|
|
568
|
+
isa = PBXGroup;
|
|
569
|
+
children = (
|
|
570
|
+
69DC7ECA0F0267C4AAB487A7582B0B8C /* Photos.swift */,
|
|
571
|
+
);
|
|
572
|
+
name = Photos;
|
|
573
|
+
path = Photos;
|
|
574
|
+
sourceTree = "<group>";
|
|
575
|
+
};
|
|
576
|
+
E461D145CF53A1ED6EDEAD3D19E57F3A /* Classes */ = {
|
|
577
|
+
isa = PBXGroup;
|
|
578
|
+
children = (
|
|
579
|
+
4995032DE2E8388EA7555A3E16A5D5F8 /* Public */,
|
|
580
|
+
);
|
|
581
|
+
name = Classes;
|
|
582
|
+
path = CapacitorCordova/CapacitorCordova/Classes;
|
|
583
|
+
sourceTree = "<group>";
|
|
584
|
+
};
|
|
585
|
+
F22F323547F39068C402A67FCA68E7C2 /* Pods-PluginTests */ = {
|
|
586
|
+
isa = PBXGroup;
|
|
587
|
+
children = (
|
|
588
|
+
E8950E00418A9BCE1D0E315A85B496FB /* Pods-PluginTests.modulemap */,
|
|
589
|
+
A1E5822FC61F9421CF2456D453B75418 /* Pods-PluginTests-acknowledgements.markdown */,
|
|
590
|
+
45AEE2D3BD43D61882B01AAE2B8F11E4 /* Pods-PluginTests-acknowledgements.plist */,
|
|
591
|
+
7E74390F09A29D254E98C5610DDD5A28 /* Pods-PluginTests-dummy.m */,
|
|
592
|
+
D6A9D9102A6C05CE4B93BA2C13954FE9 /* Pods-PluginTests-frameworks.sh */,
|
|
593
|
+
939147BBA617256FB279F110F9DD2227 /* Pods-PluginTests-Info.plist */,
|
|
594
|
+
FBD93D36D06B546B5015A4716941DCBB /* Pods-PluginTests-umbrella.h */,
|
|
595
|
+
47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */,
|
|
596
|
+
7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */,
|
|
597
|
+
);
|
|
598
|
+
name = "Pods-PluginTests";
|
|
599
|
+
path = "Target Support Files/Pods-PluginTests";
|
|
600
|
+
sourceTree = "<group>";
|
|
601
|
+
};
|
|
602
|
+
/* End PBXGroup section */
|
|
603
|
+
|
|
604
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
605
|
+
357AD0DC2A6B38717F8E766B14F7B904 /* Headers */ = {
|
|
606
|
+
isa = PBXHeadersBuildPhase;
|
|
607
|
+
buildActionMask = 2147483647;
|
|
608
|
+
files = (
|
|
609
|
+
CE62AA984DF457FD977CB8ED15EE5E7A /* Pods-Plugin-umbrella.h in Headers */,
|
|
610
|
+
);
|
|
611
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
612
|
+
};
|
|
613
|
+
AB4ACE1CF80DEAD62C0CBFEDB76F57B2 /* Headers */ = {
|
|
614
|
+
isa = PBXHeadersBuildPhase;
|
|
615
|
+
buildActionMask = 2147483647;
|
|
616
|
+
files = (
|
|
617
|
+
EA6B6338F7A768BA0097EB45DCEFFAB4 /* AppDelegate.h in Headers */,
|
|
618
|
+
94331503F40A08D22803448353C53D4A /* CapacitorCordova.h in Headers */,
|
|
619
|
+
2A406CB341613953E88074F4D059646E /* CapacitorCordova-umbrella.h in Headers */,
|
|
620
|
+
66BD25091EFE841084EA8FA66363628B /* CDV.h in Headers */,
|
|
621
|
+
BC93087C6DF36CE29C5FE2F5E01AA53E /* CDVAvailability.h in Headers */,
|
|
622
|
+
F580C6E65B761DCC5FDCD2E37607A039 /* CDVCommandDelegate.h in Headers */,
|
|
623
|
+
812590B542213FA6696499F66902F339 /* CDVCommandDelegateImpl.h in Headers */,
|
|
624
|
+
423272461B43AD2C55D51DA3156C2BA6 /* CDVConfigParser.h in Headers */,
|
|
625
|
+
EA9265A53B9A76AEF1F012990FE71FA1 /* CDVInvokedUrlCommand.h in Headers */,
|
|
626
|
+
736C812AC4E1C174C7F7BF0A8EA333D7 /* CDVPlugin.h in Headers */,
|
|
627
|
+
157D0CF4CA312D2D69B9481CFE519397 /* CDVPlugin+Resources.h in Headers */,
|
|
628
|
+
A5ED27E1AA79EE2A9DAAE4A201D69260 /* CDVPluginManager.h in Headers */,
|
|
629
|
+
BCE6A41CAC0D5B6EE0FACCB258C1E7DD /* CDVPluginResult.h in Headers */,
|
|
630
|
+
C0F065DEF0CF51416B0C6389B0438DE6 /* CDVScreenOrientationDelegate.h in Headers */,
|
|
631
|
+
A51E737049927189E024E2E04BE3EA25 /* CDVUIWebViewDelegate.h in Headers */,
|
|
632
|
+
7EB040E7B7FDD4B7A2D846067FFA8DAE /* CDVURLProtocol.h in Headers */,
|
|
633
|
+
4A286EF4E5ACDC76AC2FA1DB4DABBF3A /* CDVUserAgentUtil.h in Headers */,
|
|
634
|
+
CE6BCF28BB520F52B57DEC6F253B832C /* CDVViewController.h in Headers */,
|
|
635
|
+
93F450C47B0F313FB0E2A85488DE7059 /* NSDictionary+CordovaPreferences.h in Headers */,
|
|
636
|
+
);
|
|
637
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
638
|
+
};
|
|
639
|
+
AE63EE2C6E7D1C40E63FEA87838D7AA1 /* Headers */ = {
|
|
640
|
+
isa = PBXHeadersBuildPhase;
|
|
641
|
+
buildActionMask = 2147483647;
|
|
642
|
+
files = (
|
|
643
|
+
44073C42880C2E530D52EE67C5D8A3F1 /* Capacitor.h in Headers */,
|
|
644
|
+
80786FF9B9342E46C1C740DB575E110E /* Capacitor-umbrella.h in Headers */,
|
|
645
|
+
E5487CDBDDDBB7FD34B7333725F28CAB /* CAPBridgedPlugin.h in Headers */,
|
|
646
|
+
708F7718B310A271CF601A785C968085 /* CAPPlugin.h in Headers */,
|
|
647
|
+
A1CBDCB0A87536037C5C7AAB4CA28058 /* CAPPluginCall.h in Headers */,
|
|
648
|
+
1AAD48E2696D5BC8652C0656FE3A6EDF /* CAPPluginMethod.h in Headers */,
|
|
649
|
+
3F97747C7718BB8F130B9A599FA56395 /* DefaultPlugins.h in Headers */,
|
|
650
|
+
C8C3B827A1CEAEFB22A7E61174749654 /* Keyboard.h in Headers */,
|
|
651
|
+
);
|
|
652
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
653
|
+
};
|
|
654
|
+
CD0146D9209B52D85411E99B60EE90BD /* Headers */ = {
|
|
655
|
+
isa = PBXHeadersBuildPhase;
|
|
656
|
+
buildActionMask = 2147483647;
|
|
657
|
+
files = (
|
|
658
|
+
107D38F78924B848B20A512EBCD7912B /* Pods-PluginTests-umbrella.h in Headers */,
|
|
659
|
+
);
|
|
660
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
661
|
+
};
|
|
662
|
+
/* End PBXHeadersBuildPhase section */
|
|
663
|
+
|
|
664
|
+
/* Begin PBXNativeTarget section */
|
|
665
|
+
0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */ = {
|
|
666
|
+
isa = PBXNativeTarget;
|
|
667
|
+
buildConfigurationList = 62CDAAAA382AB40E743477780811AA02 /* Build configuration list for PBXNativeTarget "Capacitor" */;
|
|
668
|
+
buildPhases = (
|
|
669
|
+
AE63EE2C6E7D1C40E63FEA87838D7AA1 /* Headers */,
|
|
670
|
+
7B38C54A669172D9F426CEE349BA8652 /* Sources */,
|
|
671
|
+
2F663F4A91DB5BF73E9BD4D8F7B7E2A1 /* Frameworks */,
|
|
672
|
+
16E8989A9D53640594EB12A5B668D672 /* Resources */,
|
|
673
|
+
);
|
|
674
|
+
buildRules = (
|
|
675
|
+
);
|
|
676
|
+
dependencies = (
|
|
677
|
+
19787E7D73010E454971C917EE060771 /* PBXTargetDependency */,
|
|
678
|
+
);
|
|
679
|
+
name = Capacitor;
|
|
680
|
+
productName = Capacitor;
|
|
681
|
+
productReference = 44D6062E8C618EC2B8F1D7229E8AD501 /* Capacitor */;
|
|
682
|
+
productType = "com.apple.product-type.framework";
|
|
683
|
+
};
|
|
684
|
+
10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */ = {
|
|
685
|
+
isa = PBXNativeTarget;
|
|
686
|
+
buildConfigurationList = 5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */;
|
|
687
|
+
buildPhases = (
|
|
688
|
+
357AD0DC2A6B38717F8E766B14F7B904 /* Headers */,
|
|
689
|
+
CE7D9667E8CB083330F25DBA1A121614 /* Sources */,
|
|
690
|
+
05729AFBFB8A784E74F2959F06661750 /* Frameworks */,
|
|
691
|
+
66F8DAFC08A88AE635AABEADC89F9782 /* Resources */,
|
|
692
|
+
);
|
|
693
|
+
buildRules = (
|
|
694
|
+
);
|
|
695
|
+
dependencies = (
|
|
696
|
+
73F553DB4DE988D56C3FECBDA58F6EE1 /* PBXTargetDependency */,
|
|
697
|
+
A701606F7591A1B217A79F6791EE96C9 /* PBXTargetDependency */,
|
|
698
|
+
);
|
|
699
|
+
name = "Pods-Plugin";
|
|
700
|
+
productName = Pods_Plugin;
|
|
701
|
+
productReference = 4B7B23985828F9D35ECCA1361A486792 /* Pods-Plugin */;
|
|
702
|
+
productType = "com.apple.product-type.framework";
|
|
703
|
+
};
|
|
704
|
+
400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */ = {
|
|
705
|
+
isa = PBXNativeTarget;
|
|
706
|
+
buildConfigurationList = FA69A0549625A2E23A56A2F427D5B35F /* Build configuration list for PBXNativeTarget "CapacitorCordova" */;
|
|
707
|
+
buildPhases = (
|
|
708
|
+
AB4ACE1CF80DEAD62C0CBFEDB76F57B2 /* Headers */,
|
|
709
|
+
B712838BEA16B08384C003D6A9095FC4 /* Sources */,
|
|
710
|
+
90E3101D26758C61892F034AD2471EBA /* Frameworks */,
|
|
711
|
+
74C1D3BFC10BE44E4375E6700A0838AA /* Resources */,
|
|
712
|
+
);
|
|
713
|
+
buildRules = (
|
|
714
|
+
);
|
|
715
|
+
dependencies = (
|
|
716
|
+
);
|
|
717
|
+
name = CapacitorCordova;
|
|
718
|
+
productName = Cordova;
|
|
719
|
+
productReference = 1ABFDA3391AEBA42EFB0FEBF824A6E34 /* CapacitorCordova */;
|
|
720
|
+
productType = "com.apple.product-type.framework";
|
|
721
|
+
};
|
|
722
|
+
401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */ = {
|
|
723
|
+
isa = PBXNativeTarget;
|
|
724
|
+
buildConfigurationList = 29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */;
|
|
725
|
+
buildPhases = (
|
|
726
|
+
CD0146D9209B52D85411E99B60EE90BD /* Headers */,
|
|
727
|
+
CFFDE113260979B402C1E4C5B825B6C1 /* Sources */,
|
|
728
|
+
FFD92798E00A88208723BEFC520C2C9A /* Frameworks */,
|
|
729
|
+
35B229A540F02FD5EB6A4690A3C8F305 /* Resources */,
|
|
730
|
+
);
|
|
731
|
+
buildRules = (
|
|
732
|
+
);
|
|
733
|
+
dependencies = (
|
|
734
|
+
02E26F55605E93B3F15482896DD716DD /* PBXTargetDependency */,
|
|
735
|
+
1130C471BE53B783229B3A7FD0AA32B2 /* PBXTargetDependency */,
|
|
736
|
+
);
|
|
737
|
+
name = "Pods-PluginTests";
|
|
738
|
+
productName = Pods_PluginTests;
|
|
739
|
+
productReference = 58DEAF78291AAC1E83073B9084B45542 /* Pods-PluginTests */;
|
|
740
|
+
productType = "com.apple.product-type.framework";
|
|
741
|
+
};
|
|
742
|
+
/* End PBXNativeTarget section */
|
|
743
|
+
|
|
744
|
+
/* Begin PBXProject section */
|
|
745
|
+
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
|
|
746
|
+
isa = PBXProject;
|
|
747
|
+
attributes = {
|
|
748
|
+
LastSwiftUpdateCheck = 1500;
|
|
749
|
+
LastUpgradeCheck = 1500;
|
|
750
|
+
};
|
|
751
|
+
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
|
|
752
|
+
compatibilityVersion = "Xcode 8.0";
|
|
753
|
+
developmentRegion = en;
|
|
754
|
+
hasScannedForEncodings = 0;
|
|
755
|
+
knownRegions = (
|
|
756
|
+
Base,
|
|
757
|
+
en,
|
|
758
|
+
);
|
|
759
|
+
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
|
|
760
|
+
minimizedProjectReferenceProxies = 0;
|
|
761
|
+
productRefGroup = B479BBBCE5EE0CCF5B51E4DCA1CC2197 /* Products */;
|
|
762
|
+
projectDirPath = "";
|
|
763
|
+
projectRoot = "";
|
|
764
|
+
targets = (
|
|
765
|
+
0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */,
|
|
766
|
+
400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */,
|
|
767
|
+
10467BF5021453A5297325418ACC4E64 /* Pods-Plugin */,
|
|
768
|
+
401C34F4B17A319A7086C93431C92B42 /* Pods-PluginTests */,
|
|
769
|
+
);
|
|
770
|
+
};
|
|
771
|
+
/* End PBXProject section */
|
|
772
|
+
|
|
773
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
774
|
+
16E8989A9D53640594EB12A5B668D672 /* Resources */ = {
|
|
775
|
+
isa = PBXResourcesBuildPhase;
|
|
776
|
+
buildActionMask = 2147483647;
|
|
777
|
+
files = (
|
|
778
|
+
);
|
|
779
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
780
|
+
};
|
|
781
|
+
35B229A540F02FD5EB6A4690A3C8F305 /* Resources */ = {
|
|
782
|
+
isa = PBXResourcesBuildPhase;
|
|
783
|
+
buildActionMask = 2147483647;
|
|
784
|
+
files = (
|
|
785
|
+
);
|
|
786
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
787
|
+
};
|
|
788
|
+
66F8DAFC08A88AE635AABEADC89F9782 /* Resources */ = {
|
|
789
|
+
isa = PBXResourcesBuildPhase;
|
|
790
|
+
buildActionMask = 2147483647;
|
|
791
|
+
files = (
|
|
792
|
+
);
|
|
793
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
794
|
+
};
|
|
795
|
+
74C1D3BFC10BE44E4375E6700A0838AA /* Resources */ = {
|
|
796
|
+
isa = PBXResourcesBuildPhase;
|
|
797
|
+
buildActionMask = 2147483647;
|
|
798
|
+
files = (
|
|
799
|
+
);
|
|
800
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
801
|
+
};
|
|
802
|
+
/* End PBXResourcesBuildPhase section */
|
|
803
|
+
|
|
804
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
805
|
+
7B38C54A669172D9F426CEE349BA8652 /* Sources */ = {
|
|
806
|
+
isa = PBXSourcesBuildPhase;
|
|
807
|
+
buildActionMask = 2147483647;
|
|
808
|
+
files = (
|
|
809
|
+
E312F8C1AB2AA652C458117C4D78A39D /* Accessibility.swift in Sources */,
|
|
810
|
+
E1262140B40EB61EA70DA8E15F789B3E /* App.swift in Sources */,
|
|
811
|
+
1DBACA8500501E1A88A9509647D64229 /* BackgroundTask.swift in Sources */,
|
|
812
|
+
3C59EEB7ECFAB59B36C14B91CFDD0C9E /* Browser.swift in Sources */,
|
|
813
|
+
1C0AC2B95E0286A1384318828F8AF76E /* Camera.swift in Sources */,
|
|
814
|
+
738F09E9EEF9208F4789471103FC6D40 /* Capacitor-dummy.m in Sources */,
|
|
815
|
+
62049CF9C2492DD3190EC482A5BB15E0 /* CAPAppDelegate.swift in Sources */,
|
|
816
|
+
3A7EF02D9C2C16E4CE1B8539CFA76C64 /* CAPAssetHandler.swift in Sources */,
|
|
817
|
+
98B1715EB1D10121DEE6569F5B1FF9B5 /* CAPBridge.swift in Sources */,
|
|
818
|
+
F311CF66E2CE5D32F436E6499B86233C /* CAPBridgeDelegate.swift in Sources */,
|
|
819
|
+
BBEDD128CA2E7A2A7749E515809BC150 /* CAPBridgeViewController.swift in Sources */,
|
|
820
|
+
7F20282C46F5C997BBC50912298B095E /* CAPConfig.swift in Sources */,
|
|
821
|
+
6F31EF05581535763EA60CEEFBA3E4B6 /* CAPFile.swift in Sources */,
|
|
822
|
+
789E8BA314B7FC7DDFD1203CB43EB63D /* CAPLog.swift in Sources */,
|
|
823
|
+
3EB17BBA1DB710C14ADFB9FB0755581E /* CAPNotifications.swift in Sources */,
|
|
824
|
+
714E40A6FE02BB1A1AD12DD35A94C1DB /* CAPPlugin.m in Sources */,
|
|
825
|
+
B0291F979BAE8C2DC8E29CB45152C76D /* CAPPluginCall.m in Sources */,
|
|
826
|
+
81AFBC408A729EFBAD475DEFB24264D2 /* CAPPluginCall.swift in Sources */,
|
|
827
|
+
E6C9E6C8A459E09BC2EBFBEA40E8351F /* CAPPluginMethod.m in Sources */,
|
|
828
|
+
57F5E973C8D405D7B2A58FE75F43349F /* CAPUNUserNotificationCenterDelegate.swift in Sources */,
|
|
829
|
+
B6FE1FF070710B9F43C0C09E03EFA8FF /* Clipboard.swift in Sources */,
|
|
830
|
+
626B4FC62B58CB8E09BDED40ECFCFA65 /* Console.swift in Sources */,
|
|
831
|
+
2A224BB9DCE5C892A110294DB6BFC1A3 /* DefaultPlugins.m in Sources */,
|
|
832
|
+
1ECADC6246C6CDB5C4C98B7B0B24911B /* Device.swift in Sources */,
|
|
833
|
+
228FA88CD6855A15127144F5E534801A /* Diagnostics.swift in Sources */,
|
|
834
|
+
3DD07013EE02027AD93E25AF18E179F2 /* DocLinks.swift in Sources */,
|
|
835
|
+
2F60CDC258E4FC4CED547B8EAD3A8956 /* Filesystem.swift in Sources */,
|
|
836
|
+
E390D8669035B6B2557E9E786231EB5E /* Geolocation.swift in Sources */,
|
|
837
|
+
32BC4BB47A28108A7FAB0BFA48B551FD /* Haptics.swift in Sources */,
|
|
838
|
+
38E2248B5286E41714E7015DC37DDD51 /* JS.swift in Sources */,
|
|
839
|
+
AF285F5B45129AA81A98BE02DE2FF807 /* JSExport.swift in Sources */,
|
|
840
|
+
A31BE95F7EAC994A2193A6741ACBEE05 /* Keyboard.m in Sources */,
|
|
841
|
+
0FDC1DE0F6171A5358C6074FA9B6995B /* LocalNotifications.swift in Sources */,
|
|
842
|
+
391B65EBD41A84A788A08FA76843C271 /* Modals.swift in Sources */,
|
|
843
|
+
8B71C24AE99B23F9266BA5852179DDAA /* Network.swift in Sources */,
|
|
844
|
+
0CD34A48BE8AB9C50EEC08353E093F20 /* Permissions.swift in Sources */,
|
|
845
|
+
01DEDFC157F943E8D21D5F2551C8F2A6 /* Photos.swift in Sources */,
|
|
846
|
+
CB2CE706BDA6434C19FF6D963A698DB3 /* PushNotifications.swift in Sources */,
|
|
847
|
+
2C7CC44BB58AFDA1221F59B0396A0C41 /* Reachability.swift in Sources */,
|
|
848
|
+
BE2D65F9A70CCBA87BDD1F9CAF10DB72 /* Share.swift in Sources */,
|
|
849
|
+
B952255A28D2C98BE65800A011E8CA95 /* SplashScreen.swift in Sources */,
|
|
850
|
+
EDD148F3AA06F7512D375B784A5A6D53 /* StatusBar.swift in Sources */,
|
|
851
|
+
64FB22716EF0DC754CE1BB5C481604E0 /* Storage.swift in Sources */,
|
|
852
|
+
C055F2E4D7D9B79744DC02D56EC9CAEB /* TmpViewController.swift in Sources */,
|
|
853
|
+
65D17BD3CF6320C550248E91943DA616 /* Toast.swift in Sources */,
|
|
854
|
+
01AC79395C327C16817092CC8AAD6C02 /* UIColor.swift in Sources */,
|
|
855
|
+
D99688D39CE0FCA5CAB15E48EA8FA6F3 /* UILabel.swift in Sources */,
|
|
856
|
+
C03277551BCF3CCA194B7CAEC5FFD7E2 /* UIStatusBarManager+CAPHandleTapAction.m in Sources */,
|
|
857
|
+
8B640311B1978CE98C5562D9A8A164DF /* WebView.swift in Sources */,
|
|
858
|
+
);
|
|
859
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
860
|
+
};
|
|
861
|
+
B712838BEA16B08384C003D6A9095FC4 /* Sources */ = {
|
|
862
|
+
isa = PBXSourcesBuildPhase;
|
|
863
|
+
buildActionMask = 2147483647;
|
|
864
|
+
files = (
|
|
865
|
+
335155D4A77BABF06F4BB5665AB433A1 /* AppDelegate.m in Sources */,
|
|
866
|
+
85A5C898AD7FB1C27AF4DA598BF211AE /* CapacitorCordova-dummy.m in Sources */,
|
|
867
|
+
00EE97191BC9716F282C4B10319BF3B1 /* CDVCommandDelegateImpl.m in Sources */,
|
|
868
|
+
78D000BD87033F72B76516D419B36AE6 /* CDVConfigParser.m in Sources */,
|
|
869
|
+
5F6B3A9D9CF0263C41EB9E472FFB41BD /* CDVInvokedUrlCommand.m in Sources */,
|
|
870
|
+
B2709F8CBA3B5E5BD8336402B84F4994 /* CDVPlugin.m in Sources */,
|
|
871
|
+
042D7BB8B0366C025A891A116268CD1B /* CDVPlugin+Resources.m in Sources */,
|
|
872
|
+
5A025432D38773BFC2813ECE2A832132 /* CDVPluginManager.m in Sources */,
|
|
873
|
+
2B4E1051166BC7E7FE03CF7A9E7F0E8A /* CDVPluginResult.m in Sources */,
|
|
874
|
+
9254206DB8C97C6656B0E75D4DFB12CD /* CDVUIWebViewDelegate.m in Sources */,
|
|
875
|
+
1BED80793EBA3012EDF4D7FC28A13C28 /* CDVURLProtocol.m in Sources */,
|
|
876
|
+
0AA202FC43EC573458189163FF0A93E7 /* CDVUserAgentUtil.m in Sources */,
|
|
877
|
+
CE2F6FB18DE9975B09EEBA3E979559F3 /* CDVViewController.m in Sources */,
|
|
878
|
+
AC50AF01F2629CED81D8CBFB1E6F764F /* NSDictionary+CordovaPreferences.m in Sources */,
|
|
879
|
+
);
|
|
880
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
881
|
+
};
|
|
882
|
+
CE7D9667E8CB083330F25DBA1A121614 /* Sources */ = {
|
|
883
|
+
isa = PBXSourcesBuildPhase;
|
|
884
|
+
buildActionMask = 2147483647;
|
|
885
|
+
files = (
|
|
886
|
+
8A92D99D589621AD707DA9B331F5CDCA /* Pods-Plugin-dummy.m in Sources */,
|
|
887
|
+
);
|
|
888
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
889
|
+
};
|
|
890
|
+
CFFDE113260979B402C1E4C5B825B6C1 /* Sources */ = {
|
|
891
|
+
isa = PBXSourcesBuildPhase;
|
|
892
|
+
buildActionMask = 2147483647;
|
|
893
|
+
files = (
|
|
894
|
+
164D2FCAC8E9161C0D1CA7FD3E765C9D /* Pods-PluginTests-dummy.m in Sources */,
|
|
895
|
+
);
|
|
896
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
897
|
+
};
|
|
898
|
+
/* End PBXSourcesBuildPhase section */
|
|
899
|
+
|
|
900
|
+
/* Begin PBXTargetDependency section */
|
|
901
|
+
02E26F55605E93B3F15482896DD716DD /* PBXTargetDependency */ = {
|
|
902
|
+
isa = PBXTargetDependency;
|
|
903
|
+
name = Capacitor;
|
|
904
|
+
target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
|
|
905
|
+
targetProxy = 080FF62917D68BBF3FBB620EC83B6D03 /* PBXContainerItemProxy */;
|
|
906
|
+
};
|
|
907
|
+
1130C471BE53B783229B3A7FD0AA32B2 /* PBXTargetDependency */ = {
|
|
908
|
+
isa = PBXTargetDependency;
|
|
909
|
+
name = CapacitorCordova;
|
|
910
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
911
|
+
targetProxy = D5CF4EB4DBDC89B7C073C24FA2371DB5 /* PBXContainerItemProxy */;
|
|
912
|
+
};
|
|
913
|
+
19787E7D73010E454971C917EE060771 /* PBXTargetDependency */ = {
|
|
914
|
+
isa = PBXTargetDependency;
|
|
915
|
+
name = CapacitorCordova;
|
|
916
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
917
|
+
targetProxy = 9B77BEA81FA1CBD3B7613B9D5DF283DB /* PBXContainerItemProxy */;
|
|
918
|
+
};
|
|
919
|
+
73F553DB4DE988D56C3FECBDA58F6EE1 /* PBXTargetDependency */ = {
|
|
920
|
+
isa = PBXTargetDependency;
|
|
921
|
+
name = Capacitor;
|
|
922
|
+
target = 0ECF3D6BFCC08377AE23B027EE1D4371 /* Capacitor */;
|
|
923
|
+
targetProxy = 1048E24BD79A236F5B3F8E197F730E7F /* PBXContainerItemProxy */;
|
|
924
|
+
};
|
|
925
|
+
A701606F7591A1B217A79F6791EE96C9 /* PBXTargetDependency */ = {
|
|
926
|
+
isa = PBXTargetDependency;
|
|
927
|
+
name = CapacitorCordova;
|
|
928
|
+
target = 400AE44335852A2D8D746557E21E8EB0 /* CapacitorCordova */;
|
|
929
|
+
targetProxy = 0CA86F6B52E3D99E3C0B84F74B0737DD /* PBXContainerItemProxy */;
|
|
930
|
+
};
|
|
931
|
+
/* End PBXTargetDependency section */
|
|
932
|
+
|
|
933
|
+
/* Begin XCBuildConfiguration section */
|
|
934
|
+
11F27F6FA01025524A527A75EBD1DF53 /* Debug */ = {
|
|
935
|
+
isa = XCBuildConfiguration;
|
|
936
|
+
baseConfigurationReference = 47F881CAB117FE10E92963EF6CC91861 /* Pods-PluginTests.debug.xcconfig */;
|
|
937
|
+
buildSettings = {
|
|
938
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
939
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
940
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
941
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
942
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
943
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
944
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
945
|
+
DEFINES_MODULE = YES;
|
|
946
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
947
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
948
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
949
|
+
INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
|
|
950
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
951
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
952
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
953
|
+
MACH_O_TYPE = staticlib;
|
|
954
|
+
MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
|
|
955
|
+
OTHER_LDFLAGS = "";
|
|
956
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
957
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
958
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
959
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
960
|
+
SDKROOT = iphoneos;
|
|
961
|
+
SKIP_INSTALL = YES;
|
|
962
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
963
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
964
|
+
VERSION_INFO_PREFIX = "";
|
|
965
|
+
};
|
|
966
|
+
name = Debug;
|
|
967
|
+
};
|
|
968
|
+
196FBF0F126233622708788E08CC2CBC /* Debug */ = {
|
|
969
|
+
isa = XCBuildConfiguration;
|
|
970
|
+
baseConfigurationReference = 2E6F579017D01FDB40A710CD43045A03 /* Capacitor.debug.xcconfig */;
|
|
971
|
+
buildSettings = {
|
|
972
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
973
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
974
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
975
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
976
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
977
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
978
|
+
DEFINES_MODULE = YES;
|
|
979
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
980
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
981
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
982
|
+
GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
|
|
983
|
+
INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
|
|
984
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
985
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
986
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
987
|
+
MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
|
|
988
|
+
PRODUCT_MODULE_NAME = Capacitor;
|
|
989
|
+
PRODUCT_NAME = Capacitor;
|
|
990
|
+
SDKROOT = iphoneos;
|
|
991
|
+
SKIP_INSTALL = YES;
|
|
992
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
993
|
+
SWIFT_VERSION = 5.0;
|
|
994
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
995
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
996
|
+
VERSION_INFO_PREFIX = "";
|
|
997
|
+
};
|
|
998
|
+
name = Debug;
|
|
999
|
+
};
|
|
1000
|
+
1BA153BA1CAF959495B719B7DE5F134C /* Release */ = {
|
|
1001
|
+
isa = XCBuildConfiguration;
|
|
1002
|
+
baseConfigurationReference = AED68A9E7EB0A6BC6D6CDD33A8E8159A /* CapacitorCordova.release.xcconfig */;
|
|
1003
|
+
buildSettings = {
|
|
1004
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1005
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1006
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1007
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1008
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1009
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1010
|
+
DEFINES_MODULE = YES;
|
|
1011
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1012
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1013
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1014
|
+
GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
|
|
1015
|
+
INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
|
|
1016
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1017
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1018
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1019
|
+
MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
|
|
1020
|
+
PRODUCT_MODULE_NAME = Cordova;
|
|
1021
|
+
PRODUCT_NAME = Cordova;
|
|
1022
|
+
SDKROOT = iphoneos;
|
|
1023
|
+
SKIP_INSTALL = YES;
|
|
1024
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1025
|
+
SWIFT_VERSION = 5.0;
|
|
1026
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1027
|
+
VALIDATE_PRODUCT = YES;
|
|
1028
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1029
|
+
VERSION_INFO_PREFIX = "";
|
|
1030
|
+
};
|
|
1031
|
+
name = Release;
|
|
1032
|
+
};
|
|
1033
|
+
782C82DD1DEB6ECA034E14F7B0BF0ABE /* Release */ = {
|
|
1034
|
+
isa = XCBuildConfiguration;
|
|
1035
|
+
baseConfigurationReference = 6F1715C2DEF7461A3964E29A0FCB6D3D /* Pods-Plugin.release.xcconfig */;
|
|
1036
|
+
buildSettings = {
|
|
1037
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1038
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1039
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1040
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1041
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1042
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1043
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1044
|
+
DEFINES_MODULE = YES;
|
|
1045
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1046
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1047
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1048
|
+
INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
|
|
1049
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1050
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1051
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1052
|
+
MACH_O_TYPE = staticlib;
|
|
1053
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
|
|
1054
|
+
OTHER_LDFLAGS = "";
|
|
1055
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1056
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1057
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1058
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1059
|
+
SDKROOT = iphoneos;
|
|
1060
|
+
SKIP_INSTALL = YES;
|
|
1061
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1062
|
+
VALIDATE_PRODUCT = YES;
|
|
1063
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1064
|
+
VERSION_INFO_PREFIX = "";
|
|
1065
|
+
};
|
|
1066
|
+
name = Release;
|
|
1067
|
+
};
|
|
1068
|
+
903A0004D3E6651EFD5D2E16214D101B /* Release */ = {
|
|
1069
|
+
isa = XCBuildConfiguration;
|
|
1070
|
+
buildSettings = {
|
|
1071
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1072
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1073
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1074
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1075
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1076
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1077
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1078
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1079
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
1080
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1081
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1082
|
+
CLANG_WARN_COMMA = YES;
|
|
1083
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1084
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1085
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1086
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1087
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1088
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1089
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1090
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1091
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1092
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1093
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1094
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1095
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
1096
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1097
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1098
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1099
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1100
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1101
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1102
|
+
COPY_PHASE_STRIP = NO;
|
|
1103
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
1104
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
1105
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1106
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1107
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1108
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1109
|
+
"POD_CONFIGURATION_RELEASE=1",
|
|
1110
|
+
"$(inherited)",
|
|
1111
|
+
);
|
|
1112
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1113
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1114
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1115
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1116
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1117
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1118
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1119
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
1120
|
+
MTL_FAST_MATH = YES;
|
|
1121
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1122
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
1123
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
1124
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
1125
|
+
SWIFT_VERSION = 5.0;
|
|
1126
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
1127
|
+
};
|
|
1128
|
+
name = Release;
|
|
1129
|
+
};
|
|
1130
|
+
AC9FB3BAD1102C6341FCD5B7EAD11F3C /* Debug */ = {
|
|
1131
|
+
isa = XCBuildConfiguration;
|
|
1132
|
+
baseConfigurationReference = DAA5DBF72380C5466DCBC107B7747A60 /* Pods-Plugin.debug.xcconfig */;
|
|
1133
|
+
buildSettings = {
|
|
1134
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1135
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1136
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1137
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1138
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1139
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1140
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1141
|
+
DEFINES_MODULE = YES;
|
|
1142
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1143
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1144
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1145
|
+
INFOPLIST_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist";
|
|
1146
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1147
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1148
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1149
|
+
MACH_O_TYPE = staticlib;
|
|
1150
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Plugin/Pods-Plugin.modulemap";
|
|
1151
|
+
OTHER_LDFLAGS = "";
|
|
1152
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1153
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1154
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1155
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1156
|
+
SDKROOT = iphoneos;
|
|
1157
|
+
SKIP_INSTALL = YES;
|
|
1158
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1159
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1160
|
+
VERSION_INFO_PREFIX = "";
|
|
1161
|
+
};
|
|
1162
|
+
name = Debug;
|
|
1163
|
+
};
|
|
1164
|
+
ACF2E64C712408C98D0131C02F7BB790 /* Debug */ = {
|
|
1165
|
+
isa = XCBuildConfiguration;
|
|
1166
|
+
baseConfigurationReference = CC5DDDFBBF3A788622C6D0F69E51FEDD /* CapacitorCordova.debug.xcconfig */;
|
|
1167
|
+
buildSettings = {
|
|
1168
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1169
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1170
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1171
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1172
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1173
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1174
|
+
DEFINES_MODULE = YES;
|
|
1175
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1176
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1177
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1178
|
+
GCC_PREFIX_HEADER = "Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch";
|
|
1179
|
+
INFOPLIST_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist";
|
|
1180
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1181
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1182
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1183
|
+
MODULEMAP_FILE = "Target Support Files/CapacitorCordova/CapacitorCordova.modulemap";
|
|
1184
|
+
PRODUCT_MODULE_NAME = Cordova;
|
|
1185
|
+
PRODUCT_NAME = Cordova;
|
|
1186
|
+
SDKROOT = iphoneos;
|
|
1187
|
+
SKIP_INSTALL = YES;
|
|
1188
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1189
|
+
SWIFT_VERSION = 5.0;
|
|
1190
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1191
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1192
|
+
VERSION_INFO_PREFIX = "";
|
|
1193
|
+
};
|
|
1194
|
+
name = Debug;
|
|
1195
|
+
};
|
|
1196
|
+
B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */ = {
|
|
1197
|
+
isa = XCBuildConfiguration;
|
|
1198
|
+
buildSettings = {
|
|
1199
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
1200
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
1201
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
1202
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
1203
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
1204
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
1205
|
+
CLANG_ENABLE_MODULES = YES;
|
|
1206
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
1207
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
1208
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
1209
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
1210
|
+
CLANG_WARN_COMMA = YES;
|
|
1211
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
1212
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
1213
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
1214
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
1215
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
1216
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
1217
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
1218
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
1219
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
1220
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
1221
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
1222
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
1223
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
1224
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
1225
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
1226
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
1227
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
1228
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
1229
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
1230
|
+
COPY_PHASE_STRIP = NO;
|
|
1231
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
1232
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
1233
|
+
ENABLE_TESTABILITY = YES;
|
|
1234
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
1235
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
1236
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
1237
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
1238
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
1239
|
+
"POD_CONFIGURATION_DEBUG=1",
|
|
1240
|
+
"DEBUG=1",
|
|
1241
|
+
"$(inherited)",
|
|
1242
|
+
);
|
|
1243
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
1244
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
1245
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
1246
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
1247
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
1248
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
1249
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1250
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
1251
|
+
MTL_FAST_MATH = YES;
|
|
1252
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
1253
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1254
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
1255
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
1256
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
1257
|
+
SWIFT_VERSION = 5.0;
|
|
1258
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
1259
|
+
};
|
|
1260
|
+
name = Debug;
|
|
1261
|
+
};
|
|
1262
|
+
F5F53819EE09DCB1ED08C0EF4160EBEF /* Release */ = {
|
|
1263
|
+
isa = XCBuildConfiguration;
|
|
1264
|
+
baseConfigurationReference = 7D967D566F7C3FD1B78180239E63BC92 /* Pods-PluginTests.release.xcconfig */;
|
|
1265
|
+
buildSettings = {
|
|
1266
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
1267
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1268
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1269
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1270
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1271
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1272
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1273
|
+
DEFINES_MODULE = YES;
|
|
1274
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1275
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1276
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1277
|
+
INFOPLIST_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist";
|
|
1278
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1279
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1280
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1281
|
+
MACH_O_TYPE = staticlib;
|
|
1282
|
+
MODULEMAP_FILE = "Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap";
|
|
1283
|
+
OTHER_LDFLAGS = "";
|
|
1284
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
1285
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
1286
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
1287
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
|
1288
|
+
SDKROOT = iphoneos;
|
|
1289
|
+
SKIP_INSTALL = YES;
|
|
1290
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1291
|
+
VALIDATE_PRODUCT = YES;
|
|
1292
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1293
|
+
VERSION_INFO_PREFIX = "";
|
|
1294
|
+
};
|
|
1295
|
+
name = Release;
|
|
1296
|
+
};
|
|
1297
|
+
FB5BE3502C34E79E63C0F119EA8F7B96 /* Release */ = {
|
|
1298
|
+
isa = XCBuildConfiguration;
|
|
1299
|
+
baseConfigurationReference = 525ACCE8CC31F50BB82D6891F2812A74 /* Capacitor.release.xcconfig */;
|
|
1300
|
+
buildSettings = {
|
|
1301
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
|
1302
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1303
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
1304
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
1305
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
1306
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1307
|
+
DEFINES_MODULE = YES;
|
|
1308
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
1309
|
+
DYLIB_CURRENT_VERSION = 1;
|
|
1310
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
1311
|
+
GCC_PREFIX_HEADER = "Target Support Files/Capacitor/Capacitor-prefix.pch";
|
|
1312
|
+
INFOPLIST_FILE = "Target Support Files/Capacitor/Capacitor-Info.plist";
|
|
1313
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
1314
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
|
1315
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
1316
|
+
MODULEMAP_FILE = "Target Support Files/Capacitor/Capacitor.modulemap";
|
|
1317
|
+
PRODUCT_MODULE_NAME = Capacitor;
|
|
1318
|
+
PRODUCT_NAME = Capacitor;
|
|
1319
|
+
SDKROOT = iphoneos;
|
|
1320
|
+
SKIP_INSTALL = YES;
|
|
1321
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
1322
|
+
SWIFT_VERSION = 5.0;
|
|
1323
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
1324
|
+
VALIDATE_PRODUCT = YES;
|
|
1325
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
1326
|
+
VERSION_INFO_PREFIX = "";
|
|
1327
|
+
};
|
|
1328
|
+
name = Release;
|
|
1329
|
+
};
|
|
1330
|
+
/* End XCBuildConfiguration section */
|
|
1331
|
+
|
|
1332
|
+
/* Begin XCConfigurationList section */
|
|
1333
|
+
29E9DE7CF860FF79049F9183F016F02C /* Build configuration list for PBXNativeTarget "Pods-PluginTests" */ = {
|
|
1334
|
+
isa = XCConfigurationList;
|
|
1335
|
+
buildConfigurations = (
|
|
1336
|
+
11F27F6FA01025524A527A75EBD1DF53 /* Debug */,
|
|
1337
|
+
F5F53819EE09DCB1ED08C0EF4160EBEF /* Release */,
|
|
1338
|
+
);
|
|
1339
|
+
defaultConfigurationIsVisible = 0;
|
|
1340
|
+
defaultConfigurationName = Release;
|
|
1341
|
+
};
|
|
1342
|
+
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
|
|
1343
|
+
isa = XCConfigurationList;
|
|
1344
|
+
buildConfigurations = (
|
|
1345
|
+
B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */,
|
|
1346
|
+
903A0004D3E6651EFD5D2E16214D101B /* Release */,
|
|
1347
|
+
);
|
|
1348
|
+
defaultConfigurationIsVisible = 0;
|
|
1349
|
+
defaultConfigurationName = Release;
|
|
1350
|
+
};
|
|
1351
|
+
5FB8A15D09F53E12F154936E3F954D9C /* Build configuration list for PBXNativeTarget "Pods-Plugin" */ = {
|
|
1352
|
+
isa = XCConfigurationList;
|
|
1353
|
+
buildConfigurations = (
|
|
1354
|
+
AC9FB3BAD1102C6341FCD5B7EAD11F3C /* Debug */,
|
|
1355
|
+
782C82DD1DEB6ECA034E14F7B0BF0ABE /* Release */,
|
|
1356
|
+
);
|
|
1357
|
+
defaultConfigurationIsVisible = 0;
|
|
1358
|
+
defaultConfigurationName = Release;
|
|
1359
|
+
};
|
|
1360
|
+
62CDAAAA382AB40E743477780811AA02 /* Build configuration list for PBXNativeTarget "Capacitor" */ = {
|
|
1361
|
+
isa = XCConfigurationList;
|
|
1362
|
+
buildConfigurations = (
|
|
1363
|
+
196FBF0F126233622708788E08CC2CBC /* Debug */,
|
|
1364
|
+
FB5BE3502C34E79E63C0F119EA8F7B96 /* Release */,
|
|
1365
|
+
);
|
|
1366
|
+
defaultConfigurationIsVisible = 0;
|
|
1367
|
+
defaultConfigurationName = Release;
|
|
1368
|
+
};
|
|
1369
|
+
FA69A0549625A2E23A56A2F427D5B35F /* Build configuration list for PBXNativeTarget "CapacitorCordova" */ = {
|
|
1370
|
+
isa = XCConfigurationList;
|
|
1371
|
+
buildConfigurations = (
|
|
1372
|
+
ACF2E64C712408C98D0131C02F7BB790 /* Debug */,
|
|
1373
|
+
1BA153BA1CAF959495B719B7DE5F134C /* Release */,
|
|
1374
|
+
);
|
|
1375
|
+
defaultConfigurationIsVisible = 0;
|
|
1376
|
+
defaultConfigurationName = Release;
|
|
1377
|
+
};
|
|
1378
|
+
/* End XCConfigurationList section */
|
|
1379
|
+
};
|
|
1380
|
+
rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
1381
|
+
}
|